linux_syscall.h revision 1.83
11.28Snjoly/* $NetBSD: linux_syscall.h,v 1.83 2021/09/20 00:09:34 thorpej Exp $ */ 21.1Smanu 31.1Smanu/* 41.1Smanu * System call numbers. 51.1Smanu * 61.1Smanu * DO NOT EDIT-- this file is automatically generated. 71.83Sthorpej * created from NetBSD: syscalls.master,v 1.71 2021/09/20 00:09:01 thorpej Exp 81.1Smanu */ 91.1Smanu 101.26Schristos#ifndef _LINUX_SYS_SYSCALL_H_ 111.26Schristos#define _LINUX_SYS_SYSCALL_H_ 121.26Schristos 131.28Snjoly#define LINUX_SYS_MAXSYSARGS 8 141.28Snjoly 151.1Smanu/* syscall: "syscall" ret: "int" args: */ 161.1Smanu#define LINUX_SYS_syscall 0 171.1Smanu 181.1Smanu/* syscall: "exit" ret: "int" args: "int" */ 191.1Smanu#define LINUX_SYS_exit 1 201.1Smanu 211.1Smanu/* syscall: "fork" ret: "int" args: */ 221.1Smanu#define LINUX_SYS_fork 2 231.1Smanu 241.55Snjoly/* syscall: "read" ret: "ssize_t" args: "int" "void *" "size_t" */ 251.1Smanu#define LINUX_SYS_read 3 261.1Smanu 271.55Snjoly/* syscall: "write" ret: "ssize_t" args: "int" "const void *" "size_t" */ 281.1Smanu#define LINUX_SYS_write 4 291.1Smanu 301.54Snjoly/* syscall: "open" ret: "int" args: "const char *" "int" "linux_umode_t" */ 311.1Smanu#define LINUX_SYS_open 5 321.1Smanu 331.1Smanu/* syscall: "close" ret: "int" args: "int" */ 341.1Smanu#define LINUX_SYS_close 6 351.1Smanu 361.1Smanu/* syscall: "waitpid" ret: "int" args: "int" "int *" "int" */ 371.1Smanu#define LINUX_SYS_waitpid 7 381.1Smanu 391.54Snjoly/* syscall: "creat" ret: "int" args: "const char *" "linux_umode_t" */ 401.1Smanu#define LINUX_SYS_creat 8 411.1Smanu 421.1Smanu/* syscall: "link" ret: "int" args: "const char *" "const char *" */ 431.1Smanu#define LINUX_SYS_link 9 441.1Smanu 451.1Smanu/* syscall: "unlink" ret: "int" args: "const char *" */ 461.1Smanu#define LINUX_SYS_unlink 10 471.1Smanu 481.1Smanu/* syscall: "execve" ret: "int" args: "const char *" "char **" "char **" */ 491.1Smanu#define LINUX_SYS_execve 11 501.1Smanu 511.1Smanu/* syscall: "chdir" ret: "int" args: "const char *" */ 521.1Smanu#define LINUX_SYS_chdir 12 531.1Smanu 541.1Smanu/* syscall: "time" ret: "int" args: "linux_time_t *" */ 551.1Smanu#define LINUX_SYS_time 13 561.1Smanu 571.57Snjoly/* syscall: "mknod" ret: "int" args: "const char *" "linux_umode_t" "unsigned" */ 581.1Smanu#define LINUX_SYS_mknod 14 591.1Smanu 601.1Smanu/* syscall: "chmod" ret: "int" args: "const char *" "int" */ 611.1Smanu#define LINUX_SYS_chmod 15 621.1Smanu 631.65Snjoly/* syscall: "__posix_lchown" ret: "int" args: "const char *" "uid_t" "gid_t" */ 641.28Snjoly#define LINUX_SYS___posix_lchown 16 651.1Smanu 661.1Smanu /* 18 is obsolete ostat */ 671.1Smanu/* syscall: "lseek" ret: "long" args: "int" "long" "int" */ 681.1Smanu#define LINUX_SYS_lseek 19 691.1Smanu 701.1Smanu/* syscall: "getpid" ret: "pid_t" args: */ 711.1Smanu#define LINUX_SYS_getpid 20 721.1Smanu 731.1Smanu /* 22 is obsolete umount */ 741.1Smanu/* syscall: "setuid" ret: "int" args: "uid_t" */ 751.1Smanu#define LINUX_SYS_setuid 23 761.1Smanu 771.1Smanu/* syscall: "getuid" ret: "uid_t" args: */ 781.1Smanu#define LINUX_SYS_getuid 24 791.1Smanu 801.1Smanu/* syscall: "stime" ret: "int" args: "linux_time_t *" */ 811.1Smanu#define LINUX_SYS_stime 25 821.1Smanu 831.44Smatt/* syscall: "ptrace" ret: "int" args: "long" "long" "long" "long" */ 841.1Smanu#define LINUX_SYS_ptrace 26 851.1Smanu 861.1Smanu/* syscall: "alarm" ret: "int" args: "unsigned int" */ 871.1Smanu#define LINUX_SYS_alarm 27 881.1Smanu 891.1Smanu /* 28 is obsolete ofstat */ 901.1Smanu/* syscall: "pause" ret: "int" args: */ 911.1Smanu#define LINUX_SYS_pause 29 921.1Smanu 931.1Smanu/* syscall: "utime" ret: "int" args: "const char *" "struct linux_utimbuf *" */ 941.1Smanu#define LINUX_SYS_utime 30 951.1Smanu 961.1Smanu/* syscall: "access" ret: "int" args: "const char *" "int" */ 971.1Smanu#define LINUX_SYS_access 33 981.1Smanu 991.1Smanu/* syscall: "nice" ret: "int" args: "int" */ 1001.1Smanu#define LINUX_SYS_nice 34 1011.1Smanu 1021.1Smanu/* syscall: "sync" ret: "int" args: */ 1031.1Smanu#define LINUX_SYS_sync 36 1041.1Smanu 1051.1Smanu/* syscall: "kill" ret: "int" args: "int" "int" */ 1061.1Smanu#define LINUX_SYS_kill 37 1071.1Smanu 1081.28Snjoly/* syscall: "__posix_rename" ret: "int" args: "const char *" "const char *" */ 1091.28Snjoly#define LINUX_SYS___posix_rename 38 1101.1Smanu 1111.54Snjoly/* syscall: "mkdir" ret: "int" args: "const char *" "linux_umode_t" */ 1121.1Smanu#define LINUX_SYS_mkdir 39 1131.1Smanu 1141.1Smanu/* syscall: "rmdir" ret: "int" args: "const char *" */ 1151.1Smanu#define LINUX_SYS_rmdir 40 1161.1Smanu 1171.52Snjoly/* syscall: "dup" ret: "int" args: "int" */ 1181.1Smanu#define LINUX_SYS_dup 41 1191.1Smanu 1201.1Smanu/* syscall: "pipe" ret: "int" args: "int *" */ 1211.1Smanu#define LINUX_SYS_pipe 42 1221.1Smanu 1231.1Smanu/* syscall: "times" ret: "int" args: "struct times *" */ 1241.1Smanu#define LINUX_SYS_times 43 1251.1Smanu 1261.1Smanu/* syscall: "brk" ret: "int" args: "char *" */ 1271.1Smanu#define LINUX_SYS_brk 45 1281.1Smanu 1291.1Smanu/* syscall: "setgid" ret: "int" args: "gid_t" */ 1301.1Smanu#define LINUX_SYS_setgid 46 1311.1Smanu 1321.1Smanu/* syscall: "getgid" ret: "gid_t" args: */ 1331.1Smanu#define LINUX_SYS_getgid 47 1341.1Smanu 1351.1Smanu/* syscall: "signal" ret: "int" args: "int" "linux___sighandler_t" */ 1361.1Smanu#define LINUX_SYS_signal 48 1371.1Smanu 1381.1Smanu/* syscall: "geteuid" ret: "uid_t" args: */ 1391.1Smanu#define LINUX_SYS_geteuid 49 1401.1Smanu 1411.1Smanu/* syscall: "getegid" ret: "gid_t" args: */ 1421.1Smanu#define LINUX_SYS_getegid 50 1431.1Smanu 1441.1Smanu/* syscall: "acct" ret: "int" args: "char *" */ 1451.1Smanu#define LINUX_SYS_acct 51 1461.1Smanu 1471.27Schristos/* syscall: "ioctl" ret: "int" args: "int" "u_long" "void *" */ 1481.1Smanu#define LINUX_SYS_ioctl 54 1491.1Smanu 1501.1Smanu/* syscall: "fcntl" ret: "int" args: "int" "int" "void *" */ 1511.1Smanu#define LINUX_SYS_fcntl 55 1521.1Smanu 1531.1Smanu /* 56 is obsolete mpx */ 1541.1Smanu/* syscall: "setpgid" ret: "int" args: "int" "int" */ 1551.1Smanu#define LINUX_SYS_setpgid 57 1561.1Smanu 1571.1Smanu/* syscall: "olduname" ret: "int" args: "struct linux_old_utsname *" */ 1581.1Smanu#define LINUX_SYS_olduname 59 1591.1Smanu 1601.1Smanu/* syscall: "umask" ret: "int" args: "int" */ 1611.1Smanu#define LINUX_SYS_umask 60 1621.1Smanu 1631.1Smanu/* syscall: "chroot" ret: "int" args: "char *" */ 1641.1Smanu#define LINUX_SYS_chroot 61 1651.1Smanu 1661.52Snjoly/* syscall: "dup2" ret: "int" args: "int" "int" */ 1671.1Smanu#define LINUX_SYS_dup2 63 1681.1Smanu 1691.1Smanu/* syscall: "getppid" ret: "pid_t" args: */ 1701.1Smanu#define LINUX_SYS_getppid 64 1711.1Smanu 1721.1Smanu/* syscall: "getpgrp" ret: "int" args: */ 1731.1Smanu#define LINUX_SYS_getpgrp 65 1741.1Smanu 1751.1Smanu/* syscall: "setsid" ret: "int" args: */ 1761.1Smanu#define LINUX_SYS_setsid 66 1771.1Smanu 1781.1Smanu/* syscall: "sigaction" ret: "int" args: "int" "const struct linux_old_sigaction *" "struct linux_old_sigaction *" */ 1791.1Smanu#define LINUX_SYS_sigaction 67 1801.1Smanu 1811.1Smanu/* syscall: "siggetmask" ret: "int" args: */ 1821.1Smanu#define LINUX_SYS_siggetmask 68 1831.1Smanu 1841.1Smanu/* syscall: "sigsetmask" ret: "int" args: "linux_old_sigset_t" */ 1851.1Smanu#define LINUX_SYS_sigsetmask 69 1861.1Smanu 1871.1Smanu/* syscall: "setreuid" ret: "int" args: "uid_t" "uid_t" */ 1881.1Smanu#define LINUX_SYS_setreuid 70 1891.1Smanu 1901.1Smanu/* syscall: "setregid" ret: "int" args: "gid_t" "gid_t" */ 1911.1Smanu#define LINUX_SYS_setregid 71 1921.1Smanu 1931.27Schristos/* syscall: "sigsuspend" ret: "int" args: "void *" "int" "int" */ 1941.1Smanu#define LINUX_SYS_sigsuspend 72 1951.1Smanu 1961.1Smanu/* syscall: "sigpending" ret: "int" args: "linux_old_sigset_t *" */ 1971.1Smanu#define LINUX_SYS_sigpending 73 1981.1Smanu 1991.1Smanu/* syscall: "sethostname" ret: "int" args: "char *" "u_int" */ 2001.1Smanu#define LINUX_SYS_sethostname 74 2011.1Smanu 2021.1Smanu/* syscall: "setrlimit" ret: "int" args: "u_int" "struct orlimit *" */ 2031.1Smanu#define LINUX_SYS_setrlimit 75 2041.1Smanu 2051.1Smanu/* syscall: "getrlimit" ret: "int" args: "u_int" "struct orlimit *" */ 2061.1Smanu#define LINUX_SYS_getrlimit 76 2071.1Smanu 2081.37Snjoly/* syscall: "getrusage" ret: "int" args: "int" "struct rusage50 *" */ 2091.1Smanu#define LINUX_SYS_getrusage 77 2101.1Smanu 2111.37Snjoly/* syscall: "gettimeofday" ret: "int" args: "struct timeval50 *" "struct timezone *" */ 2121.1Smanu#define LINUX_SYS_gettimeofday 78 2131.1Smanu 2141.37Snjoly/* syscall: "settimeofday" ret: "int" args: "struct timeval50 *" "struct timezone *" */ 2151.1Smanu#define LINUX_SYS_settimeofday 79 2161.1Smanu 2171.59Snjoly/* syscall: "getgroups" ret: "int" args: "int" "gid_t *" */ 2181.1Smanu#define LINUX_SYS_getgroups 80 2191.1Smanu 2201.59Snjoly/* syscall: "setgroups" ret: "int" args: "int" "gid_t *" */ 2211.1Smanu#define LINUX_SYS_setgroups 81 2221.1Smanu 2231.1Smanu/* syscall: "symlink" ret: "int" args: "const char *" "const char *" */ 2241.1Smanu#define LINUX_SYS_symlink 83 2251.1Smanu 2261.1Smanu/* syscall: "oolstat" ret: "int" args: "const char *" "struct stat43 *" */ 2271.1Smanu#define LINUX_SYS_oolstat 84 2281.1Smanu 2291.67Snjoly/* syscall: "readlink" ret: "ssize_t" args: "const char *" "char *" "int" */ 2301.1Smanu#define LINUX_SYS_readlink 85 2311.1Smanu 2321.1Smanu/* syscall: "swapon" ret: "int" args: "char *" */ 2331.1Smanu#define LINUX_SYS_swapon 87 2341.1Smanu 2351.1Smanu/* syscall: "reboot" ret: "int" args: "int" "int" "int" "void *" */ 2361.1Smanu#define LINUX_SYS_reboot 88 2371.1Smanu 2381.27Schristos/* syscall: "readdir" ret: "int" args: "int" "void *" "unsigned int" */ 2391.1Smanu#define LINUX_SYS_readdir 89 2401.1Smanu 2411.1Smanu/* syscall: "mmap" ret: "int" args: "unsigned long" "size_t" "int" "int" "int" "linux_off_t" */ 2421.1Smanu#define LINUX_SYS_mmap 90 2431.1Smanu 2441.61Snjoly/* syscall: "munmap" ret: "int" args: "void *" "size_t" */ 2451.1Smanu#define LINUX_SYS_munmap 91 2461.1Smanu 2471.1Smanu/* syscall: "truncate" ret: "int" args: "const char *" "long" */ 2481.1Smanu#define LINUX_SYS_truncate 92 2491.1Smanu 2501.1Smanu/* syscall: "ftruncate" ret: "int" args: "int" "long" */ 2511.1Smanu#define LINUX_SYS_ftruncate 93 2521.1Smanu 2531.54Snjoly/* syscall: "fchmod" ret: "int" args: "int" "linux_umode_t" */ 2541.1Smanu#define LINUX_SYS_fchmod 94 2551.1Smanu 2561.66Snjoly/* syscall: "__posix_fchown" ret: "int" args: "int" "uid_t" "gid_t" */ 2571.1Smanu#define LINUX_SYS___posix_fchown 95 2581.1Smanu 2591.1Smanu/* syscall: "getpriority" ret: "int" args: "int" "int" */ 2601.1Smanu#define LINUX_SYS_getpriority 96 2611.1Smanu 2621.1Smanu/* syscall: "setpriority" ret: "int" args: "int" "int" "int" */ 2631.1Smanu#define LINUX_SYS_setpriority 97 2641.1Smanu 2651.1Smanu/* syscall: "statfs" ret: "int" args: "const char *" "struct linux_statfs *" */ 2661.1Smanu#define LINUX_SYS_statfs 99 2671.1Smanu 2681.1Smanu/* syscall: "fstatfs" ret: "int" args: "int" "struct linux_statfs *" */ 2691.1Smanu#define LINUX_SYS_fstatfs 100 2701.1Smanu 2711.1Smanu/* syscall: "ioperm" ret: "int" args: "unsigned int" "unsigned int" "int" */ 2721.1Smanu#define LINUX_SYS_ioperm 101 2731.1Smanu 2741.1Smanu/* syscall: "socketcall" ret: "int" args: "int" "void *" */ 2751.1Smanu#define LINUX_SYS_socketcall 102 2761.1Smanu 2771.48Schristos/* syscall: "setitimer" ret: "int" args: "int" "struct itimerval50 *" "struct itimerval50 *" */ 2781.1Smanu#define LINUX_SYS_setitimer 104 2791.1Smanu 2801.48Schristos/* syscall: "getitimer" ret: "int" args: "int" "struct itimerval50 *" */ 2811.1Smanu#define LINUX_SYS_getitimer 105 2821.1Smanu 2831.1Smanu/* syscall: "stat" ret: "int" args: "const char *" "struct linux_stat *" */ 2841.1Smanu#define LINUX_SYS_stat 106 2851.1Smanu 2861.1Smanu/* syscall: "lstat" ret: "int" args: "const char *" "struct linux_stat *" */ 2871.1Smanu#define LINUX_SYS_lstat 107 2881.1Smanu 2891.1Smanu/* syscall: "fstat" ret: "int" args: "int" "struct linux_stat *" */ 2901.1Smanu#define LINUX_SYS_fstat 108 2911.1Smanu 2921.1Smanu/* syscall: "uname" ret: "int" args: "struct linux_utsname *" */ 2931.1Smanu#define LINUX_SYS_uname 109 2941.1Smanu 2951.38Snjoly/* syscall: "wait4" ret: "int" args: "int" "int *" "int" "struct rusage50 *" */ 2961.1Smanu#define LINUX_SYS_wait4 114 2971.1Smanu 2981.1Smanu/* syscall: "swapoff" ret: "int" args: "const char *" */ 2991.1Smanu#define LINUX_SYS_swapoff 115 3001.1Smanu 3011.1Smanu/* syscall: "sysinfo" ret: "int" args: "struct linux_sysinfo *" */ 3021.1Smanu#define LINUX_SYS_sysinfo 116 3031.1Smanu 3041.44Smatt/* syscall: "ipc" ret: "int" args: "int" "long" "long" "long" "void *" */ 3051.1Smanu#define LINUX_SYS_ipc 117 3061.1Smanu 3071.1Smanu/* syscall: "fsync" ret: "int" args: "int" */ 3081.1Smanu#define LINUX_SYS_fsync 118 3091.1Smanu 3101.6Smanu/* syscall: "sigreturn" ret: "int" args: "struct linux_sigframe *" */ 3111.1Smanu#define LINUX_SYS_sigreturn 119 3121.1Smanu 3131.43Schs/* syscall: "clone" ret: "int" args: "int" "void *" "void *" "void *" "void *" */ 3141.1Smanu#define LINUX_SYS_clone 120 3151.1Smanu 3161.1Smanu/* syscall: "setdomainname" ret: "int" args: "char *" "int" */ 3171.1Smanu#define LINUX_SYS_setdomainname 121 3181.1Smanu 3191.1Smanu/* syscall: "new_uname" ret: "int" args: "struct linux_utsname *" */ 3201.1Smanu#define LINUX_SYS_new_uname 122 3211.1Smanu 3221.10Schristos/* syscall: "mprotect" ret: "int" args: "const void *" "unsigned long" "int" */ 3231.1Smanu#define LINUX_SYS_mprotect 125 3241.1Smanu 3251.1Smanu/* syscall: "sigprocmask" ret: "int" args: "int" "const linux_old_sigset_t *" "linux_old_sigset_t *" */ 3261.1Smanu#define LINUX_SYS_sigprocmask 126 3271.1Smanu 3281.31Snjoly/* syscall: "getpgid" ret: "pid_t" args: "pid_t" */ 3291.1Smanu#define LINUX_SYS_getpgid 132 3301.1Smanu 3311.1Smanu/* syscall: "fchdir" ret: "int" args: "int" */ 3321.1Smanu#define LINUX_SYS_fchdir 133 3331.1Smanu 3341.41Snjoly/* syscall: "personality" ret: "int" args: "unsigned long" */ 3351.1Smanu#define LINUX_SYS_personality 136 3361.1Smanu 3371.1Smanu/* syscall: "setfsuid" ret: "int" args: "uid_t" */ 3381.1Smanu#define LINUX_SYS_setfsuid 138 3391.1Smanu 3401.30Snjoly/* syscall: "setfsgid" ret: "int" args: "gid_t" */ 3411.30Snjoly#define LINUX_SYS_setfsgid 139 3421.1Smanu 3431.27Schristos/* syscall: "llseek" ret: "int" args: "int" "u_int32_t" "u_int32_t" "void *" "int" */ 3441.1Smanu#define LINUX_SYS_llseek 140 3451.1Smanu 3461.1Smanu/* syscall: "getdents" ret: "int" args: "int" "struct linux_dirent *" "unsigned int" */ 3471.1Smanu#define LINUX_SYS_getdents 141 3481.1Smanu 3491.37Snjoly/* syscall: "select" ret: "int" args: "int" "fd_set *" "fd_set *" "fd_set *" "struct timeval50 *" */ 3501.1Smanu#define LINUX_SYS_select 142 3511.1Smanu 3521.1Smanu/* syscall: "flock" ret: "int" args: "int" "int" */ 3531.1Smanu#define LINUX_SYS_flock 143 3541.1Smanu 3551.32Snjoly/* syscall: "__msync13" ret: "int" args: "void *" "size_t" "int" */ 3561.32Snjoly#define LINUX_SYS___msync13 144 3571.1Smanu 3581.55Snjoly/* syscall: "readv" ret: "ssize_t" args: "int" "const struct iovec *" "int" */ 3591.1Smanu#define LINUX_SYS_readv 145 3601.1Smanu 3611.55Snjoly/* syscall: "writev" ret: "ssize_t" args: "int" "const struct iovec *" "int" */ 3621.1Smanu#define LINUX_SYS_writev 146 3631.1Smanu 3641.1Smanu/* syscall: "cacheflush" ret: "int" args: "void *" "int" "int" */ 3651.1Smanu#define LINUX_SYS_cacheflush 147 3661.1Smanu 3671.44Smatt/* syscall: "sysmips" ret: "int" args: "long" "long" "long" "long" */ 3681.2Smanu#define LINUX_SYS_sysmips 149 3691.2Smanu 3701.1Smanu/* syscall: "getsid" ret: "pid_t" args: "pid_t" */ 3711.1Smanu#define LINUX_SYS_getsid 151 3721.1Smanu 3731.1Smanu/* syscall: "fdatasync" ret: "int" args: "int" */ 3741.1Smanu#define LINUX_SYS_fdatasync 152 3751.1Smanu 3761.1Smanu/* syscall: "__sysctl" ret: "int" args: "struct linux___sysctl *" */ 3771.1Smanu#define LINUX_SYS___sysctl 153 3781.1Smanu 3791.27Schristos/* syscall: "mlock" ret: "int" args: "void *" "size_t" */ 3801.1Smanu#define LINUX_SYS_mlock 154 3811.1Smanu 3821.27Schristos/* syscall: "munlock" ret: "int" args: "void *" "size_t" */ 3831.1Smanu#define LINUX_SYS_munlock 155 3841.1Smanu 3851.1Smanu/* syscall: "mlockall" ret: "int" args: "int" */ 3861.1Smanu#define LINUX_SYS_mlockall 156 3871.1Smanu 3881.1Smanu/* syscall: "munlockall" ret: "int" args: */ 3891.1Smanu#define LINUX_SYS_munlockall 157 3901.1Smanu 3911.1Smanu/* syscall: "sched_setparam" ret: "int" args: "pid_t" "const struct linux_sched_param *" */ 3921.1Smanu#define LINUX_SYS_sched_setparam 158 3931.1Smanu 3941.1Smanu/* syscall: "sched_getparam" ret: "int" args: "pid_t" "struct linux_sched_param *" */ 3951.1Smanu#define LINUX_SYS_sched_getparam 159 3961.1Smanu 3971.1Smanu/* syscall: "sched_setscheduler" ret: "int" args: "pid_t" "int" "const struct linux_sched_param *" */ 3981.1Smanu#define LINUX_SYS_sched_setscheduler 160 3991.1Smanu 4001.1Smanu/* syscall: "sched_getscheduler" ret: "int" args: "pid_t" */ 4011.1Smanu#define LINUX_SYS_sched_getscheduler 161 4021.1Smanu 4031.1Smanu/* syscall: "sched_yield" ret: "int" args: */ 4041.1Smanu#define LINUX_SYS_sched_yield 162 4051.1Smanu 4061.1Smanu/* syscall: "sched_get_priority_max" ret: "int" args: "int" */ 4071.1Smanu#define LINUX_SYS_sched_get_priority_max 163 4081.1Smanu 4091.1Smanu/* syscall: "sched_get_priority_min" ret: "int" args: "int" */ 4101.1Smanu#define LINUX_SYS_sched_get_priority_min 164 4111.1Smanu 4121.34Snjoly/* syscall: "nanosleep" ret: "int" args: "const struct linux_timespec *" "struct linux_timespec *" */ 4131.1Smanu#define LINUX_SYS_nanosleep 166 4141.1Smanu 4151.1Smanu/* syscall: "mremap" ret: "void *" args: "void *" "size_t" "size_t" "u_long" */ 4161.1Smanu#define LINUX_SYS_mremap 167 4171.3Smanu 4181.3Smanu/* syscall: "accept" ret: "int" args: "int" "struct osockaddr *" "int *" */ 4191.3Smanu#define LINUX_SYS_accept 168 4201.3Smanu 4211.3Smanu/* syscall: "bind" ret: "int" args: "int" "const struct osockaddr *" "int" */ 4221.3Smanu#define LINUX_SYS_bind 169 4231.3Smanu 4241.74Schristos/* syscall: "connect" ret: "int" args: "int" "const struct osockaddr *" "int" */ 4251.3Smanu#define LINUX_SYS_connect 170 4261.3Smanu 4271.27Schristos/* syscall: "getpeername" ret: "int" args: "int" "void *" "int *" */ 4281.3Smanu#define LINUX_SYS_getpeername 171 4291.3Smanu 4301.27Schristos/* syscall: "getsockname" ret: "int" args: "int" "void *" "int *" */ 4311.3Smanu#define LINUX_SYS_getsockname 172 4321.3Smanu 4331.3Smanu/* syscall: "getsockopt" ret: "int" args: "int" "int" "int" "void *" "int *" */ 4341.3Smanu#define LINUX_SYS_getsockopt 173 4351.3Smanu 4361.3Smanu/* syscall: "listen" ret: "int" args: "int" "int" */ 4371.3Smanu#define LINUX_SYS_listen 174 4381.3Smanu 4391.3Smanu/* syscall: "recv" ret: "int" args: "int" "void *" "int" "int" */ 4401.3Smanu#define LINUX_SYS_recv 175 4411.3Smanu 4421.3Smanu/* syscall: "recvfrom" ret: "int" args: "int" "void *" "int" "int" "struct osockaddr *" "int *" */ 4431.3Smanu#define LINUX_SYS_recvfrom 176 4441.3Smanu 4451.40Snjoly/* syscall: "recvmsg" ret: "int" args: "int" "struct linux_msghdr *" "u_int" */ 4461.3Smanu#define LINUX_SYS_recvmsg 177 4471.3Smanu 4481.27Schristos/* syscall: "send" ret: "int" args: "int" "void *" "int" "int" */ 4491.3Smanu#define LINUX_SYS_send 178 4501.3Smanu 4511.40Snjoly/* syscall: "sendmsg" ret: "int" args: "int" "struct linux_msghdr *" "u_int" */ 4521.3Smanu#define LINUX_SYS_sendmsg 179 4531.3Smanu 4541.3Smanu/* syscall: "sendto" ret: "int" args: "int" "void *" "int" "int" "struct osockaddr *" "int" */ 4551.3Smanu#define LINUX_SYS_sendto 180 4561.3Smanu 4571.3Smanu/* syscall: "setsockopt" ret: "int" args: "int" "int" "int" "void *" "int" */ 4581.3Smanu#define LINUX_SYS_setsockopt 181 4591.3Smanu 4601.3Smanu/* syscall: "socket" ret: "int" args: "int" "int" "int" */ 4611.3Smanu#define LINUX_SYS_socket 183 4621.3Smanu 4631.3Smanu/* syscall: "socketpair" ret: "int" args: "int" "int" "int" "int *" */ 4641.3Smanu#define LINUX_SYS_socketpair 184 4651.1Smanu 4661.1Smanu/* syscall: "setresuid" ret: "int" args: "uid_t" "uid_t" "uid_t" */ 4671.1Smanu#define LINUX_SYS_setresuid 185 4681.1Smanu 4691.1Smanu/* syscall: "getresuid" ret: "int" args: "uid_t *" "uid_t *" "uid_t *" */ 4701.1Smanu#define LINUX_SYS_getresuid 186 4711.1Smanu 4721.1Smanu/* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */ 4731.1Smanu#define LINUX_SYS_poll 188 4741.1Smanu 4751.1Smanu/* syscall: "setresgid" ret: "int" args: "gid_t" "gid_t" "gid_t" */ 4761.1Smanu#define LINUX_SYS_setresgid 190 4771.1Smanu 4781.1Smanu/* syscall: "getresgid" ret: "int" args: "gid_t *" "gid_t *" "gid_t *" */ 4791.1Smanu#define LINUX_SYS_getresgid 191 4801.1Smanu 4811.43Schs/* syscall: "rt_sigreturn" ret: "int" args: "struct linux_pt_regs *" */ 4821.1Smanu#define LINUX_SYS_rt_sigreturn 193 4831.1Smanu 4841.1Smanu/* syscall: "rt_sigaction" ret: "int" args: "int" "const struct linux_sigaction *" "struct linux_sigaction *" "size_t" */ 4851.1Smanu#define LINUX_SYS_rt_sigaction 194 4861.1Smanu 4871.1Smanu/* syscall: "rt_sigprocmask" ret: "int" args: "int" "const linux_sigset_t *" "linux_sigset_t *" "size_t" */ 4881.1Smanu#define LINUX_SYS_rt_sigprocmask 195 4891.1Smanu 4901.1Smanu/* syscall: "rt_sigpending" ret: "int" args: "linux_sigset_t *" "size_t" */ 4911.1Smanu#define LINUX_SYS_rt_sigpending 196 4921.1Smanu 4931.48Schristos/* syscall: "rt_sigtimedwait" ret: "int" args: "const linux_sigset_t *" "linux_siginfo_t *" "const struct linux_timespec *" */ 4941.48Schristos#define LINUX_SYS_rt_sigtimedwait 197 4951.48Schristos 4961.39Snjoly/* syscall: "rt_queueinfo" ret: "int" args: "int" "int" "linux_siginfo_t *" */ 4971.1Smanu#define LINUX_SYS_rt_queueinfo 198 4981.1Smanu 4991.1Smanu/* syscall: "rt_sigsuspend" ret: "int" args: "linux_sigset_t *" "size_t" */ 5001.1Smanu#define LINUX_SYS_rt_sigsuspend 199 5011.1Smanu 5021.56Snjoly/* syscall: "pread" ret: "int" args: "int" "char *" "size_t" "off_t" */ 5031.1Smanu#define LINUX_SYS_pread 200 5041.1Smanu 5051.56Snjoly/* syscall: "pwrite" ret: "int" args: "int" "char *" "size_t" "off_t" */ 5061.1Smanu#define LINUX_SYS_pwrite 201 5071.1Smanu 5081.65Snjoly/* syscall: "__posix_chown" ret: "int" args: "const char *" "uid_t" "gid_t" */ 5091.28Snjoly#define LINUX_SYS___posix_chown 202 5101.1Smanu 5111.1Smanu/* syscall: "__getcwd" ret: "int" args: "char *" "size_t" */ 5121.1Smanu#define LINUX_SYS___getcwd 203 5131.1Smanu 5141.1Smanu/* syscall: "sigaltstack" ret: "int" args: "const struct linux_sigaltstack *" "struct linux_sigaltstack *" */ 5151.1Smanu#define LINUX_SYS_sigaltstack 206 5161.15Schristos 5171.15Schristos/* syscall: "mmap2" ret: "linux_off_t" args: "unsigned long" "size_t" "int" "int" "int" "linux_off_t" */ 5181.15Schristos#define LINUX_SYS_mmap2 210 5191.8Schristos 5201.8Schristos/* syscall: "truncate64" ret: "int" args: "const char *" "off_t" */ 5211.8Schristos#define LINUX_SYS_truncate64 211 5221.16Sjdolecek 5231.16Sjdolecek/* syscall: "ftruncate64" ret: "int" args: "unsigned int" "off_t" */ 5241.16Sjdolecek#define LINUX_SYS_ftruncate64 212 5251.8Schristos 5261.8Schristos/* syscall: "stat64" ret: "int" args: "const char *" "struct linux_stat64 *" */ 5271.8Schristos#define LINUX_SYS_stat64 213 5281.8Schristos 5291.8Schristos/* syscall: "lstat64" ret: "int" args: "const char *" "struct linux_stat64 *" */ 5301.8Schristos#define LINUX_SYS_lstat64 214 5311.8Schristos 5321.8Schristos/* syscall: "fstat64" ret: "int" args: "int" "struct linux_stat64 *" */ 5331.8Schristos#define LINUX_SYS_fstat64 215 5341.11Schristos 5351.17Sjdolecek/* syscall: "mincore" ret: "int" args: "void *" "size_t" "char *" */ 5361.17Sjdolecek#define LINUX_SYS_mincore 217 5371.17Sjdolecek 5381.17Sjdolecek/* syscall: "madvise" ret: "int" args: "void *" "size_t" "int" */ 5391.17Sjdolecek#define LINUX_SYS_madvise 218 5401.17Sjdolecek 5411.11Schristos/* syscall: "getdents64" ret: "int" args: "int" "struct linux_dirent64 *" "unsigned int" */ 5421.11Schristos#define LINUX_SYS_getdents64 219 5431.8Schristos 5441.10Schristos/* syscall: "fcntl64" ret: "int" args: "int" "int" "void *" */ 5451.8Schristos#define LINUX_SYS_fcntl64 220 5461.8Schristos 5471.43Schs/* syscall: "gettid" ret: "pid_t" args: */ 5481.43Schs#define LINUX_SYS_gettid 222 5491.43Schs 5501.23Sfvdl/* syscall: "setxattr" ret: "int" args: "char *" "char *" "void *" "size_t" "int" */ 5511.23Sfvdl#define LINUX_SYS_setxattr 224 5521.23Sfvdl 5531.23Sfvdl/* syscall: "lsetxattr" ret: "int" args: "char *" "char *" "void *" "size_t" "int" */ 5541.23Sfvdl#define LINUX_SYS_lsetxattr 225 5551.23Sfvdl 5561.23Sfvdl/* syscall: "fsetxattr" ret: "int" args: "int" "char *" "void *" "size_t" "int" */ 5571.23Sfvdl#define LINUX_SYS_fsetxattr 226 5581.23Sfvdl 5591.23Sfvdl/* syscall: "getxattr" ret: "ssize_t" args: "char *" "char *" "void *" "size_t" */ 5601.23Sfvdl#define LINUX_SYS_getxattr 227 5611.23Sfvdl 5621.23Sfvdl/* syscall: "lgetxattr" ret: "ssize_t" args: "char *" "char *" "void *" "size_t" */ 5631.23Sfvdl#define LINUX_SYS_lgetxattr 228 5641.23Sfvdl 5651.23Sfvdl/* syscall: "fgetxattr" ret: "ssize_t" args: "int" "char *" "void *" "size_t" */ 5661.23Sfvdl#define LINUX_SYS_fgetxattr 229 5671.23Sfvdl 5681.23Sfvdl/* syscall: "listxattr" ret: "ssize_t" args: "char *" "char *" "size_t" */ 5691.23Sfvdl#define LINUX_SYS_listxattr 230 5701.23Sfvdl 5711.23Sfvdl/* syscall: "llistxattr" ret: "ssize_t" args: "char *" "char *" "size_t" */ 5721.23Sfvdl#define LINUX_SYS_llistxattr 231 5731.23Sfvdl 5741.23Sfvdl/* syscall: "flistxattr" ret: "ssize_t" args: "int" "char *" "size_t" */ 5751.23Sfvdl#define LINUX_SYS_flistxattr 232 5761.23Sfvdl 5771.23Sfvdl/* syscall: "removexattr" ret: "int" args: "char *" "char *" */ 5781.23Sfvdl#define LINUX_SYS_removexattr 233 5791.23Sfvdl 5801.23Sfvdl/* syscall: "lremovexattr" ret: "int" args: "char *" "char *" */ 5811.23Sfvdl#define LINUX_SYS_lremovexattr 234 5821.23Sfvdl 5831.23Sfvdl/* syscall: "fremovexattr" ret: "int" args: "int" "char *" */ 5841.23Sfvdl#define LINUX_SYS_fremovexattr 235 5851.23Sfvdl 5861.43Schs/* syscall: "tkill" ret: "int" args: "int" "int" */ 5871.43Schs#define LINUX_SYS_tkill 236 5881.43Schs 5891.43Schs/* syscall: "futex" ret: "int" args: "int *" "int" "int" "const struct linux_timespec *" "int *" "int" */ 5901.43Schs#define LINUX_SYS_futex 238 5911.43Schs 5921.43Schs/* syscall: "sched_setaffinity" ret: "int" args: "pid_t" "unsigned int" "unsigned long *" */ 5931.43Schs#define LINUX_SYS_sched_setaffinity 239 5941.43Schs 5951.43Schs/* syscall: "sched_getaffinity" ret: "int" args: "pid_t" "unsigned int" "unsigned long *" */ 5961.43Schs#define LINUX_SYS_sched_getaffinity 240 5971.43Schs 5981.19Sjdolecek/* syscall: "exit_group" ret: "int" args: "int" */ 5991.19Sjdolecek#define LINUX_SYS_exit_group 246 6001.19Sjdolecek 6011.43Schs/* syscall: "set_tid_address" ret: "int" args: "int *" */ 6021.43Schs#define LINUX_SYS_set_tid_address 252 6031.43Schs 6041.58Snjoly/* syscall: "fadvise64" ret: "int" args: "int" "off_t" "size_t" "int" */ 6051.46Salnsn#define LINUX_SYS_fadvise64 254 6061.46Salnsn 6071.20Sjdolecek/* syscall: "statfs64" ret: "int" args: "const char *" "size_t" "struct linux_statfs64 *" */ 6081.20Sjdolecek#define LINUX_SYS_statfs64 255 6091.20Sjdolecek 6101.20Sjdolecek/* syscall: "fstatfs64" ret: "int" args: "int" "size_t" "struct linux_statfs64 *" */ 6111.20Sjdolecek#define LINUX_SYS_fstatfs64 256 6121.20Sjdolecek 6131.81Sthorpej/* syscall: "timer_create" ret: "int" args: "clockid_t" "struct linux_sigevent *" "timer_t *" */ 6141.81Sthorpej#define LINUX_SYS_timer_create 257 6151.81Sthorpej 6161.81Sthorpej/* syscall: "timer_settime" ret: "int" args: "timer_t" "int" "const struct linux_itimerspec *" "struct linux_itimerspec *" */ 6171.81Sthorpej#define LINUX_SYS_timer_settime 258 6181.81Sthorpej 6191.81Sthorpej/* syscall: "timer_gettime" ret: "int" args: "timer_t" "struct linux_itimerspec *" */ 6201.81Sthorpej#define LINUX_SYS_timer_gettime 259 6211.81Sthorpej 6221.81Sthorpej/* syscall: "timer_getoverrun" ret: "int" args: "timer_t" */ 6231.81Sthorpej#define LINUX_SYS_timer_getoverrun 260 6241.81Sthorpej 6251.81Sthorpej/* syscall: "timer_delete" ret: "int" args: "timer_t" */ 6261.81Sthorpej#define LINUX_SYS_timer_delete 261 6271.81Sthorpej 6281.24Sfvdl/* syscall: "clock_settime" ret: "int" args: "clockid_t" "struct linux_timespec *" */ 6291.24Sfvdl#define LINUX_SYS_clock_settime 262 6301.24Sfvdl 6311.24Sfvdl/* syscall: "clock_gettime" ret: "int" args: "clockid_t" "struct linux_timespec *" */ 6321.24Sfvdl#define LINUX_SYS_clock_gettime 263 6331.24Sfvdl 6341.24Sfvdl/* syscall: "clock_getres" ret: "int" args: "clockid_t" "struct linux_timespec *" */ 6351.24Sfvdl#define LINUX_SYS_clock_getres 264 6361.24Sfvdl 6371.24Sfvdl/* syscall: "clock_nanosleep" ret: "int" args: "clockid_t" "int" "struct linux_timespec *" "struct linux_timespec *" */ 6381.24Sfvdl#define LINUX_SYS_clock_nanosleep 265 6391.24Sfvdl 6401.43Schs/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */ 6411.43Schs#define LINUX_SYS_tgkill 266 6421.43Schs 6431.60Snjoly/* syscall: "utimes" ret: "int" args: "const char *" "const struct timeval50 *" */ 6441.50Spooka#define LINUX_SYS_utimes 267 6451.50Spooka 6461.43Schs/* syscall: "set_thread_area" ret: "int" args: "void *" */ 6471.43Schs#define LINUX_SYS_set_thread_area 283 6481.43Schs 6491.53Schs/* syscall: "openat" ret: "int" args: "int" "const char *" "int" "..." */ 6501.53Schs#define LINUX_SYS_openat 288 6511.53Schs 6521.53Schs/* syscall: "mkdirat" ret: "int" args: "int" "const char *" "linux_umode_t" */ 6531.53Schs#define LINUX_SYS_mkdirat 289 6541.53Schs 6551.53Schs/* syscall: "mknodat" ret: "int" args: "int" "const char *" "linux_umode_t" "unsigned" */ 6561.53Schs#define LINUX_SYS_mknodat 290 6571.53Schs 6581.53Schs/* syscall: "fchownat" ret: "int" args: "int" "const char *" "uid_t" "gid_t" "int" */ 6591.53Schs#define LINUX_SYS_fchownat 291 6601.53Schs 6611.53Schs/* syscall: "fstatat64" ret: "int" args: "int" "const char *" "struct linux_stat64 *" "int" */ 6621.53Schs#define LINUX_SYS_fstatat64 293 6631.53Schs 6641.53Schs/* syscall: "unlinkat" ret: "int" args: "int" "const char *" "int" */ 6651.53Schs#define LINUX_SYS_unlinkat 294 6661.53Schs 6671.53Schs/* syscall: "renameat" ret: "int" args: "int" "const char *" "int" "const char *" */ 6681.53Schs#define LINUX_SYS_renameat 295 6691.53Schs 6701.53Schs/* syscall: "linkat" ret: "int" args: "int" "const char *" "int" "const char *" "int" */ 6711.53Schs#define LINUX_SYS_linkat 296 6721.53Schs 6731.53Schs/* syscall: "symlinkat" ret: "int" args: "const char *" "int" "const char *" */ 6741.53Schs#define LINUX_SYS_symlinkat 297 6751.53Schs 6761.67Snjoly/* syscall: "readlinkat" ret: "ssize_t" args: "int" "const char *" "char *" "size_t" */ 6771.53Schs#define LINUX_SYS_readlinkat 298 6781.53Schs 6791.53Schs/* syscall: "fchmodat" ret: "int" args: "int" "const char *" "linux_umode_t" */ 6801.53Schs#define LINUX_SYS_fchmodat 299 6811.53Schs 6821.53Schs/* syscall: "faccessat" ret: "int" args: "int" "const char *" "int" */ 6831.53Schs#define LINUX_SYS_faccessat 300 6841.53Schs 6851.68Smanu/* syscall: "pselect6" ret: "int" args: "int" "fd_set *" "fd_set *" "fd_set *" "struct linux_timespec *" "linux_sized_sigset_t *" */ 6861.68Smanu#define LINUX_SYS_pselect6 301 6871.68Smanu 6881.62Snjoly/* syscall: "ppoll" ret: "int" args: "struct pollfd *" "u_int" "struct linux_timespec *" "linux_sigset_t *" */ 6891.49Spooka#define LINUX_SYS_ppoll 302 6901.49Spooka 6911.80Sthorpej/* syscall: "__futex_set_robust_list" ret: "int" args: "void *" "size_t" */ 6921.80Sthorpej#define LINUX_SYS___futex_set_robust_list 309 6931.43Schs 6941.80Sthorpej/* syscall: "__futex_get_robust_list" ret: "int" args: "lwpid_t" "void **" "size_t *" */ 6951.80Sthorpej#define LINUX_SYS___futex_get_robust_list 310 6961.43Schs 6971.51Snjoly/* syscall: "utimensat" ret: "int" args: "int" "const char *" "struct linux_timespec *" "int" */ 6981.51Snjoly#define LINUX_SYS_utimensat 316 6991.51Snjoly 7001.83Sthorpej/* syscall: "eventfd" ret: "int" args: "unsigned int" */ 7011.83Sthorpej#define LINUX_SYS_eventfd 319 7021.83Sthorpej 7031.79Sjdolecek/* syscall: "fallocate" ret: "int" args: "int" "int" "off_t" "off_t" */ 7041.79Sjdolecek#define LINUX_SYS_fallocate 320 7051.79Sjdolecek 7061.82Sthorpej/* syscall: "timerfd_create" ret: "int" args: "clockid_t" "int" */ 7071.82Sthorpej#define LINUX_SYS_timerfd_create 321 7081.82Sthorpej 7091.82Sthorpej/* syscall: "timerfd_gettime" ret: "int" args: "int" "struct linux_itimerspec *" */ 7101.82Sthorpej#define LINUX_SYS_timerfd_gettime 322 7111.82Sthorpej 7121.82Sthorpej/* syscall: "timerfd_settime" ret: "int" args: "int" "int" "const struct linux_itimerspec *" "struct linux_itimerspec *" */ 7131.82Sthorpej#define LINUX_SYS_timerfd_settime 323 7141.82Sthorpej 7151.83Sthorpej/* syscall: "eventfd2" ret: "int" args: "unsigned int" "int" */ 7161.83Sthorpej#define LINUX_SYS_eventfd2 325 7171.83Sthorpej 7181.45She/* syscall: "dup3" ret: "int" args: "int" "int" "int" */ 7191.45She#define LINUX_SYS_dup3 327 7201.45She 7211.45She/* syscall: "pipe2" ret: "int" args: "int *" "int" */ 7221.45She#define LINUX_SYS_pipe2 328 7231.45She 7241.72Schristos/* syscall: "accept4" ret: "int" args: "int" "struct osockaddr *" "int *" "int" */ 7251.72Schristos#define LINUX_SYS_accept4 334 7261.72Schristos 7271.73Schristos/* syscall: "recvmmsg" ret: "int" args: "int" "struct linux_mmsghdr *" "unsigned int" "unsigned int" "struct timespec *" */ 7281.73Schristos#define LINUX_SYS_recvmmsg 335 7291.73Schristos 7301.73Schristos/* syscall: "sendmmsg" ret: "int" args: "int" "struct linux_mmsghdr *" "unsigned int" "unsigned int" */ 7311.73Schristos#define LINUX_SYS_sendmmsg 344 7321.73Schristos 7331.73Schristos#define LINUX_SYS_MAXSYSCALL 367 7341.18Sjdolecek#define LINUX_SYS_NSYSENT 512 7351.26Schristos#endif /* _LINUX_SYS_SYSCALL_H_ */ 736