diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-01-11 23:23:24 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-13 00:59:16 +0100 |
commit | 566c227636481b246d928772ebeaacbc7c37145b (patch) | |
tree | 5438a78f92517b7b3882f328ba6cf4fca2c1215c /kern/mach4.h | |
parent | 92fad38a043b75ed6b435b3efa574ede91dbe9ee (diff) | |
download | gnumach-566c227636481b246d928772ebeaacbc7c37145b.tar.gz gnumach-566c227636481b246d928772ebeaacbc7c37145b.tar.bz2 gnumach-566c227636481b246d928772ebeaacbc7c37145b.zip |
Create kern/mach4.h and kern/mach_host.h and define the RPC prototypes for mach4.defs and mach_host.defs.
Also move more mach_debug rpcs to kern/mach_debug.h.
Message-Id: <Y7+LPMLOafUQrNHZ@jupiter.tail36e24.ts.net>
Diffstat (limited to 'kern/mach4.h')
-rw-r--r-- | kern/mach4.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/kern/mach4.h b/kern/mach4.h new file mode 100644 index 00000000..bff5d187 --- /dev/null +++ b/kern/mach4.h @@ -0,0 +1,66 @@ +/* + * 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 */ |