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>
73 #include <mach_debug/mach_debug_types.defs>
76 * Create a new task with an empty set of IPC rights,
77 * and having an address space constructed from the
78 * target task (or empty, if inherit_memory is FALSE).
82 ledgers : ledger_array_t;
83 inherit_memory : boolean_t;
84 out child_task : task_t);
87 * Destroy the target task, causing all of its threads
88 * to be destroyed, all of its IPC rights to be deallocated,
89 * and all of its address space to be deallocated.
91 routine task_terminate(
92 target_task : task_t);
95 * Returns the set of threads belonging to the target task.
99 out act_list : thread_act_array_t);
102 * Stash a handful of ports for the target task; child
103 * tasks inherit this stash at task_create time.
105 routine mach_ports_register(
106 target_task : task_t;
107 init_port_set : mach_port_array_t =
108 ^array[] of mach_port_t);
111 * Retrieve the stashed ports for the target task.
113 routine mach_ports_lookup(
114 target_task : task_t;
115 out init_port_set : mach_port_array_t =
116 ^array[] of mach_port_t);
119 * Returns information about the target task.
122 target_task : task_name_t;
123 flavor : task_flavor_t;
124 out task_info_out : task_info_t, CountInOut);
127 * Set task information.
129 routine task_set_info(
130 target_task : task_t;
131 flavor : task_flavor_t;
132 task_info_in : task_info_t);
135 * Increment the suspend count for the target task.
136 * No threads within a task may run when the suspend
137 * count for that task is non-zero.
139 routine task_suspend(
140 target_task : task_t);
144 * Decrement the suspend count for the target task,
145 * if the count is currently non-zero. If the resulting
146 * suspend count is zero, then threads within the task
147 * that also have non-zero suspend counts may execute.
150 target_task : task_t);
153 * Returns the current value of the selected special port
154 * associated with the target task.
156 routine task_get_special_port(
159 out special_port : mach_port_t);
162 * Set one of the special ports associated with the
165 routine task_set_special_port(
168 special_port : mach_port_t);
171 * Create a new thread within the target task, returning
172 * the port representing the first thr_act in that new thread. The
173 * initial execution state of the thread is undefined.
177 thread_create_from_user(
181 parent_task : task_t;
182 out child_act : thread_act_t);
185 * Create a new thread within the target task, returning
186 * the port representing that new thread. The new thread
187 * is not suspended; its initial execution state is given
188 * by flavor and new_state. Returns the port representing
193 thread_create_running_from_user(
195 thread_create_running(
197 parent_task : task_t;
198 flavor : thread_state_flavor_t;
199 new_state : thread_state_t;
200 out child_act : thread_act_t);
203 * Set an exception handler for a task on one or more exception types.
204 * These handlers are invoked for all threads in the task if there are
205 * no thread-specific exception handlers or those handlers returned an
208 routine task_set_exception_ports(
210 exception_mask : exception_mask_t;
211 new_port : mach_port_t;
212 behavior : exception_behavior_t;
213 new_flavor : thread_state_flavor_t);
217 * Lookup some of the old exception handlers for a task
219 routine task_get_exception_ports(
221 exception_mask : exception_mask_t;
222 out masks : exception_mask_array_t;
223 out old_handlers : exception_handler_array_t, SameCount;
224 out old_behaviors : exception_behavior_array_t, SameCount;
225 out old_flavors : exception_flavor_array_t, SameCount);
229 * Set an exception handler for a thread on one or more exception types.
230 * At the same time, return the previously defined exception handlers for
233 routine task_swap_exception_ports(
235 exception_mask : exception_mask_t;
236 new_port : mach_port_t;
237 behavior : exception_behavior_t;
238 new_flavor : thread_state_flavor_t;
239 out masks : exception_mask_array_t;
240 out old_handlerss : exception_handler_array_t, SameCount;
241 out old_behaviors : exception_behavior_array_t, SameCount;
242 out old_flavors : exception_flavor_array_t, SameCount);
245 * OBSOLETE interface.
247 routine lock_set_create(
249 out new_lock_set : lock_set_t;
254 * OBSOLETE interface.
256 routine lock_set_destroy(
258 lock_set : lock_set_t);
261 * Create and destroy semaphore synchronizers on a
262 * per-task basis (i.e. the task owns them).
265 routine semaphore_create(
267 out semaphore : semaphore_t;
271 routine semaphore_destroy(
273 semaphore : semaphore_consume_ref_t);
276 * Set/get policy information for a task.
277 * (Approved Mac OS X microkernel interface)
280 routine task_policy_set(
282 flavor : task_policy_flavor_t;
283 policy_info : task_policy_t);
285 routine task_policy_get(
287 flavor : task_policy_flavor_t;
288 out policy_info : task_policy_t, CountInOut;
289 inout get_default : boolean_t);
292 * Removed from the kernel.
299 reply : mach_port_make_send_t);
303 * JMM - Everything from here down is likely to go away soon
306 * OBSOLETE interface.
311 base : policy_base_t;
312 set_limit : boolean_t;
317 * Establish a user-level handler for the specified
320 routine task_set_emulation(
321 target_port : task_t;
322 routine_entry_pt: vm_address_t;
323 routine_number : int);
326 * Get user-level handler entry points for all
327 * emulated system calls.
329 routine task_get_emulation_vector(
331 out vector_start : int;
332 out emulation_vector: emulation_vector_t);
335 * Establish user-level handlers for the specified
336 * system calls. Non-emulated system calls are specified
337 * with emulation_vector[i] == EML_ROUTINE_NULL.
339 routine task_set_emulation_vector(
342 emulation_vector: emulation_vector_t);
346 * Establish restart pc for interrupted atomic sequences.
348 routine task_set_ras_pc(
349 target_task : task_t;
350 basepc : vm_address_t;
351 boundspc : vm_address_t);
355 * Return zone info as seen/used by this task.
357 routine task_zone_info(
358 target_task : task_t;
359 out names : mach_zone_name_array_t,
361 out info : task_zone_info_array_t,
366 * JMM - Want to eliminate processor_set so keep them at the end.
370 * Assign task to processor set.
374 new_set : processor_set_t;
375 assign_threads : boolean_t);
378 * Assign task to default set.
380 routine task_assign_default(
382 assign_threads : boolean_t);
385 * Get current assignment for task.
387 routine task_get_assignment(
389 out assigned_set : processor_set_name_t);
392 * OBSOLETE interface.
394 routine task_set_policy(
396 pset : processor_set_t;
398 base : policy_base_t;
399 limit : policy_limit_t;
403 * Read the selected state which is to be installed on new
404 * threads in the task as they are created.
406 routine task_get_state(
408 flavor : thread_state_flavor_t;
409 out old_state : thread_state_t, CountInOut);
412 * Set the selected state information to be installed on
413 * all subsequently created threads in the task.
415 routine task_set_state(
417 flavor : thread_state_flavor_t;
418 new_state : thread_state_t);
421 * Change the task's physical footprint limit (in MB).
423 routine task_set_phys_footprint_limit(
426 out old_limit : int);
428 routine task_suspend2(
429 target_task : task_t;
430 out suspend_token : task_suspension_token_t);
432 routine task_resume2(
433 suspend_token : task_suspension_token_t);
435 routine task_purgable_info(
437 out stats : task_purgable_info_t);
439 routine task_get_mach_voucher(
441 which : mach_voucher_selector_t;
442 out voucher : ipc_voucher_t);
444 routine task_set_mach_voucher(
446 voucher : ipc_voucher_t);
448 routine task_swap_mach_voucher(
450 new_voucher : ipc_voucher_t;
451 inout old_voucher : ipc_voucher_t);
453 routine task_generate_corpse(
455 out corpse_task_port:mach_port_t);
457 routine task_map_corpse_info(
460 out kcd_addr_begin :vm_address_t;
461 out kcd_size :uint32_t);
463 routine task_register_dyld_image_infos(
465 dyld_images :dyld_kernel_image_info_array_t);
467 routine task_unregister_dyld_image_infos(
469 dyld_images :dyld_kernel_image_info_array_t);
471 routine task_get_dyld_image_infos(
473 out dyld_images :dyld_kernel_image_info_array_t);
475 routine task_register_dyld_shared_cache_image_info(
477 dyld_cache_image :dyld_kernel_image_info_t;
479 private_cache :boolean_t);
481 routine task_register_dyld_set_dyld_state(
483 dyld_state :uint8_t);
485 routine task_register_dyld_get_process_state(
487 out dyld_process_state :dyld_kernel_process_info_t);
489 routine task_map_corpse_info_64(
492 out kcd_addr_begin :mach_vm_address_t;
493 out kcd_size :mach_vm_size_t);
495 /* vim: set ft=c : */