X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/d7e50217d7adf6e52786a38bcaa4cd698cb9a79e..89b3af67bb32e691275bf6fa803d1834b2284115:/osfmk/mach/syscall_sw.h diff --git a/osfmk/mach/syscall_sw.h b/osfmk/mach/syscall_sw.h index 1bbf2c75d..410d590e4 100644 --- a/osfmk/mach/syscall_sw.h +++ b/osfmk/mach/syscall_sw.h @@ -1,16 +1,19 @@ /* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. + * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * - * @APPLE_LICENSE_HEADER_START@ - * - * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in - * compliance with the License. Please obtain a copy of the License at - * http://www.opensource.apple.com/apsl/ and read it before using this - * file. + * compliance with the License. The rights granted to you under the License + * may not be used to create, or enable the creation or redistribution of, + * unlawful or unlicensed copies of an Apple operating system, or to + * circumvent, violate, or enable the circumvention or violation of, any + * terms of an Apple operating system software license agreement. + * + * Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER @@ -20,7 +23,7 @@ * Please see the License for the specific language governing rights and * limitations under the License. * - * @APPLE_LICENSE_HEADER_END@ + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ @@ -51,6 +54,8 @@ * the rights to redistribute these changes. */ +#ifdef PRIVATE + #ifndef _MACH_SYSCALL_SW_H_ #define _MACH_SYSCALL_SW_H_ @@ -75,6 +80,7 @@ kernel_trap(mach_reply_port,-26,0) kernel_trap(thread_self_trap,-27,0) kernel_trap(task_self_trap,-28,0) kernel_trap(host_self_trap,-29,0) + kernel_trap(mach_msg_trap,-31,7) kernel_trap(mach_msg_overwrite_trap,-32,9) kernel_trap(semaphore_signal_trap, -33, 1) @@ -85,27 +91,56 @@ kernel_trap(semaphore_wait_signal_trap,-37,2) kernel_trap(semaphore_timedwait_trap,-38,3) kernel_trap(semaphore_timedwait_signal_trap,-39,4) +#if !defined(__LP64__) kernel_trap(init_process,-41,0) kernel_trap(map_fd,-43,5) +#endif /* __LP64__ */ + +kernel_trap(task_name_for_pid,-44,3) kernel_trap(task_for_pid,-45,3) kernel_trap(pid_for_task,-46,2) + +#if !defined(__LP64__) kernel_trap(macx_swapon,-48, 4) kernel_trap(macx_swapoff,-49, 2) kernel_trap(macx_triggers,-51, 4) +kernel_trap(macx_backing_store_suspend,-52, 1) +kernel_trap(macx_backing_store_recovery,-53, 1) +#endif /* __LP64__ */ +/* These are currently used by pthreads even on LP64 */ +/* But as soon as that is fixed - they will go away there */ kernel_trap(swtch_pri,-59,1) kernel_trap(swtch,-60,0) + kernel_trap(syscall_thread_switch,-61,3) kernel_trap(clock_sleep_trap,-62,5) kernel_trap(mach_timebase_info,-89,1) + +#if defined(__LP64__) +/* unit64_t arguments passed in one register in LP64 */ +kernel_trap(mach_wait_until,-90,1) +#else /* __LP64__ */ kernel_trap(mach_wait_until,-90,2) -kernel_trap(mk_wait_until,-90,2) +#endif /* __LP64__ */ + kernel_trap(mk_timer_create,-91,0) kernel_trap(mk_timer_destroy,-92,1) + +#if defined(__LP64__) +/* unit64_t arguments passed in one register in LP64 */ +kernel_trap(mk_timer_arm,-93,2) +#else /* __LP64__ */ kernel_trap(mk_timer_arm,-93,3) +#endif /* __LP64__ */ + kernel_trap(mk_timer_cancel,-94,2) +#if !defined(__LP64__) kernel_trap(MKGetTimeBaseInfo,-95,5) +#endif /* __LP64__ */ #endif /* _MACH_SYSCALL_SW_H_ */ + +#endif /* PRIVATE */