summaryrefslogtreecommitdiff
path: root/include/servers/machid.defs
blob: 185f251ad6303190d8f47c07b137734de5b9a809 (plain)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/* 
 * 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 9829283;

userprefix machid_;
serverprefix do_;

#include <mach/std_types.defs>
#include <mach/mach_types.defs>
#include <servers/machid_types.defs>

routine mach_type(
		server		: mach_port_t;
		auth		: mach_port_t;
		id		: mach_id_t;
	out	mtype		: mach_type_t);

routine mach_register(
		server		: mach_port_t;
		auth		: mach_port_t;
		port		: mach_port_t;
		mtype		: mach_type_t;
	out	id		: mach_id_t);

routine mach_lookup(
		server		: mach_port_t;
		auth		: mach_port_t;
		name		: mach_id_t;
		atype		: mach_type_t;
	out	aname		: mach_id_t);

routine mach_port(
		server		: mach_port_t;
		auth		: mach_port_t;
		name		: mach_id_t;
	out	port		: mach_port_move_send_t);

routine host_ports(
		server		: mach_port_t;
		auth		: mach_port_t;
	out	host		: mhost_t;
	out	phost		: mhost_priv_t);

routine host_processor_sets(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_priv_t;
	out	sets		: mprocessor_set_array_t,
					CountInOut, Dealloc);

routine host_tasks(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_priv_t;
	out	tasks		: mtask_array_t,
					CountInOut, Dealloc);

routine host_threads(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_priv_t;
	out	threads		: mthread_array_t,
					CountInOut, Dealloc);

routine host_processors(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_priv_t;
	out	procs		: mprocessor_array_t,
					CountInOut, Dealloc);

routine processor_set_threads(
		server		: mach_port_t;
		auth		: mach_port_t;
		pset		: mprocessor_set_t;
	out	threads		: mthread_array_t,
					CountInOut, Dealloc);

routine processor_set_tasks(
		server		: mach_port_t;
		auth		: mach_port_t;
		pset		: mprocessor_set_t;
	out	tasks		: mtask_array_t,
					CountInOut, Dealloc);

routine task_threads(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
	out	threads		: mthread_array_t,
					CountInOut, Dealloc);

routine host_basic_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_t;
	out	info		: host_basic_info_data_t);

routine host_sched_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_t;
	out	info		: host_sched_info_data_t);

routine host_load_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_t;
	out	info		: host_load_info_data_t);

routine processor_set_default(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_t;
	out	pset		: mprocessor_set_name_t);

routine	host_kernel_version(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_t;
	out	kernel_version	: kernel_version_t);

routine processor_basic_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		proc		: mprocessor_t;
	out	host		: mhost_t;
	out	info		: processor_basic_info_data_t);

routine processor_set_basic_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		pset		: mprocessor_set_name_t;
	out	host		: mhost_t;
	out	info		: processor_set_basic_info_data_t);

routine processor_set_sched_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		pset		: mprocessor_set_name_t;
	out	host		: mhost_t;
	out	info		: processor_set_sched_info_data_t);

routine task_unix_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
	out	pid		: unix_pid_t;
	out	comm		: unix_command_t);

routine task_basic_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
	out	info		: task_basic_info_data_t);

routine task_thread_times_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
	out	times		: task_thread_times_info_data_t);

routine thread_basic_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	info		: thread_basic_info_data_t);

routine thread_sched_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	info		: thread_sched_info_data_t);

#ifdef	mips
routine mips_thread_state(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	state		: mips_thread_state_t);
#else
skip;
#endif

#ifdef	sun3
routine sun3_thread_state(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	state		: sun3_thread_state_t);
#else
skip;
#endif

#ifdef	vax
routine vax_thread_state(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	state		: vax_thread_state_t);
#else
skip;
#endif

#ifdef	i386
routine i386_thread_state(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	state		: i386_thread_state_t);
#else
skip;
#endif

routine task_terminate(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t);

routine task_suspend(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t);

routine task_resume(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t);

routine thread_terminate(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t);

routine thread_suspend(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t);

routine thread_resume(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t);

routine thread_abort(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t);

skip;	/* was thread_depress_abort */

routine processor_set_destroy(
		server		: mach_port_t;
		auth		: mach_port_t;
		pset		: mprocessor_set_t);

routine	processor_start(
		server		: mach_port_t;
		auth		: mach_port_t;
		processor	: mprocessor_t);

routine	processor_exit(
		server		: mach_port_t;
		auth		: mach_port_t;
		processor	: mprocessor_t);

routine vm_region(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		addr		: vm_offset_t;
	out	info		: vm_region_t);

routine vm_read(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		addr		: vm_offset_t;
		size		: vm_size_t;
	out	data		: pointer_t, Dealloc);

routine thread_priority(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
		priority	: int;
		set_max		: boolean_t);

routine thread_max_priority(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
		pset		: mprocessor_set_t;
		max_pri		: int);

routine task_priority(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		priority	: int;
		change_threads : boolean_t);

routine processor_set_max_priority(
		server		: mach_port_t;
		auth		: mach_port_t;
		pset		: mprocessor_set_t;
		max_pri		: int;
		change_threads	: boolean_t);

routine port_names(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
	out	names		: mach_port_name_array_t,
					CountInOut, Dealloc;
	out	types		: mach_port_type_array_t,
					CountInOut, Dealloc);

routine port_type(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		name		: mach_port_name_t;
	out	ptype		: mach_port_type_t);

routine port_get_refs(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		name		: mach_port_name_t;
		right		: mach_port_right_t;
	out	refs		: mach_port_urefs_t);

routine port_get_receive_status(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		name		: mach_port_name_t;
	out	status		: mach_port_status_t);

routine port_get_set_status(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		name		: mach_port_name_t;
	out	members		: mach_port_name_array_t,
					CountInOut, Dealloc);

routine processor_get_assignment(
		server		: mach_port_t;
		auth		: mach_port_t;
		proc		: mprocessor_t;
	out	pset		: mprocessor_set_name_t);

routine thread_get_assignment(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	pset		: mprocessor_set_name_t);

routine task_get_assignment(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
	out	pset		: mprocessor_set_name_t);

routine host_processor_set_priv(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_priv_t;
		psetn		: mprocessor_set_name_t;
	out	pset		: mprocessor_set_t);

routine host_processor_set_names(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_t;
	out	sets		: mprocessor_set_name_array_t,
					CountInOut, Dealloc);

routine processor_set_create(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_t;
	out	pset		: mprocessor_set_t;
	out	psetn		: mprocessor_set_name_t);

routine task_create(
		server		: mach_port_t;
		auth		: mach_port_t;
		parent		: mtask_t;
		inherit		: boolean_t;
	out	task		: mtask_t);

routine thread_create(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
	out	thread		: mthread_t);

routine processor_assign(
		server		: mach_port_t;
		auth		: mach_port_t;
		processor	: mprocessor_t;
		pset		: mprocessor_set_t;
		wait		: boolean_t);

routine thread_assign(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
		pset		: mprocessor_set_t);

routine thread_assign_default(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t);

routine task_assign(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		pset		: mprocessor_set_t;
		assign_threads	: boolean_t);

routine task_assign_default(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		assign_threads	: boolean_t);

routine thread_policy(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
		policy		: int;
		data		: int);

routine processor_set_policy_enable(
		server		: mach_port_t;
		auth		: mach_port_t;
		processor_set	: mprocessor_set_t;
		policy		: int);

routine processor_set_policy_disable(
		server		: mach_port_t;
		auth		: mach_port_t;
		processor_set	: mprocessor_set_t;
		policy		: int;
		change_threads	: boolean_t);

routine host_default_pager(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_priv_t;
	out	default_pager	: mdefault_pager_t);

skip;	/* was default_pager_info */

routine vm_statistics(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
	out	data		: vm_statistics_data_t);

routine host_kernel_task(
		server		: mach_port_t;
		auth		: mach_port_t;
		host		: mhost_priv_t;
	out	kernel_task	: mtask_t);

routine task_host(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
	out	host		: mhost_t);

routine thread_host(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	host		: mhost_t);

routine processor_host(
		server		: mach_port_t;
		auth		: mach_port_t;
		proc		: mprocessor_t;
	out	host		: mhost_t);


#ifdef	sun4
routine sparc_thread_state(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	state		: sparc_thread_state_t);
#else	sun4
skip;
#endif	sun4

#ifdef	alpha
routine alpha_thread_state(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	state		: alpha_thread_state_t);
#else
skip;
#endif

#ifdef	parisc
routine parisc_thread_state(
		server		: mach_port_t;
		auth		: mach_port_t;
		thread		: mthread_t;
	out	state		: parisc_thread_state_t);
#else
skip;
#endif

routine task_set_unix_info(
		server		: mach_port_t;
		auth		: mach_port_t;
		task		: mtask_t;
		pid		: unix_pid_t;
		comm		: unix_command_t);