2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * @OSF_FREE_COPYRIGHT@
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
34 * All Rights Reserved.
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.
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.
46 * Carnegie Mellon requests users of this software to return to
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
59 * File: mach/mach_port.defs
62 * Exported kernel calls.
68 #endif /* KERNEL_SERVER */
71 #include <mach/std_types.defs>
72 #include <mach/mach_types.defs>
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).
80 ledgers : ledger_array_t;
81 inherit_memory : boolean_t;
82 out child_task : task_t);
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.
89 routine task_terminate(
90 target_task : task_t);
93 * Returns the set of threads belonging to the target task.
97 out act_list : thread_act_array_t);
100 * Stash a handful of ports for the target task; child
101 * tasks inherit this stash at task_create time.
103 routine mach_ports_register(
104 target_task : task_t;
105 init_port_set : mach_port_array_t =
106 ^array[] of mach_port_t);
109 * Retrieve the stashed ports for the target task.
111 routine mach_ports_lookup(
112 target_task : task_t;
113 out init_port_set : mach_port_array_t =
114 ^array[] of mach_port_t);
117 * Returns information about the target task.
120 target_task : task_name_t;
121 flavor : task_flavor_t;
122 out task_info_out : task_info_t, CountInOut);
125 * Set task information.
127 routine task_set_info(
128 target_task : task_t;
129 flavor : task_flavor_t;
130 task_info_in : task_info_t);
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.
137 routine task_suspend(
138 target_task : task_t);
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.
148 target_task : task_t);
151 * Returns the current value of the selected special port
152 * associated with the target task.
154 routine task_get_special_port(
157 out special_port : mach_port_t);
160 * Set one of the special ports associated with the
163 routine task_set_special_port(
166 special_port : mach_port_t);
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.
173 routine thread_create(
174 parent_task : task_t;
175 out child_act : thread_act_t);
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
184 routine 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);
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
196 routine task_set_exception_ports(
198 exception_mask : exception_mask_t;
199 new_port : mach_port_t;
200 behavior : exception_behavior_t;
201 new_flavor : thread_state_flavor_t);
205 * Lookup some of the old exception handlers for a task
207 routine task_get_exception_ports(
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);
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
221 routine task_swap_exception_ports(
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);
233 * Create and destroy lock_set and semaphore synchronizers on a
234 * per-task basis (i.e. the task owns them).
236 routine lock_set_create(
238 out new_lock_set : lock_set_t;
242 routine lock_set_destroy(
244 lock_set : lock_set_t);
246 routine semaphore_create(
248 out semaphore : semaphore_t;
252 routine semaphore_destroy(
254 semaphore : semaphore_consume_ref_t);
257 * Set/get policy information for a task.
258 * (Approved Mac OS X microkernel interface)
261 routine task_policy_set(
263 flavor : task_policy_flavor_t;
264 policy_info : task_policy_t);
266 routine task_policy_get(
268 flavor : task_policy_flavor_t;
269 out policy_info : task_policy_t, CountInOut;
270 inout get_default : boolean_t);
273 * Removed from the kernel.
280 reply : mach_port_make_send_t);
284 * JMM - Everything from here down is likely to go away soon
287 * OBSOLETE interface.
292 base : policy_base_t;
293 set_limit : boolean_t;
298 * Establish a user-level handler for the specified
301 routine task_set_emulation(
302 target_port : task_t;
303 routine_entry_pt: vm_address_t;
304 routine_number : int);
307 * Get user-level handler entry points for all
308 * emulated system calls.
310 routine task_get_emulation_vector(
312 out vector_start : int;
313 out emulation_vector: emulation_vector_t);
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.
320 routine task_set_emulation_vector(
323 emulation_vector: emulation_vector_t);
327 * Establish restart pc for interrupted atomic sequences.
329 routine task_set_ras_pc(
330 target_task : task_t;
331 basepc : vm_address_t;
332 boundspc : vm_address_t);
335 skip; /* was kernel_task_create() */
338 * JMM - Want to eliminate processor_set so keep them at the end.
342 * Assign task to processor set.
346 new_set : processor_set_t;
347 assign_threads : boolean_t);
350 * Assign task to default set.
352 routine task_assign_default(
354 assign_threads : boolean_t);
357 * Get current assignment for task.
359 routine task_get_assignment(
361 out assigned_set : processor_set_name_t);
364 * OBSOLETE interface.
366 routine task_set_policy(
368 pset : processor_set_t;
370 base : policy_base_t;
371 limit : policy_limit_t;
375 * Read the selected state which is to be installed on new
376 * threads in the task as they are created.
378 routine task_get_state(
380 flavor : thread_state_flavor_t;
381 out old_state : thread_state_t, CountInOut);
384 * Set the selected state information to be installed on
385 * all subsequently created threads in the task.
387 routine task_set_state(
389 flavor : thread_state_flavor_t;
390 new_state : thread_state_t);
393 /* vim: set ft=c : */