]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/sysent.h
xnu-1228.15.4.tar.gz
[apple/xnu.git] / bsd / sys / sysent.h
index 87fbc5c88ccce1127bccb17c0f3f7f2f2a6e6218..59aec4ffc77ffd351e60c6dad6e9950b321664f3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2004-2007 Apple Inc. All rights reserved.
  *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
 typedef        int32_t sy_call_t(struct proc *, void *, int *);
 typedef        void    sy_munge_t(const void *, void *);
 
-extern struct sysent {         /* system call table */
+struct sysent {                /* system call table */
        int16_t         sy_narg;        /* number of args */
-       int8_t          sy_cancel;      /* funnel type */
-       int8_t          sy_funnel;      /* funnel type */
+       int8_t          sy_resv;        /* reserved  */
+       int8_t          sy_flags;       /* flags */
        sy_call_t       *sy_call;       /* implementing function */
-       sy_munge_t      *sy_arg_munge32; /* system call aguments munger for 32-bit process */
-       sy_munge_t      *sy_arg_munge64; /* system call aguments munger for 64-bit process */
+       sy_munge_t      *sy_arg_munge32; /* system call arguments munger for 32-bit process */
+       sy_munge_t      *sy_arg_munge64; /* system call arguments munger for 64-bit process */
        int32_t         sy_return_type; /* system call return types */
-} sysent[];
+       uint16_t        sy_arg_bytes;   /* Total size of arguments in bytes for
+                                        * 32-bit system calls
+                                        */
+};
+
+#ifndef __INIT_SYSENT_C__
+extern struct sysent sysent[];
+#endif /* __INIT_SYSENT_C__ */
+
+extern int nsysent;
+#define NUM_SYSENT     427     /* Current number of defined syscalls */
 
 /* sy_funnel flags bits */
-#define FUNNEL_MASK    0x00ff
-#define        UNSAFE_64BIT    0x0100
+#define FUNNEL_MASK    0x07f
+#define        UNSAFE_64BIT    0x080
 
 /* 
  * Valid values for sy_cancel
@@ -73,8 +83,6 @@ extern struct sysent {                /* system call table */
 #define _SYSCALL_RET_SIZE_T            5       
 #define _SYSCALL_RET_SSIZE_T   6       
 
-extern int nsysent;
-
 #endif /* __APPLE_API_PRIVATE */
 #endif /* KERNEL_PRIVATE */