aboutsummaryrefslogtreecommitdiff
path: root/kern/mach4.h
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2023-01-17 23:56:04 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-19 00:55:04 +0100
commit2029728ed6d2a88350be945a892d325aebc2eb8d (patch)
tree5cdae89a531f8d10e08b39491c7c8e64cff3f9b0 /kern/mach4.h
parentfc6bcf785b702e7e8a675ea0fe9856cc1b24b8f6 (diff)
downloadgnumach-2029728ed6d2a88350be945a892d325aebc2eb8d.tar.gz
gnumach-2029728ed6d2a88350be945a892d325aebc2eb8d.tar.bz2
gnumach-2029728ed6d2a88350be945a892d325aebc2eb8d.zip
Include mig generated headers to avoid warnings with -Wmissing-prototypes.
This also reverts 566c227636481b246d928772ebeaacbc7c37145b and 963b1794d7117064cee8ab5638b329db51dad854 Message-Id: <Y8d75KSqNL4FFInm@mercury.tail36e24.ts.net>
Diffstat (limited to 'kern/mach4.h')
-rw-r--r--kern/mach4.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/kern/mach4.h b/kern/mach4.h
deleted file mode 100644
index bff5d187..00000000
--- a/kern/mach4.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2023 Free Software Foundation, Inc.
- *
- * This file is part of GNU Mach.
- *
- * GNU Mach is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; either version 2, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-#ifndef _KERN_MACH4_H
-#define _KERN_MACH4_H
-
-#include <kern/thread.h>
-
-/* RPCs */
-
-kern_return_t
-thread_enable_pc_sampling(
- thread_t thread,
- int *tickp,
- sampled_pc_flavor_t flavors);
-
-kern_return_t
-thread_disable_pc_sampling(
- thread_t thread,
- int *samplecntp);
-
-kern_return_t
-task_enable_pc_sampling(
- task_t task,
- int *tickp,
- sampled_pc_flavor_t flavors);
-
-kern_return_t
-task_disable_pc_sampling(
- task_t task,
- int *samplecntp);
-
-kern_return_t
-thread_get_sampled_pcs(
- thread_t thread,
- sampled_pc_seqno_t *seqnop,
- sampled_pc_array_t sampled_pcs_out,
- int *sampled_pcs_cntp);
-
-kern_return_t
-task_get_sampled_pcs(
- task_t task,
- sampled_pc_seqno_t *seqnop,
- sampled_pc_array_t sampled_pcs_out,
- int *sampled_pcs_cntp);
-
-/* End of RPCs */
-
-#endif /* _KERN_MACH4_H */