syscall.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. #define __X32_SYSCALL_BIT 0x40000000
  2. #define __NR_read (__X32_SYSCALL_BIT + 0)
  3. #define __NR_write (__X32_SYSCALL_BIT + 1)
  4. #define __NR_open (__X32_SYSCALL_BIT + 2)
  5. #define __NR_close (__X32_SYSCALL_BIT + 3)
  6. #define __NR_stat (__X32_SYSCALL_BIT + 4)
  7. #define __NR_fstat (__X32_SYSCALL_BIT + 5)
  8. #define __NR_lstat (__X32_SYSCALL_BIT + 6)
  9. #define __NR_poll (__X32_SYSCALL_BIT + 7)
  10. #define __NR_lseek (__X32_SYSCALL_BIT + 8)
  11. #define __NR_mmap (__X32_SYSCALL_BIT + 9)
  12. #define __NR_mprotect (__X32_SYSCALL_BIT + 10)
  13. #define __NR_munmap (__X32_SYSCALL_BIT + 11)
  14. #define __NR_brk (__X32_SYSCALL_BIT + 12)
  15. #define __NR_rt_sigprocmask (__X32_SYSCALL_BIT + 14)
  16. #define __NR_pread64 (__X32_SYSCALL_BIT + 17)
  17. #define __NR_pwrite64 (__X32_SYSCALL_BIT + 18)
  18. #define __NR_access (__X32_SYSCALL_BIT + 21)
  19. #define __NR_pipe (__X32_SYSCALL_BIT + 22)
  20. #define __NR_select (__X32_SYSCALL_BIT + 23)
  21. #define __NR_sched_yield (__X32_SYSCALL_BIT + 24)
  22. #define __NR_mremap (__X32_SYSCALL_BIT + 25)
  23. #define __NR_msync (__X32_SYSCALL_BIT + 26)
  24. #define __NR_mincore (__X32_SYSCALL_BIT + 27)
  25. #define __NR_madvise (__X32_SYSCALL_BIT + 28)
  26. #define __NR_shmget (__X32_SYSCALL_BIT + 29)
  27. #define __NR_shmat (__X32_SYSCALL_BIT + 30)
  28. #define __NR_shmctl (__X32_SYSCALL_BIT + 31)
  29. #define __NR_dup (__X32_SYSCALL_BIT + 32)
  30. #define __NR_dup2 (__X32_SYSCALL_BIT + 33)
  31. #define __NR_pause (__X32_SYSCALL_BIT + 34)
  32. #define __NR_nanosleep (__X32_SYSCALL_BIT + 35)
  33. #define __NR_getitimer (__X32_SYSCALL_BIT + 36)
  34. #define __NR_alarm (__X32_SYSCALL_BIT + 37)
  35. #define __NR_setitimer (__X32_SYSCALL_BIT + 38)
  36. #define __NR_getpid (__X32_SYSCALL_BIT + 39)
  37. #define __NR_sendfile (__X32_SYSCALL_BIT + 40)
  38. #define __NR_socket (__X32_SYSCALL_BIT + 41)
  39. #define __NR_connect (__X32_SYSCALL_BIT + 42)
  40. #define __NR_accept (__X32_SYSCALL_BIT + 43)
  41. #define __NR_sendto (__X32_SYSCALL_BIT + 44)
  42. #define __NR_shutdown (__X32_SYSCALL_BIT + 48)
  43. #define __NR_bind (__X32_SYSCALL_BIT + 49)
  44. #define __NR_listen (__X32_SYSCALL_BIT + 50)
  45. #define __NR_getsockname (__X32_SYSCALL_BIT + 51)
  46. #define __NR_getpeername (__X32_SYSCALL_BIT + 52)
  47. #define __NR_socketpair (__X32_SYSCALL_BIT + 53)
  48. #define __NR_clone (__X32_SYSCALL_BIT + 56)
  49. #define __NR_fork (__X32_SYSCALL_BIT + 57)
  50. #define __NR_vfork (__X32_SYSCALL_BIT + 58)
  51. #define __NR_exit (__X32_SYSCALL_BIT + 60)
  52. #define __NR_wait4 (__X32_SYSCALL_BIT + 61)
  53. #define __NR_kill (__X32_SYSCALL_BIT + 62)
  54. #define __NR_uname (__X32_SYSCALL_BIT + 63)
  55. #define __NR_semget (__X32_SYSCALL_BIT + 64)
  56. #define __NR_semop (__X32_SYSCALL_BIT + 65)
  57. #define __NR_semctl (__X32_SYSCALL_BIT + 66)
  58. #define __NR_shmdt (__X32_SYSCALL_BIT + 67)
  59. #define __NR_msgget (__X32_SYSCALL_BIT + 68)
  60. #define __NR_msgsnd (__X32_SYSCALL_BIT + 69)
  61. #define __NR_msgrcv (__X32_SYSCALL_BIT + 70)
  62. #define __NR_msgctl (__X32_SYSCALL_BIT + 71)
  63. #define __NR_fcntl (__X32_SYSCALL_BIT + 72)
  64. #define __NR_flock (__X32_SYSCALL_BIT + 73)
  65. #define __NR_fsync (__X32_SYSCALL_BIT + 74)
  66. #define __NR_fdatasync (__X32_SYSCALL_BIT + 75)
  67. #define __NR_truncate (__X32_SYSCALL_BIT + 76)
  68. #define __NR_ftruncate (__X32_SYSCALL_BIT + 77)
  69. #define __NR_getdents (__X32_SYSCALL_BIT + 78)
  70. #define __NR_getcwd (__X32_SYSCALL_BIT + 79)
  71. #define __NR_chdir (__X32_SYSCALL_BIT + 80)
  72. #define __NR_fchdir (__X32_SYSCALL_BIT + 81)
  73. #define __NR_rename (__X32_SYSCALL_BIT + 82)
  74. #define __NR_mkdir (__X32_SYSCALL_BIT + 83)
  75. #define __NR_rmdir (__X32_SYSCALL_BIT + 84)
  76. #define __NR_creat (__X32_SYSCALL_BIT + 85)
  77. #define __NR_link (__X32_SYSCALL_BIT + 86)
  78. #define __NR_unlink (__X32_SYSCALL_BIT + 87)
  79. #define __NR_symlink (__X32_SYSCALL_BIT + 88)
  80. #define __NR_readlink (__X32_SYSCALL_BIT + 89)
  81. #define __NR_chmod (__X32_SYSCALL_BIT + 90)
  82. #define __NR_fchmod (__X32_SYSCALL_BIT + 91)
  83. #define __NR_chown (__X32_SYSCALL_BIT + 92)
  84. #define __NR_fchown (__X32_SYSCALL_BIT + 93)
  85. #define __NR_lchown (__X32_SYSCALL_BIT + 94)
  86. #define __NR_umask (__X32_SYSCALL_BIT + 95)
  87. #define __NR_gettimeofday (__X32_SYSCALL_BIT + 96)
  88. #define __NR_getrlimit (__X32_SYSCALL_BIT + 97)
  89. #define __NR_getrusage (__X32_SYSCALL_BIT + 98)
  90. #define __NR_sysinfo (__X32_SYSCALL_BIT + 99)
  91. #define __NR_times (__X32_SYSCALL_BIT + 100)
  92. #define __NR_getuid (__X32_SYSCALL_BIT + 102)
  93. #define __NR_syslog (__X32_SYSCALL_BIT + 103)
  94. #define __NR_getgid (__X32_SYSCALL_BIT + 104)
  95. #define __NR_setuid (__X32_SYSCALL_BIT + 105)
  96. #define __NR_setgid (__X32_SYSCALL_BIT + 106)
  97. #define __NR_geteuid (__X32_SYSCALL_BIT + 107)
  98. #define __NR_getegid (__X32_SYSCALL_BIT + 108)
  99. #define __NR_setpgid (__X32_SYSCALL_BIT + 109)
  100. #define __NR_getppid (__X32_SYSCALL_BIT + 110)
  101. #define __NR_getpgrp (__X32_SYSCALL_BIT + 111)
  102. #define __NR_setsid (__X32_SYSCALL_BIT + 112)
  103. #define __NR_setreuid (__X32_SYSCALL_BIT + 113)
  104. #define __NR_setregid (__X32_SYSCALL_BIT + 114)
  105. #define __NR_getgroups (__X32_SYSCALL_BIT + 115)
  106. #define __NR_setgroups (__X32_SYSCALL_BIT + 116)
  107. #define __NR_setresuid (__X32_SYSCALL_BIT + 117)
  108. #define __NR_getresuid (__X32_SYSCALL_BIT + 118)
  109. #define __NR_setresgid (__X32_SYSCALL_BIT + 119)
  110. #define __NR_getresgid (__X32_SYSCALL_BIT + 120)
  111. #define __NR_getpgid (__X32_SYSCALL_BIT + 121)
  112. #define __NR_setfsuid (__X32_SYSCALL_BIT + 122)
  113. #define __NR_setfsgid (__X32_SYSCALL_BIT + 123)
  114. #define __NR_getsid (__X32_SYSCALL_BIT + 124)
  115. #define __NR_capget (__X32_SYSCALL_BIT + 125)
  116. #define __NR_capset (__X32_SYSCALL_BIT + 126)
  117. #define __NR_rt_sigsuspend (__X32_SYSCALL_BIT + 130)
  118. #define __NR_utime (__X32_SYSCALL_BIT + 132)
  119. #define __NR_mknod (__X32_SYSCALL_BIT + 133)
  120. #define __NR_personality (__X32_SYSCALL_BIT + 135)
  121. #define __NR_ustat (__X32_SYSCALL_BIT + 136)
  122. #define __NR_statfs (__X32_SYSCALL_BIT + 137)
  123. #define __NR_fstatfs (__X32_SYSCALL_BIT + 138)
  124. #define __NR_sysfs (__X32_SYSCALL_BIT + 139)
  125. #define __NR_getpriority (__X32_SYSCALL_BIT + 140)
  126. #define __NR_setpriority (__X32_SYSCALL_BIT + 141)
  127. #define __NR_sched_setparam (__X32_SYSCALL_BIT + 142)
  128. #define __NR_sched_getparam (__X32_SYSCALL_BIT + 143)
  129. #define __NR_sched_setscheduler (__X32_SYSCALL_BIT + 144)
  130. #define __NR_sched_getscheduler (__X32_SYSCALL_BIT + 145)
  131. #define __NR_sched_get_priority_max (__X32_SYSCALL_BIT + 146)
  132. #define __NR_sched_get_priority_min (__X32_SYSCALL_BIT + 147)
  133. #define __NR_sched_rr_get_interval (__X32_SYSCALL_BIT + 148)
  134. #define __NR_mlock (__X32_SYSCALL_BIT + 149)
  135. #define __NR_munlock (__X32_SYSCALL_BIT + 150)
  136. #define __NR_mlockall (__X32_SYSCALL_BIT + 151)
  137. #define __NR_munlockall (__X32_SYSCALL_BIT + 152)
  138. #define __NR_vhangup (__X32_SYSCALL_BIT + 153)
  139. #define __NR_modify_ldt (__X32_SYSCALL_BIT + 154)
  140. #define __NR_pivot_root (__X32_SYSCALL_BIT + 155)
  141. #define __NR_prctl (__X32_SYSCALL_BIT + 157)
  142. #define __NR_arch_prctl (__X32_SYSCALL_BIT + 158)
  143. #define __NR_adjtimex (__X32_SYSCALL_BIT + 159)
  144. #define __NR_setrlimit (__X32_SYSCALL_BIT + 160)
  145. #define __NR_chroot (__X32_SYSCALL_BIT + 161)
  146. #define __NR_sync (__X32_SYSCALL_BIT + 162)
  147. #define __NR_acct (__X32_SYSCALL_BIT + 163)
  148. #define __NR_settimeofday (__X32_SYSCALL_BIT + 164)
  149. #define __NR_mount (__X32_SYSCALL_BIT + 165)
  150. #define __NR_umount2 (__X32_SYSCALL_BIT + 166)
  151. #define __NR_swapon (__X32_SYSCALL_BIT + 167)
  152. #define __NR_swapoff (__X32_SYSCALL_BIT + 168)
  153. #define __NR_reboot (__X32_SYSCALL_BIT + 169)
  154. #define __NR_sethostname (__X32_SYSCALL_BIT + 170)
  155. #define __NR_setdomainname (__X32_SYSCALL_BIT + 171)
  156. #define __NR_iopl (__X32_SYSCALL_BIT + 172)
  157. #define __NR_ioperm (__X32_SYSCALL_BIT + 173)
  158. #define __NR_init_module (__X32_SYSCALL_BIT + 175)
  159. #define __NR_delete_module (__X32_SYSCALL_BIT + 176)
  160. #define __NR_quotactl (__X32_SYSCALL_BIT + 179)
  161. #define __NR_getpmsg (__X32_SYSCALL_BIT + 181)
  162. #define __NR_putpmsg (__X32_SYSCALL_BIT + 182)
  163. #define __NR_afs_syscall (__X32_SYSCALL_BIT + 183)
  164. #define __NR_tuxcall (__X32_SYSCALL_BIT + 184)
  165. #define __NR_security (__X32_SYSCALL_BIT + 185)
  166. #define __NR_gettid (__X32_SYSCALL_BIT + 186)
  167. #define __NR_readahead (__X32_SYSCALL_BIT + 187)
  168. #define __NR_setxattr (__X32_SYSCALL_BIT + 188)
  169. #define __NR_lsetxattr (__X32_SYSCALL_BIT + 189)
  170. #define __NR_fsetxattr (__X32_SYSCALL_BIT + 190)
  171. #define __NR_getxattr (__X32_SYSCALL_BIT + 191)
  172. #define __NR_lgetxattr (__X32_SYSCALL_BIT + 192)
  173. #define __NR_fgetxattr (__X32_SYSCALL_BIT + 193)
  174. #define __NR_listxattr (__X32_SYSCALL_BIT + 194)
  175. #define __NR_llistxattr (__X32_SYSCALL_BIT + 195)
  176. #define __NR_flistxattr (__X32_SYSCALL_BIT + 196)
  177. #define __NR_removexattr (__X32_SYSCALL_BIT + 197)
  178. #define __NR_lremovexattr (__X32_SYSCALL_BIT + 198)
  179. #define __NR_fremovexattr (__X32_SYSCALL_BIT + 199)
  180. #define __NR_tkill (__X32_SYSCALL_BIT + 200)
  181. #define __NR_time (__X32_SYSCALL_BIT + 201)
  182. #define __NR_futex (__X32_SYSCALL_BIT + 202)
  183. #define __NR_sched_setaffinity (__X32_SYSCALL_BIT + 203)
  184. #define __NR_sched_getaffinity (__X32_SYSCALL_BIT + 204)
  185. #define __NR_io_destroy (__X32_SYSCALL_BIT + 207)
  186. #define __NR_io_getevents (__X32_SYSCALL_BIT + 208)
  187. #define __NR_io_cancel (__X32_SYSCALL_BIT + 210)
  188. #define __NR_lookup_dcookie (__X32_SYSCALL_BIT + 212)
  189. #define __NR_epoll_create (__X32_SYSCALL_BIT + 213)
  190. #define __NR_remap_file_pages (__X32_SYSCALL_BIT + 216)
  191. #define __NR_getdents64 (__X32_SYSCALL_BIT + 217)
  192. #define __NR_set_tid_address (__X32_SYSCALL_BIT + 218)
  193. #define __NR_restart_syscall (__X32_SYSCALL_BIT + 219)
  194. #define __NR_semtimedop (__X32_SYSCALL_BIT + 220)
  195. #define __NR_fadvise64 (__X32_SYSCALL_BIT + 221)
  196. #define __NR_timer_settime (__X32_SYSCALL_BIT + 223)
  197. #define __NR_timer_gettime (__X32_SYSCALL_BIT + 224)
  198. #define __NR_timer_getoverrun (__X32_SYSCALL_BIT + 225)
  199. #define __NR_timer_delete (__X32_SYSCALL_BIT + 226)
  200. #define __NR_clock_settime (__X32_SYSCALL_BIT + 227)
  201. #define __NR_clock_gettime (__X32_SYSCALL_BIT + 228)
  202. #define __NR_clock_getres (__X32_SYSCALL_BIT + 229)
  203. #define __NR_clock_nanosleep (__X32_SYSCALL_BIT + 230)
  204. #define __NR_exit_group (__X32_SYSCALL_BIT + 231)
  205. #define __NR_epoll_wait (__X32_SYSCALL_BIT + 232)
  206. #define __NR_epoll_ctl (__X32_SYSCALL_BIT + 233)
  207. #define __NR_tgkill (__X32_SYSCALL_BIT + 234)
  208. #define __NR_utimes (__X32_SYSCALL_BIT + 235)
  209. #define __NR_mbind (__X32_SYSCALL_BIT + 237)
  210. #define __NR_set_mempolicy (__X32_SYSCALL_BIT + 238)
  211. #define __NR_get_mempolicy (__X32_SYSCALL_BIT + 239)
  212. #define __NR_mq_open (__X32_SYSCALL_BIT + 240)
  213. #define __NR_mq_unlink (__X32_SYSCALL_BIT + 241)
  214. #define __NR_mq_timedsend (__X32_SYSCALL_BIT + 242)
  215. #define __NR_mq_timedreceive (__X32_SYSCALL_BIT + 243)
  216. #define __NR_mq_getsetattr (__X32_SYSCALL_BIT + 245)
  217. #define __NR_add_key (__X32_SYSCALL_BIT + 248)
  218. #define __NR_request_key (__X32_SYSCALL_BIT + 249)
  219. #define __NR_keyctl (__X32_SYSCALL_BIT + 250)
  220. #define __NR_ioprio_set (__X32_SYSCALL_BIT + 251)
  221. #define __NR_ioprio_get (__X32_SYSCALL_BIT + 252)
  222. #define __NR_inotify_init (__X32_SYSCALL_BIT + 253)
  223. #define __NR_inotify_add_watch (__X32_SYSCALL_BIT + 254)
  224. #define __NR_inotify_rm_watch (__X32_SYSCALL_BIT + 255)
  225. #define __NR_migrate_pages (__X32_SYSCALL_BIT + 256)
  226. #define __NR_openat (__X32_SYSCALL_BIT + 257)
  227. #define __NR_mkdirat (__X32_SYSCALL_BIT + 258)
  228. #define __NR_mknodat (__X32_SYSCALL_BIT + 259)
  229. #define __NR_fchownat (__X32_SYSCALL_BIT + 260)
  230. #define __NR_futimesat (__X32_SYSCALL_BIT + 261)
  231. #define __NR_newfstatat (__X32_SYSCALL_BIT + 262)
  232. #define __NR_unlinkat (__X32_SYSCALL_BIT + 263)
  233. #define __NR_renameat (__X32_SYSCALL_BIT + 264)
  234. #define __NR_linkat (__X32_SYSCALL_BIT + 265)
  235. #define __NR_symlinkat (__X32_SYSCALL_BIT + 266)
  236. #define __NR_readlinkat (__X32_SYSCALL_BIT + 267)
  237. #define __NR_fchmodat (__X32_SYSCALL_BIT + 268)
  238. #define __NR_faccessat (__X32_SYSCALL_BIT + 269)
  239. #define __NR_pselect6 (__X32_SYSCALL_BIT + 270)
  240. #define __NR_ppoll (__X32_SYSCALL_BIT + 271)
  241. #define __NR_unshare (__X32_SYSCALL_BIT + 272)
  242. #define __NR_splice (__X32_SYSCALL_BIT + 275)
  243. #define __NR_tee (__X32_SYSCALL_BIT + 276)
  244. #define __NR_sync_file_range (__X32_SYSCALL_BIT + 277)
  245. #define __NR_utimensat (__X32_SYSCALL_BIT + 280)
  246. #define __NR_epoll_pwait (__X32_SYSCALL_BIT + 281)
  247. #define __NR_signalfd (__X32_SYSCALL_BIT + 282)
  248. #define __NR_timerfd_create (__X32_SYSCALL_BIT + 283)
  249. #define __NR_eventfd (__X32_SYSCALL_BIT + 284)
  250. #define __NR_fallocate (__X32_SYSCALL_BIT + 285)
  251. #define __NR_timerfd_settime (__X32_SYSCALL_BIT + 286)
  252. #define __NR_timerfd_gettime (__X32_SYSCALL_BIT + 287)
  253. #define __NR_accept4 (__X32_SYSCALL_BIT + 288)
  254. #define __NR_signalfd4 (__X32_SYSCALL_BIT + 289)
  255. #define __NR_eventfd2 (__X32_SYSCALL_BIT + 290)
  256. #define __NR_epoll_create1 (__X32_SYSCALL_BIT + 291)
  257. #define __NR_dup3 (__X32_SYSCALL_BIT + 292)
  258. #define __NR_pipe2 (__X32_SYSCALL_BIT + 293)
  259. #define __NR_inotify_init1 (__X32_SYSCALL_BIT + 294)
  260. #define __NR_perf_event_open (__X32_SYSCALL_BIT + 298)
  261. #define __NR_fanotify_init (__X32_SYSCALL_BIT + 300)
  262. #define __NR_fanotify_mark (__X32_SYSCALL_BIT + 301)
  263. #define __NR_prlimit64 (__X32_SYSCALL_BIT + 302)
  264. #define __NR_name_to_handle_at (__X32_SYSCALL_BIT + 303)
  265. #define __NR_open_by_handle_at (__X32_SYSCALL_BIT + 304)
  266. #define __NR_clock_adjtime (__X32_SYSCALL_BIT + 305)
  267. #define __NR_syncfs (__X32_SYSCALL_BIT + 306)
  268. #define __NR_setns (__X32_SYSCALL_BIT + 308)
  269. #define __NR_getcpu (__X32_SYSCALL_BIT + 309)
  270. #define __NR_kcmp (__X32_SYSCALL_BIT + 312)
  271. #define __NR_finit_module (__X32_SYSCALL_BIT + 313)
  272. #define __NR_sched_setattr (__X32_SYSCALL_BIT + 314)
  273. #define __NR_sched_getattr (__X32_SYSCALL_BIT + 315)
  274. #define __NR_renameat2 (__X32_SYSCALL_BIT + 316)
  275. #define __NR_seccomp (__X32_SYSCALL_BIT + 317)
  276. #define __NR_getrandom (__X32_SYSCALL_BIT + 318)
  277. #define __NR_memfd_create (__X32_SYSCALL_BIT + 319)
  278. #define __NR_kexec_file_load (__X32_SYSCALL_BIT + 320)
  279. #define __NR_bpf (__X32_SYSCALL_BIT + 321)
  280. #define __NR_rt_sigaction (__X32_SYSCALL_BIT + 512)
  281. #define __NR_rt_sigreturn (__X32_SYSCALL_BIT + 513)
  282. #define __NR_ioctl (__X32_SYSCALL_BIT + 514)
  283. #define __NR_readv (__X32_SYSCALL_BIT + 515)
  284. #define __NR_writev (__X32_SYSCALL_BIT + 516)
  285. #define __NR_recvfrom (__X32_SYSCALL_BIT + 517)
  286. #define __NR_sendmsg (__X32_SYSCALL_BIT + 518)
  287. #define __NR_recvmsg (__X32_SYSCALL_BIT + 519)
  288. #define __NR_execve (__X32_SYSCALL_BIT + 520)
  289. #define __NR_ptrace (__X32_SYSCALL_BIT + 521)
  290. #define __NR_rt_sigpending (__X32_SYSCALL_BIT + 522)
  291. #define __NR_rt_sigtimedwait (__X32_SYSCALL_BIT + 523)
  292. #define __NR_rt_sigqueueinfo (__X32_SYSCALL_BIT + 524)
  293. #define __NR_sigaltstack (__X32_SYSCALL_BIT + 525)
  294. #define __NR_timer_create (__X32_SYSCALL_BIT + 526)
  295. #define __NR_mq_notify (__X32_SYSCALL_BIT + 527)
  296. #define __NR_kexec_load (__X32_SYSCALL_BIT + 528)
  297. #define __NR_waitid (__X32_SYSCALL_BIT + 529)
  298. #define __NR_set_robust_list (__X32_SYSCALL_BIT + 530)
  299. #define __NR_get_robust_list (__X32_SYSCALL_BIT + 531)
  300. #define __NR_vmsplice (__X32_SYSCALL_BIT + 532)
  301. #define __NR_move_pages (__X32_SYSCALL_BIT + 533)
  302. #define __NR_preadv (__X32_SYSCALL_BIT + 534)
  303. #define __NR_pwritev (__X32_SYSCALL_BIT + 535)
  304. #define __NR_rt_tgsigqueueinfo (__X32_SYSCALL_BIT + 536)
  305. #define __NR_recvmmsg (__X32_SYSCALL_BIT + 537)
  306. #define __NR_sendmmsg (__X32_SYSCALL_BIT + 538)
  307. #define __NR_process_vm_readv (__X32_SYSCALL_BIT + 539)
  308. #define __NR_process_vm_writev (__X32_SYSCALL_BIT + 540)
  309. #define __NR_setsockopt (__X32_SYSCALL_BIT + 541)
  310. #define __NR_getsockopt (__X32_SYSCALL_BIT + 542)
  311. #define __NR_io_setup (__X32_SYSCALL_BIT + 543)
  312. #define __NR_io_submit (__X32_SYSCALL_BIT + 544)
  313. #define __NR_execveat (__X32_SYSCALL_BIT + 545)
  314. #undef __NR_fstatat
  315. #undef __NR_pread
  316. #undef __NR_pwrite
  317. #undef __NR_getdents
  318. #define __NR_fstatat __NR_newfstatat
  319. #define __NR_pread __NR_pread64
  320. #define __NR_pwrite __NR_pwrite64
  321. #define __NR_getdents __NR_getdents64
  322. #define __NR_fadvise __NR_fadvise64
  323. /* Repeat with SYS_ prefix */
  324. #define SYS_read __NR_read
  325. #define SYS_write __NR_write
  326. #define SYS_open __NR_open
  327. #define SYS_close __NR_close
  328. #define SYS_stat __NR_stat
  329. #define SYS_fstat __NR_fstat
  330. #define SYS_lstat __NR_lstat
  331. #define SYS_poll __NR_poll
  332. #define SYS_lseek __NR_lseek
  333. #define SYS_mmap __NR_mmap
  334. #define SYS_mprotect __NR_mprotect
  335. #define SYS_munmap __NR_munmap
  336. #define SYS_brk __NR_brk
  337. #define SYS_rt_sigprocmask __NR_rt_sigprocmask
  338. #define SYS_pread64 __NR_pread64
  339. #define SYS_pwrite64 __NR_pwrite64
  340. #define SYS_access __NR_access
  341. #define SYS_pipe __NR_pipe
  342. #define SYS_select __NR_select
  343. #define SYS_sched_yield __NR_sched_yield
  344. #define SYS_mremap __NR_mremap
  345. #define SYS_msync __NR_msync
  346. #define SYS_mincore __NR_mincore
  347. #define SYS_madvise __NR_madvise
  348. #define SYS_shmget __NR_shmget
  349. #define SYS_shmat __NR_shmat
  350. #define SYS_shmctl __NR_shmctl
  351. #define SYS_dup __NR_dup
  352. #define SYS_dup2 __NR_dup2
  353. #define SYS_pause __NR_pause
  354. #define SYS_nanosleep __NR_nanosleep
  355. #define SYS_getitimer __NR_getitimer
  356. #define SYS_alarm __NR_alarm
  357. #define SYS_setitimer __NR_setitimer
  358. #define SYS_getpid __NR_getpid
  359. #define SYS_sendfile __NR_sendfile
  360. #define SYS_socket __NR_socket
  361. #define SYS_connect __NR_connect
  362. #define SYS_accept __NR_accept
  363. #define SYS_sendto __NR_sendto
  364. #define SYS_shutdown __NR_shutdown
  365. #define SYS_bind __NR_bind
  366. #define SYS_listen __NR_listen
  367. #define SYS_getsockname __NR_getsockname
  368. #define SYS_getpeername __NR_getpeername
  369. #define SYS_socketpair __NR_socketpair
  370. #define SYS_clone __NR_clone
  371. #define SYS_fork __NR_fork
  372. #define SYS_vfork __NR_vfork
  373. #define SYS_exit __NR_exit
  374. #define SYS_wait4 __NR_wait4
  375. #define SYS_kill __NR_kill
  376. #define SYS_uname __NR_uname
  377. #define SYS_semget __NR_semget
  378. #define SYS_semop __NR_semop
  379. #define SYS_semctl __NR_semctl
  380. #define SYS_shmdt __NR_shmdt
  381. #define SYS_msgget __NR_msgget
  382. #define SYS_msgsnd __NR_msgsnd
  383. #define SYS_msgrcv __NR_msgrcv
  384. #define SYS_msgctl __NR_msgctl
  385. #define SYS_fcntl __NR_fcntl
  386. #define SYS_flock __NR_flock
  387. #define SYS_fsync __NR_fsync
  388. #define SYS_fdatasync __NR_fdatasync
  389. #define SYS_truncate __NR_truncate
  390. #define SYS_ftruncate __NR_ftruncate
  391. #define SYS_getdents __NR_getdents
  392. #define SYS_getcwd __NR_getcwd
  393. #define SYS_chdir __NR_chdir
  394. #define SYS_fchdir __NR_fchdir
  395. #define SYS_rename __NR_rename
  396. #define SYS_mkdir __NR_mkdir
  397. #define SYS_rmdir __NR_rmdir
  398. #define SYS_creat __NR_creat
  399. #define SYS_link __NR_link
  400. #define SYS_unlink __NR_unlink
  401. #define SYS_symlink __NR_symlink
  402. #define SYS_readlink __NR_readlink
  403. #define SYS_chmod __NR_chmod
  404. #define SYS_fchmod __NR_fchmod
  405. #define SYS_chown __NR_chown
  406. #define SYS_fchown __NR_fchown
  407. #define SYS_lchown __NR_lchown
  408. #define SYS_umask __NR_umask
  409. #define SYS_gettimeofday __NR_gettimeofday
  410. #define SYS_getrlimit __NR_getrlimit
  411. #define SYS_getrusage __NR_getrusage
  412. #define SYS_sysinfo __NR_sysinfo
  413. #define SYS_times __NR_times
  414. #define SYS_getuid __NR_getuid
  415. #define SYS_syslog __NR_syslog
  416. #define SYS_getgid __NR_getgid
  417. #define SYS_setuid __NR_setuid
  418. #define SYS_setgid __NR_setgid
  419. #define SYS_geteuid __NR_geteuid
  420. #define SYS_getegid __NR_getegid
  421. #define SYS_setpgid __NR_setpgid
  422. #define SYS_getppid __NR_getppid
  423. #define SYS_getpgrp __NR_getpgrp
  424. #define SYS_setsid __NR_setsid
  425. #define SYS_setreuid __NR_setreuid
  426. #define SYS_setregid __NR_setregid
  427. #define SYS_getgroups __NR_getgroups
  428. #define SYS_setgroups __NR_setgroups
  429. #define SYS_setresuid __NR_setresuid
  430. #define SYS_getresuid __NR_getresuid
  431. #define SYS_setresgid __NR_setresgid
  432. #define SYS_getresgid __NR_getresgid
  433. #define SYS_getpgid __NR_getpgid
  434. #define SYS_setfsuid __NR_setfsuid
  435. #define SYS_setfsgid __NR_setfsgid
  436. #define SYS_getsid __NR_getsid
  437. #define SYS_capget __NR_capget
  438. #define SYS_capset __NR_capset
  439. #define SYS_rt_sigsuspend __NR_rt_sigsuspend
  440. #define SYS_utime __NR_utime
  441. #define SYS_mknod __NR_mknod
  442. #define SYS_personality __NR_personality
  443. #define SYS_ustat __NR_ustat
  444. #define SYS_statfs __NR_statfs
  445. #define SYS_fstatfs __NR_fstatfs
  446. #define SYS_sysfs __NR_sysfs
  447. #define SYS_getpriority __NR_getpriority
  448. #define SYS_setpriority __NR_setpriority
  449. #define SYS_sched_setparam __NR_sched_setparam
  450. #define SYS_sched_getparam __NR_sched_getparam
  451. #define SYS_sched_setscheduler __NR_sched_setscheduler
  452. #define SYS_sched_getscheduler __NR_sched_getscheduler
  453. #define SYS_sched_get_priority_max __NR_sched_get_priority_max
  454. #define SYS_sched_get_priority_min __NR_sched_get_priority_min
  455. #define SYS_sched_rr_get_interval __NR_sched_rr_get_interval
  456. #define SYS_mlock __NR_mlock
  457. #define SYS_munlock __NR_munlock
  458. #define SYS_mlockall __NR_mlockall
  459. #define SYS_munlockall __NR_munlockall
  460. #define SYS_vhangup __NR_vhangup
  461. #define SYS_modify_ldt __NR_modify_ldt
  462. #define SYS_pivot_root __NR_pivot_root
  463. #define SYS_prctl __NR_prctl
  464. #define SYS_arch_prctl __NR_arch_prctl
  465. #define SYS_adjtimex __NR_adjtimex
  466. #define SYS_setrlimit __NR_setrlimit
  467. #define SYS_chroot __NR_chroot
  468. #define SYS_sync __NR_sync
  469. #define SYS_acct __NR_acct
  470. #define SYS_settimeofday __NR_settimeofday
  471. #define SYS_mount __NR_mount
  472. #define SYS_umount2 __NR_umount2
  473. #define SYS_swapon __NR_swapon
  474. #define SYS_swapoff __NR_swapoff
  475. #define SYS_reboot __NR_reboot
  476. #define SYS_sethostname __NR_sethostname
  477. #define SYS_setdomainname __NR_setdomainname
  478. #define SYS_iopl __NR_iopl
  479. #define SYS_ioperm __NR_ioperm
  480. #define SYS_init_module __NR_init_module
  481. #define SYS_delete_module __NR_delete_module
  482. #define SYS_quotactl __NR_quotactl
  483. #define SYS_getpmsg __NR_getpmsg
  484. #define SYS_putpmsg __NR_putpmsg
  485. #define SYS_afs_syscall __NR_afs_syscall
  486. #define SYS_tuxcall __NR_tuxcall
  487. #define SYS_security __NR_security
  488. #define SYS_gettid __NR_gettid
  489. #define SYS_readahead __NR_readahead
  490. #define SYS_setxattr __NR_setxattr
  491. #define SYS_lsetxattr __NR_lsetxattr
  492. #define SYS_fsetxattr __NR_fsetxattr
  493. #define SYS_getxattr __NR_getxattr
  494. #define SYS_lgetxattr __NR_lgetxattr
  495. #define SYS_fgetxattr __NR_fgetxattr
  496. #define SYS_listxattr __NR_listxattr
  497. #define SYS_llistxattr __NR_llistxattr
  498. #define SYS_flistxattr __NR_flistxattr
  499. #define SYS_removexattr __NR_removexattr
  500. #define SYS_lremovexattr __NR_lremovexattr
  501. #define SYS_fremovexattr __NR_fremovexattr
  502. #define SYS_tkill __NR_tkill
  503. #define SYS_time __NR_time
  504. #define SYS_futex __NR_futex
  505. #define SYS_sched_setaffinity __NR_sched_setaffinity
  506. #define SYS_sched_getaffinity __NR_sched_getaffinity
  507. #define SYS_io_destroy __NR_io_destroy
  508. #define SYS_io_getevents __NR_io_getevents
  509. #define SYS_io_cancel __NR_io_cancel
  510. #define SYS_lookup_dcookie __NR_lookup_dcookie
  511. #define SYS_epoll_create __NR_epoll_create
  512. #define SYS_remap_file_pages __NR_remap_file_pages
  513. #define SYS_getdents64 __NR_getdents64
  514. #define SYS_set_tid_address __NR_set_tid_address
  515. #define SYS_restart_syscall __NR_restart_syscall
  516. #define SYS_semtimedop __NR_semtimedop
  517. #define SYS_fadvise64 __NR_fadvise64
  518. #define SYS_timer_settime __NR_timer_settime
  519. #define SYS_timer_gettime __NR_timer_gettime
  520. #define SYS_timer_getoverrun __NR_timer_getoverrun
  521. #define SYS_timer_delete __NR_timer_delete
  522. #define SYS_clock_settime __NR_clock_settime
  523. #define SYS_clock_gettime __NR_clock_gettime
  524. #define SYS_clock_getres __NR_clock_getres
  525. #define SYS_clock_nanosleep __NR_clock_nanosleep
  526. #define SYS_exit_group __NR_exit_group
  527. #define SYS_epoll_wait __NR_epoll_wait
  528. #define SYS_epoll_ctl __NR_epoll_ctl
  529. #define SYS_tgkill __NR_tgkill
  530. #define SYS_utimes __NR_utimes
  531. #define SYS_mbind __NR_mbind
  532. #define SYS_set_mempolicy __NR_set_mempolicy
  533. #define SYS_get_mempolicy __NR_get_mempolicy
  534. #define SYS_mq_open __NR_mq_open
  535. #define SYS_mq_unlink __NR_mq_unlink
  536. #define SYS_mq_timedsend __NR_mq_timedsend
  537. #define SYS_mq_timedreceive __NR_mq_timedreceive
  538. #define SYS_mq_getsetattr __NR_mq_getsetattr
  539. #define SYS_add_key __NR_add_key
  540. #define SYS_request_key __NR_request_key
  541. #define SYS_keyctl __NR_keyctl
  542. #define SYS_ioprio_set __NR_ioprio_set
  543. #define SYS_ioprio_get __NR_ioprio_get
  544. #define SYS_inotify_init __NR_inotify_init
  545. #define SYS_inotify_add_watch __NR_inotify_add_watch
  546. #define SYS_inotify_rm_watch __NR_inotify_rm_watch
  547. #define SYS_migrate_pages __NR_migrate_pages
  548. #define SYS_openat __NR_openat
  549. #define SYS_mkdirat __NR_mkdirat
  550. #define SYS_mknodat __NR_mknodat
  551. #define SYS_fchownat __NR_fchownat
  552. #define SYS_futimesat __NR_futimesat
  553. #define SYS_newfstatat __NR_newfstatat
  554. #define SYS_unlinkat __NR_unlinkat
  555. #define SYS_renameat __NR_renameat
  556. #define SYS_linkat __NR_linkat
  557. #define SYS_symlinkat __NR_symlinkat
  558. #define SYS_readlinkat __NR_readlinkat
  559. #define SYS_fchmodat __NR_fchmodat
  560. #define SYS_faccessat __NR_faccessat
  561. #define SYS_pselect6 __NR_pselect6
  562. #define SYS_ppoll __NR_ppoll
  563. #define SYS_unshare __NR_unshare
  564. #define SYS_splice __NR_splice
  565. #define SYS_tee __NR_tee
  566. #define SYS_sync_file_range __NR_sync_file_range
  567. #define SYS_utimensat __NR_utimensat
  568. #define SYS_epoll_pwait __NR_epoll_pwait
  569. #define SYS_signalfd __NR_signalfd
  570. #define SYS_timerfd_create __NR_timerfd_create
  571. #define SYS_eventfd __NR_eventfd
  572. #define SYS_fallocate __NR_fallocate
  573. #define SYS_timerfd_settime __NR_timerfd_settime
  574. #define SYS_timerfd_gettime __NR_timerfd_gettime
  575. #define SYS_accept4 __NR_accept4
  576. #define SYS_signalfd4 __NR_signalfd4
  577. #define SYS_eventfd2 __NR_eventfd2
  578. #define SYS_epoll_create1 __NR_epoll_create1
  579. #define SYS_dup3 __NR_dup3
  580. #define SYS_pipe2 __NR_pipe2
  581. #define SYS_inotify_init1 __NR_inotify_init1
  582. #define SYS_perf_event_open __NR_perf_event_open
  583. #define SYS_fanotify_init __NR_fanotify_init
  584. #define SYS_fanotify_mark __NR_fanotify_mark
  585. #define SYS_prlimit64 __NR_prlimit64
  586. #define SYS_name_to_handle_at __NR_name_to_handle_at
  587. #define SYS_open_by_handle_at __NR_open_by_handle_at
  588. #define SYS_clock_adjtime __NR_clock_adjtime
  589. #define SYS_syncfs __NR_syncfs
  590. #define SYS_setns __NR_setns
  591. #define SYS_getcpu __NR_getcpu
  592. #define SYS_kcmp __NR_kcmp
  593. #define SYS_finit_module __NR_finit_module
  594. #define SYS_sched_setattr __NR_sched_setattr
  595. #define SYS_sched_getattr __NR_sched_getattr
  596. #define SYS_renameat2 __NR_renameat2
  597. #define SYS_seccomp __NR_seccomp
  598. #define SYS_getrandom __NR_getrandom
  599. #define SYS_memfd_create __NR_memfd_create
  600. #define SYS_kexec_file_load __NR_kexec_file_load
  601. #define SYS_bpf __NR_bpf
  602. #define SYS_rt_sigaction __NR_rt_sigaction
  603. #define SYS_rt_sigreturn __NR_rt_sigreturn
  604. #define SYS_ioctl __NR_ioctl
  605. #define SYS_readv __NR_readv
  606. #define SYS_writev __NR_writev
  607. #define SYS_recvfrom __NR_recvfrom
  608. #define SYS_sendmsg __NR_sendmsg
  609. #define SYS_recvmsg __NR_recvmsg
  610. #define SYS_execve __NR_execve
  611. #define SYS_ptrace __NR_ptrace
  612. #define SYS_rt_sigpending __NR_rt_sigpending
  613. #define SYS_rt_sigtimedwait __NR_rt_sigtimedwait
  614. #define SYS_rt_sigqueueinfo __NR_rt_sigqueueinfo
  615. #define SYS_sigaltstack __NR_sigaltstack
  616. #define SYS_timer_create __NR_timer_create
  617. #define SYS_mq_notify __NR_mq_notify
  618. #define SYS_kexec_load __NR_kexec_load
  619. #define SYS_waitid __NR_waitid
  620. #define SYS_set_robust_list __NR_set_robust_list
  621. #define SYS_get_robust_list __NR_get_robust_list
  622. #define SYS_vmsplice __NR_vmsplice
  623. #define SYS_move_pages __NR_move_pages
  624. #define SYS_preadv __NR_preadv
  625. #define SYS_pwritev __NR_pwritev
  626. #define SYS_rt_tgsigqueueinfo __NR_rt_tgsigqueueinfo
  627. #define SYS_recvmmsg __NR_recvmmsg
  628. #define SYS_sendmmsg __NR_sendmmsg
  629. #define SYS_process_vm_readv __NR_process_vm_readv
  630. #define SYS_process_vm_writev __NR_process_vm_writev
  631. #define SYS_setsockopt __NR_setsockopt
  632. #define SYS_getsockopt __NR_getsockopt
  633. #define SYS_io_setup __NR_io_setup
  634. #define SYS_io_submit __NR_io_submit
  635. #define SYS_execveat __NR_execveat
  636. #undef SYS_fstatat
  637. #undef SYS_pread
  638. #undef SYS_pwrite
  639. #undef SYS_getdents
  640. #define SYS_fstatat SYS_newfstatat
  641. #define SYS_pread SYS_pread64
  642. #define SYS_pwrite SYS_pwrite64
  643. #define SYS_getdents SYS_getdents64
  644. #define SYS_fadvise SYS_fadvise64