1 /* 2 ** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved. 3 ** Distributed under the terms of the NewOS License. 4 */ 5 #ifndef _KERNEL_KSYSCALLS_H 6 #define _KERNEL_KSYSCALLS_H 7 8 9 #include <SupportDefs.h> 10 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 int32 syscall_dispatcher(uint32 function, void *argBuffer, uint64 *_returnValue); 17 status_t generic_syscall_init(void); 18 19 #ifdef __cplusplus 20 } 21 #endif 22 23 #endif /* _KERNEL_KSYSCALLS_H */ 24