1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Mach Operating System
* Copyright (c) 1991,1990 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
subsystem machid_debug 2398925;
userprefix machid_;
serverprefix do_;
#include <mach/std_types.defs>
#include <mach/mach_types.defs>
#include <mach_debug/mach_debug_types.defs>
#include <servers/machid_types.defs>
routine port_get_srights(
server : mach_port_t;
auth : mach_port_t;
task : mtask_t;
name : mach_port_name_t;
out srights : mach_port_rights_t);
routine port_space_info(
server : mach_port_t;
auth : mach_port_t;
task : mtask_t;
out info : ipc_info_space_t;
out table_info : ipc_info_name_array_t,
CountInOut, Dealloc;
out tree_info : ipc_info_tree_name_array_t,
CountInOut, Dealloc);
routine port_dnrequest_info(
server : mach_port_t;
auth : mach_port_t;
task : mtask_t;
name : mach_port_name_t;
out total : unsigned;
out used : unsigned);
skip; /* vm_region_info */
routine host_stack_usage(
server : mach_port_t;
auth : mach_port_t;
host : mhost_t;
out reserved : vm_size_t;
out total : unsigned;
out space : vm_size_t;
out resident : vm_size_t;
out maxusage : vm_size_t;
out maxstack : vm_offset_t);
routine processor_set_stack_usage(
server : mach_port_t;
auth : mach_port_t;
pset : mprocessor_set_t;
out total : unsigned;
out space : vm_size_t;
out resident : vm_size_t;
out maxusage : vm_size_t;
out maxstack : vm_offset_t);
routine host_zone_info(
server : mach_port_t;
auth : mach_port_t;
host : mhost_t;
out names : zone_name_array_t,
CountInOut, Dealloc;
out info : zone_info_array_t,
CountInOut, Dealloc);
routine port_kernel_object(
server : mach_port_t;
auth : mach_port_t;
task : mtask_t;
name : mach_port_name_t;
out object_type : unsigned;
out object_addr : vm_offset_t);
routine mach_kernel_object(
server : mach_port_t;
auth : mach_port_t;
id : mach_id_t;
out object_type : mach_type_t;
out object_addr : vm_offset_t);
routine vm_region_info(
server : mach_port_t;
auth : mach_port_t;
task : mtask_t;
addr : vm_offset_t;
out region : vm_region_info_t);
routine vm_object_info(
server : mach_port_t;
auth : mach_port_t;
object : mobject_name_t;
out info : vm_object_info_t);
routine vm_object_pages(
server : mach_port_t;
auth : mach_port_t;
object : mobject_name_t;
out pages : vm_page_info_array_t,
CountInOut, Dealloc);
|