This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / include / asm-i386 / unistd.h
index 1e0dc99..7433fb8 100644 (file)
 #define __NR_mq_getsetattr     (__NR_mq_open+5)
 #define __NR_sys_kexec_load    283
 #define __NR_waitid            284
-/* #define __NR_sys_setaltroot 285 */
-#define __NR_add_key           286
-#define __NR_request_key       287
-#define __NR_keyctl            288
+#define NR_syscalls 285
 
-#define NR_syscalls 289
+#ifdef USE_IOPRIO_SYSCALLS
+#warning MEF need to fix up syscall numbers due to waitid addition
+#define __NR_ioprio_set                284
+#define __NR_ioprio_get                285
+#define NR_syscalls 286
+#endif 
 
 #ifndef __KERNEL_SYSCALLS_NO_ERRNO__
-/*
- * user-visible error numbers are in the range -1 - -128: see
- * <asm-i386/errno.h>
- */
+/* user-visible error numbers are in the range -1 - -124: see <asm-i386/errno.h> */
+
 #define __syscall_return(type, res) \
 do { \
-       if ((unsigned long)(res) >= (unsigned long)(-(128 + 1))) { \
+       if ((unsigned long)(res) >= (unsigned long)(-125)) { \
                errno = -(res); \
                res = -1; \
        } \