1 /* 2 * S390 version 3 * 4 * Derived from "include/asm-i386/unistd.h" 5 */ 6 #ifndef _ASM_S390_UNISTD_H_ 7 #define _ASM_S390_UNISTD_H_ 8 9 #include <uapi/asm/unistd.h> 10 11 12 #define __IGNORE_time 13 14 /* Ignore system calls that are also reachable via sys_socketcall */ 15 #define __IGNORE_recvmmsg 16 #define __IGNORE_sendmmsg 17 #define __IGNORE_socket 18 #define __IGNORE_socketpair 19 #define __IGNORE_bind 20 #define __IGNORE_connect 21 #define __IGNORE_listen 22 #define __IGNORE_accept4 23 #define __IGNORE_getsockopt 24 #define __IGNORE_setsockopt 25 #define __IGNORE_getsockname 26 #define __IGNORE_getpeername 27 #define __IGNORE_sendto 28 #define __IGNORE_sendmsg 29 #define __IGNORE_recvfrom 30 #define __IGNORE_recvmsg 31 #define __IGNORE_shutdown 32 33 #define __ARCH_WANT_OLD_READDIR 34 #define __ARCH_WANT_SYS_ALARM 35 #define __ARCH_WANT_SYS_GETHOSTNAME 36 #define __ARCH_WANT_SYS_PAUSE 37 #define __ARCH_WANT_SYS_SIGNAL 38 #define __ARCH_WANT_SYS_UTIME 39 #define __ARCH_WANT_SYS_SOCKETCALL 40 #define __ARCH_WANT_SYS_IPC 41 #define __ARCH_WANT_SYS_FADVISE64 42 #define __ARCH_WANT_SYS_GETPGRP 43 #define __ARCH_WANT_SYS_LLSEEK 44 #define __ARCH_WANT_SYS_NICE 45 #define __ARCH_WANT_SYS_OLD_GETRLIMIT 46 #define __ARCH_WANT_SYS_OLD_MMAP 47 #define __ARCH_WANT_SYS_OLDUMOUNT 48 #define __ARCH_WANT_SYS_SIGPENDING 49 #define __ARCH_WANT_SYS_SIGPROCMASK 50 # ifdef CONFIG_COMPAT 51 # define __ARCH_WANT_COMPAT_SYS_TIME 52 # endif 53 #define __ARCH_WANT_SYS_FORK 54 #define __ARCH_WANT_SYS_VFORK 55 #define __ARCH_WANT_SYS_CLONE 56 57 #endif /* _ASM_S390_UNISTD_H_ */ 58