1/*
2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 * 
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 * 
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 * 
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 * 
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28/*
29 * @OSF_FREE_COPYRIGHT@
30 */
31/* 
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
34 * All Rights Reserved.
35 * 
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
41 * 
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
45 * 
46 * Carnegie Mellon requests users of this software to return to
47 * 
48 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
49 *  School of Computer Science
50 *  Carnegie Mellon University
51 *  Pittsburgh PA 15213-3890
52 * 
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
55 */
56/*
57 */
58/*
59 *	File:	mach/mach_port.defs
60 *	Author:	Rich Draves
61 *
62 *	Exported kernel calls.
63 */
64
65subsystem
66#if	KERNEL_SERVER
67	  KernelServer
68#endif	/* KERNEL_SERVER */
69	  task 3400;
70
71#include <mach/std_types.defs>
72#include <mach/mach_types.defs>
73/*
74 *	Create a new task with an empty set of IPC rights,
75 *	and having an address space constructed from the
76 *	target task (or empty, if inherit_memory is FALSE).
77 */
78routine task_create(
79		target_task	: task_t;
80		ledgers		: ledger_array_t;
81		inherit_memory	: boolean_t;
82	out	child_task	: task_t);
83
84/*
85 *	Destroy the target task, causing all of its threads
86 *	to be destroyed, all of its IPC rights to be deallocated,
87 *	and all of its address space to be deallocated.
88 */
89routine task_terminate(
90		target_task	: task_t);
91
92/*
93 *	Returns the set of threads belonging to the target task.
94 */
95routine task_threads(
96		target_task	: task_t;
97	out	act_list	: thread_act_array_t);
98
99/*
100 *	Stash a handful of ports for the target task; child
101 *	tasks inherit this stash at task_create time.
102 */
103routine	mach_ports_register(
104		target_task	: task_t;
105		init_port_set	: mach_port_array_t =
106					^array[] of mach_port_t);
107
108/*
109 *	Retrieve the stashed ports for the target task.
110 */
111routine	mach_ports_lookup(
112		target_task	: task_t;
113	out	init_port_set	: mach_port_array_t =
114					^array[] of mach_port_t);
115
116/*
117 *      Returns information about the target task.
118 */
119routine task_info(
120                target_task     : task_name_t;
121                flavor          : task_flavor_t;
122        out     task_info_out   : task_info_t, CountInOut);
123
124/*
125 * Set task information.
126 */
127routine	task_set_info(
128		target_task	: task_t;
129		flavor		: task_flavor_t;
130		task_info_in	: task_info_t);
131
132/*
133 *	Increment the suspend count for the target task.
134 *	No threads within a task may run when the suspend
135 *	count for that task is non-zero.
136 */
137routine	task_suspend(
138		target_task	: task_t);
139
140
141/*
142 *	Decrement the suspend count for the target task,
143 *	if the count is currently non-zero.  If the resulting
144 *	suspend	count is zero, then threads within the task
145 *	that also have non-zero suspend counts may execute.
146 */
147routine	task_resume(
148		target_task	: task_t);
149
150/*
151 *	Returns the current value of the selected special port
152 *	associated with the target task.
153 */
154routine task_get_special_port(
155		task		: task_t;
156		which_port	: int;
157	out	special_port	: mach_port_t);
158
159/*
160 *	Set one of the special ports associated with the
161 *	target task.
162 */
163routine task_set_special_port(
164		task		: task_t;
165		which_port	: int;
166		special_port	: mach_port_t);
167
168/*
169 *	Create a new thread within the target task, returning
170 *	the port representing the first thr_act in that new thread.  The
171 *	initial execution state of the thread is undefined.
172 */
173routine thread_create(
174		parent_task	: task_t;
175	out	child_act	: thread_act_t);
176
177/*
178 *      Create a new thread within the target task, returning
179 *      the port representing that new thread.  The new thread 
180 *	is not suspended; its initial execution state is given
181 *	by flavor and new_state. Returns the port representing 
182 *	the new thread.
183 */
184routine thread_create_running(
185                parent_task     : task_t;
186                flavor          : thread_state_flavor_t;
187                new_state       : thread_state_t;
188        out     child_act       : thread_act_t);
189
190/*
191 * Set an exception handler for a task on one or more exception types.
192 * These handlers are invoked for all threads in the task if there are
193 * no thread-specific exception handlers or those handlers returned an
194 * error.
195 */
196routine	task_set_exception_ports(
197		task		: task_t;
198		exception_mask	: exception_mask_t;
199		new_port	: mach_port_t;
200		behavior	: exception_behavior_t;
201		new_flavor	: thread_state_flavor_t);
202
203
204/*
205 * Lookup some of the old exception handlers for a task
206 */
207routine	task_get_exception_ports(
208		task		: task_t;
209		exception_mask	: exception_mask_t;
210	  out	masks		: exception_mask_array_t;
211	  out	old_handlers	: exception_handler_array_t, SameCount;
212	  out	old_behaviors	: exception_behavior_array_t, SameCount;
213	  out	old_flavors	: exception_flavor_array_t, SameCount);
214
215
216/*
217 * Set an exception handler for a thread on one or more exception types.
218 * At the same time, return the previously defined exception handlers for
219 * those types.
220 */
221routine	task_swap_exception_ports(
222		task		: task_t;
223		exception_mask	: exception_mask_t;
224		new_port	: mach_port_t;
225		behavior	: exception_behavior_t;
226		new_flavor	: thread_state_flavor_t;
227	  out	masks		: exception_mask_array_t;
228	  out	old_handlerss	: exception_handler_array_t, SameCount;
229	  out	old_behaviors	: exception_behavior_array_t, SameCount;
230	  out	old_flavors	: exception_flavor_array_t, SameCount);
231
232/*
233 * Create and destroy lock_set and semaphore synchronizers on a
234 * per-task basis (i.e. the task owns them).
235 */
236routine lock_set_create(
237		task		: task_t;
238	out	new_lock_set	: lock_set_t;
239		n_ulocks	: int;
240		policy		: int);
241
242routine lock_set_destroy(
243		task		: task_t;
244		lock_set	: lock_set_t);
245
246routine semaphore_create(
247		task		: task_t;
248	out	semaphore	: semaphore_t;
249		policy		: int;
250		value		: int);
251
252routine semaphore_destroy(
253		task		: task_t;
254		semaphore	: semaphore_consume_ref_t);
255
256/*
257 * Set/get policy information for a task.
258 * (Approved Mac OS X microkernel interface)
259 */
260
261routine task_policy_set(
262	task			: task_t;
263	flavor			: task_policy_flavor_t;
264	policy_info		: task_policy_t);
265
266routine task_policy_get(
267	task			: task_t;
268	flavor			: task_policy_flavor_t;
269out	policy_info		: task_policy_t, CountInOut;
270inout	get_default		: boolean_t);
271
272/*
273 *	Removed from the kernel.
274 */
275#if KERNEL_SERVER
276skip;
277#else
278routine task_sample(
279		task		: task_t;
280		reply		: mach_port_make_send_t);
281#endif
282
283/*
284 * JMM - Everything from here down is likely to go away soon
285 */
286/*
287 * OBSOLETE interface.
288 */
289routine task_policy(
290	task			: task_t;
291	policy			: policy_t;
292	base			: policy_base_t;
293	set_limit		: boolean_t;
294	change			: boolean_t);
295
296
297/*
298 *	Establish a user-level handler for the specified
299 *	system call.
300 */
301routine task_set_emulation(
302		target_port	: task_t;
303		routine_entry_pt: vm_address_t;
304		routine_number  : int);	
305
306/*
307 *	Get user-level handler entry points for all
308 *	emulated system calls.
309 */
310routine task_get_emulation_vector(
311		task		: task_t;
312	out	vector_start	: int;
313	out	emulation_vector: emulation_vector_t);
314
315/*
316 *	Establish user-level handlers for the specified
317 *	system calls. Non-emulated system calls are specified
318 *	with emulation_vector[i] == EML_ROUTINE_NULL.
319 */
320routine task_set_emulation_vector(
321		task		: task_t;
322		vector_start	: int;
323		emulation_vector: emulation_vector_t);
324
325
326/*
327 *      Establish restart pc for interrupted atomic sequences.
328 */
329routine task_set_ras_pc(
330		target_task     : task_t;
331		basepc          : vm_address_t;
332		boundspc        : vm_address_t);
333
334
335skip; /* was kernel_task_create() */
336
337/* 
338 * JMM - Want to eliminate processor_set so keep them at the end.
339 */
340
341/*
342 *	Assign task to processor set.
343 */
344routine task_assign(
345		task		: task_t;
346		new_set		: processor_set_t;
347		assign_threads	: boolean_t);
348
349/*
350 *	Assign task to default set.
351 */
352routine task_assign_default(
353		task		: task_t;
354		assign_threads	: boolean_t);
355
356/*
357 *	Get current assignment for task.
358 */
359routine task_get_assignment(
360		task		: task_t;
361	out	assigned_set	: processor_set_name_t);
362
363/*
364 * OBSOLETE interface.
365 */
366routine task_set_policy(
367	task			: task_t;
368	pset			: processor_set_t;
369	policy			: policy_t;
370	base			: policy_base_t;
371	limit			: policy_limit_t;
372	change			: boolean_t);
373
374/* vim: set ft=c : */
375