1 #ifndef _ASM_M68K_UNISTD_H_ 2 #define _ASM_M68K_UNISTD_H_ 3 4 #include <uapi/asm/unistd.h> 5 6 7 #define NR_syscalls 348 8 9 #define __ARCH_WANT_OLD_READDIR 10 #define __ARCH_WANT_OLD_STAT 11 #define __ARCH_WANT_STAT64 12 #define __ARCH_WANT_SYS_ALARM 13 #define __ARCH_WANT_SYS_GETHOSTNAME 14 #define __ARCH_WANT_SYS_IPC 15 #define __ARCH_WANT_SYS_PAUSE 16 #define __ARCH_WANT_SYS_SGETMASK 17 #define __ARCH_WANT_SYS_SIGNAL 18 #define __ARCH_WANT_SYS_TIME 19 #define __ARCH_WANT_SYS_UTIME 20 #define __ARCH_WANT_SYS_WAITPID 21 #define __ARCH_WANT_SYS_SOCKETCALL 22 #define __ARCH_WANT_SYS_FADVISE64 23 #define __ARCH_WANT_SYS_GETPGRP 24 #define __ARCH_WANT_SYS_LLSEEK 25 #define __ARCH_WANT_SYS_NICE 26 #define __ARCH_WANT_SYS_OLD_GETRLIMIT 27 #define __ARCH_WANT_SYS_OLD_MMAP 28 #define __ARCH_WANT_SYS_OLD_SELECT 29 #define __ARCH_WANT_SYS_OLDUMOUNT 30 #define __ARCH_WANT_SYS_SIGPENDING 31 #define __ARCH_WANT_SYS_SIGPROCMASK 32 #define __ARCH_WANT_SYS_RT_SIGACTION 33 #define __ARCH_WANT_SYS_RT_SIGSUSPEND 34 #define __ARCH_WANT_SYS_FORK 35 #define __ARCH_WANT_SYS_VFORK 36 37 /* 38 * "Conditional" syscalls 39 * 40 * What we want is __attribute__((weak,alias("sys_ni_syscall"))), 41 * but it doesn't work on all toolchains, so we just do it by hand 42 */ 43 #define cond_syscall(x) asm(".weak\t" #x "\n\t.set\t" #x ",sys_ni_syscall") 44 45 #endif /* _ASM_M68K_UNISTD_H_ */ 46