mips64_linux_syscalls.h 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. // Generated from the Linux kernel's calls.S.
  5. #ifndef SANDBOX_LINUX_SYSTEM_HEADERS_MIPS64_LINUX_SYSCALLS_H_
  6. #define SANDBOX_LINUX_SYSTEM_HEADERS_MIPS64_LINUX_SYSCALLS_H_
  7. #if !defined(__mips__)
  8. #error "Including header on wrong architecture"
  9. #endif
  10. // __NR_Linux, is defined in <asm/unistd.h>.
  11. #include <asm/unistd.h>
  12. #if !defined(__NR_read)
  13. #define __NR_read (__NR_Linux + 0)
  14. #endif
  15. #if !defined(__NR_write)
  16. #define __NR_write (__NR_Linux + 1)
  17. #endif
  18. #if !defined(__NR_open)
  19. #define __NR_open (__NR_Linux + 2)
  20. #endif
  21. #if !defined(__NR_close)
  22. #define __NR_close (__NR_Linux + 3)
  23. #endif
  24. #if !defined(__NR_stat)
  25. #define __NR_stat (__NR_Linux + 4)
  26. #endif
  27. #if !defined(__NR_fstat)
  28. #define __NR_fstat (__NR_Linux + 5)
  29. #endif
  30. #if !defined(__NR_lstat)
  31. #define __NR_lstat (__NR_Linux + 6)
  32. #endif
  33. #if !defined(__NR_poll)
  34. #define __NR_poll (__NR_Linux + 7)
  35. #endif
  36. #if !defined(__NR_lseek)
  37. #define __NR_lseek (__NR_Linux + 8)
  38. #endif
  39. #if !defined(__NR_mmap)
  40. #define __NR_mmap (__NR_Linux + 9)
  41. #endif
  42. #if !defined(__NR_mprotect)
  43. #define __NR_mprotect (__NR_Linux + 10)
  44. #endif
  45. #if !defined(__NR_munmap)
  46. #define __NR_munmap (__NR_Linux + 11)
  47. #endif
  48. #if !defined(__NR_brk)
  49. #define __NR_brk (__NR_Linux + 12)
  50. #endif
  51. #if !defined(__NR_rt_sigaction)
  52. #define __NR_rt_sigaction (__NR_Linux + 13)
  53. #endif
  54. #if !defined(__NR_rt_sigprocmask)
  55. #define __NR_rt_sigprocmask (__NR_Linux + 14)
  56. #endif
  57. #if !defined(__NR_ioctl)
  58. #define __NR_ioctl (__NR_Linux + 15)
  59. #endif
  60. #if !defined(__NR_pread64)
  61. #define __NR_pread64 (__NR_Linux + 16)
  62. #endif
  63. #if !defined(__NR_pwrite64)
  64. #define __NR_pwrite64 (__NR_Linux + 17)
  65. #endif
  66. #if !defined(__NR_readv)
  67. #define __NR_readv (__NR_Linux + 18)
  68. #endif
  69. #if !defined(__NR_writev)
  70. #define __NR_writev (__NR_Linux + 19)
  71. #endif
  72. #if !defined(__NR_access)
  73. #define __NR_access (__NR_Linux + 20)
  74. #endif
  75. #if !defined(__NR_pipe)
  76. #define __NR_pipe (__NR_Linux + 21)
  77. #endif
  78. #if !defined(__NR__newselect)
  79. #define __NR__newselect (__NR_Linux + 22)
  80. #endif
  81. #if !defined(__NR_sched_yield)
  82. #define __NR_sched_yield (__NR_Linux + 23)
  83. #endif
  84. #if !defined(__NR_mremap)
  85. #define __NR_mremap (__NR_Linux + 24)
  86. #endif
  87. #if !defined(__NR_msync)
  88. #define __NR_msync (__NR_Linux + 25)
  89. #endif
  90. #if !defined(__NR_mincore)
  91. #define __NR_mincore (__NR_Linux + 26)
  92. #endif
  93. #if !defined(__NR_madvise)
  94. #define __NR_madvise (__NR_Linux + 27)
  95. #endif
  96. #if !defined(__NR_shmget)
  97. #define __NR_shmget (__NR_Linux + 28)
  98. #endif
  99. #if !defined(__NR_shmat)
  100. #define __NR_shmat (__NR_Linux + 29)
  101. #endif
  102. #if !defined(__NR_shmctl)
  103. #define __NR_shmctl (__NR_Linux + 30)
  104. #endif
  105. #if !defined(__NR_dup)
  106. #define __NR_dup (__NR_Linux + 31)
  107. #endif
  108. #if !defined(__NR_dup2)
  109. #define __NR_dup2 (__NR_Linux + 32)
  110. #endif
  111. #if !defined(__NR_pause)
  112. #define __NR_pause (__NR_Linux + 33)
  113. #endif
  114. #if !defined(__NR_nanosleep)
  115. #define __NR_nanosleep (__NR_Linux + 34)
  116. #endif
  117. #if !defined(__NR_getitimer)
  118. #define __NR_getitimer (__NR_Linux + 35)
  119. #endif
  120. #if !defined(__NR_setitimer)
  121. #define __NR_setitimer (__NR_Linux + 36)
  122. #endif
  123. #if !defined(__NR_alarm)
  124. #define __NR_alarm (__NR_Linux + 37)
  125. #endif
  126. #if !defined(__NR_getpid)
  127. #define __NR_getpid (__NR_Linux + 38)
  128. #endif
  129. #if !defined(__NR_sendfile)
  130. #define __NR_sendfile (__NR_Linux + 39)
  131. #endif
  132. #if !defined(__NR_socket)
  133. #define __NR_socket (__NR_Linux + 40)
  134. #endif
  135. #if !defined(__NR_connect)
  136. #define __NR_connect (__NR_Linux + 41)
  137. #endif
  138. #if !defined(__NR_accept)
  139. #define __NR_accept (__NR_Linux + 42)
  140. #endif
  141. #if !defined(__NR_sendto)
  142. #define __NR_sendto (__NR_Linux + 43)
  143. #endif
  144. #if !defined(__NR_recvfrom)
  145. #define __NR_recvfrom (__NR_Linux + 44)
  146. #endif
  147. #if !defined(__NR_sendmsg)
  148. #define __NR_sendmsg (__NR_Linux + 45)
  149. #endif
  150. #if !defined(__NR_recvmsg)
  151. #define __NR_recvmsg (__NR_Linux + 46)
  152. #endif
  153. #if !defined(__NR_shutdown)
  154. #define __NR_shutdown (__NR_Linux + 47)
  155. #endif
  156. #if !defined(__NR_bind)
  157. #define __NR_bind (__NR_Linux + 48)
  158. #endif
  159. #if !defined(__NR_listen)
  160. #define __NR_listen (__NR_Linux + 49)
  161. #endif
  162. #if !defined(__NR_getsockname)
  163. #define __NR_getsockname (__NR_Linux + 50)
  164. #endif
  165. #if !defined(__NR_getpeername)
  166. #define __NR_getpeername (__NR_Linux + 51)
  167. #endif
  168. #if !defined(__NR_socketpair)
  169. #define __NR_socketpair (__NR_Linux + 52)
  170. #endif
  171. #if !defined(__NR_setsockopt)
  172. #define __NR_setsockopt (__NR_Linux + 53)
  173. #endif
  174. #if !defined(__NR_getsockopt)
  175. #define __NR_getsockopt (__NR_Linux + 54)
  176. #endif
  177. #if !defined(__NR_clone)
  178. #define __NR_clone (__NR_Linux + 55)
  179. #endif
  180. #if !defined(__NR_fork)
  181. #define __NR_fork (__NR_Linux + 56)
  182. #endif
  183. #if !defined(__NR_execve)
  184. #define __NR_execve (__NR_Linux + 57)
  185. #endif
  186. #if !defined(__NR_exit)
  187. #define __NR_exit (__NR_Linux + 58)
  188. #endif
  189. #if !defined(__NR_wait4)
  190. #define __NR_wait4 (__NR_Linux + 59)
  191. #endif
  192. #if !defined(__NR_kill)
  193. #define __NR_kill (__NR_Linux + 60)
  194. #endif
  195. #if !defined(__NR_uname)
  196. #define __NR_uname (__NR_Linux + 61)
  197. #endif
  198. #if !defined(__NR_semget)
  199. #define __NR_semget (__NR_Linux + 62)
  200. #endif
  201. #if !defined(__NR_semop)
  202. #define __NR_semop (__NR_Linux + 63)
  203. #endif
  204. #if !defined(__NR_semctl)
  205. #define __NR_semctl (__NR_Linux + 64)
  206. #endif
  207. #if !defined(__NR_shmdt)
  208. #define __NR_shmdt (__NR_Linux + 65)
  209. #endif
  210. #if !defined(__NR_msgget)
  211. #define __NR_msgget (__NR_Linux + 66)
  212. #endif
  213. #if !defined(__NR_msgsnd)
  214. #define __NR_msgsnd (__NR_Linux + 67)
  215. #endif
  216. #if !defined(__NR_msgrcv)
  217. #define __NR_msgrcv (__NR_Linux + 68)
  218. #endif
  219. #if !defined(__NR_msgctl)
  220. #define __NR_msgctl (__NR_Linux + 69)
  221. #endif
  222. #if !defined(__NR_fcntl)
  223. #define __NR_fcntl (__NR_Linux + 70)
  224. #endif
  225. #if !defined(__NR_flock)
  226. #define __NR_flock (__NR_Linux + 71)
  227. #endif
  228. #if !defined(__NR_fsync)
  229. #define __NR_fsync (__NR_Linux + 72)
  230. #endif
  231. #if !defined(__NR_fdatasync)
  232. #define __NR_fdatasync (__NR_Linux + 73)
  233. #endif
  234. #if !defined(__NR_truncate)
  235. #define __NR_truncate (__NR_Linux + 74)
  236. #endif
  237. #if !defined(__NR_ftruncate)
  238. #define __NR_ftruncate (__NR_Linux + 75)
  239. #endif
  240. #if !defined(__NR_getdents)
  241. #define __NR_getdents (__NR_Linux + 76)
  242. #endif
  243. #if !defined(__NR_getcwd)
  244. #define __NR_getcwd (__NR_Linux + 77)
  245. #endif
  246. #if !defined(__NR_chdir)
  247. #define __NR_chdir (__NR_Linux + 78)
  248. #endif
  249. #if !defined(__NR_fchdir)
  250. #define __NR_fchdir (__NR_Linux + 79)
  251. #endif
  252. #if !defined(__NR_rename)
  253. #define __NR_rename (__NR_Linux + 80)
  254. #endif
  255. #if !defined(__NR_mkdir)
  256. #define __NR_mkdir (__NR_Linux + 81)
  257. #endif
  258. #if !defined(__NR_rmdir)
  259. #define __NR_rmdir (__NR_Linux + 82)
  260. #endif
  261. #if !defined(__NR_creat)
  262. #define __NR_creat (__NR_Linux + 83)
  263. #endif
  264. #if !defined(__NR_link)
  265. #define __NR_link (__NR_Linux + 84)
  266. #endif
  267. #if !defined(__NR_unlink)
  268. #define __NR_unlink (__NR_Linux + 85)
  269. #endif
  270. #if !defined(__NR_symlink)
  271. #define __NR_symlink (__NR_Linux + 86)
  272. #endif
  273. #if !defined(__NR_readlink)
  274. #define __NR_readlink (__NR_Linux + 87)
  275. #endif
  276. #if !defined(__NR_chmod)
  277. #define __NR_chmod (__NR_Linux + 88)
  278. #endif
  279. #if !defined(__NR_fchmod)
  280. #define __NR_fchmod (__NR_Linux + 89)
  281. #endif
  282. #if !defined(__NR_chown)
  283. #define __NR_chown (__NR_Linux + 90)
  284. #endif
  285. #if !defined(__NR_fchown)
  286. #define __NR_fchown (__NR_Linux + 91)
  287. #endif
  288. #if !defined(__NR_lchown)
  289. #define __NR_lchown (__NR_Linux + 92)
  290. #endif
  291. #if !defined(__NR_umask)
  292. #define __NR_umask (__NR_Linux + 93)
  293. #endif
  294. #if !defined(__NR_gettimeofday)
  295. #define __NR_gettimeofday (__NR_Linux + 94)
  296. #endif
  297. #if !defined(__NR_getrlimit)
  298. #define __NR_getrlimit (__NR_Linux + 95)
  299. #endif
  300. #if !defined(__NR_getrusage)
  301. #define __NR_getrusage (__NR_Linux + 96)
  302. #endif
  303. #if !defined(__NR_sysinfo)
  304. #define __NR_sysinfo (__NR_Linux + 97)
  305. #endif
  306. #if !defined(__NR_times)
  307. #define __NR_times (__NR_Linux + 98)
  308. #endif
  309. #if !defined(__NR_ptrace)
  310. #define __NR_ptrace (__NR_Linux + 99)
  311. #endif
  312. #if !defined(__NR_getuid)
  313. #define __NR_getuid (__NR_Linux + 100)
  314. #endif
  315. #if !defined(__NR_syslog)
  316. #define __NR_syslog (__NR_Linux + 101)
  317. #endif
  318. #if !defined(__NR_getgid)
  319. #define __NR_getgid (__NR_Linux + 102)
  320. #endif
  321. #if !defined(__NR_setuid)
  322. #define __NR_setuid (__NR_Linux + 103)
  323. #endif
  324. #if !defined(__NR_setgid)
  325. #define __NR_setgid (__NR_Linux + 104)
  326. #endif
  327. #if !defined(__NR_geteuid)
  328. #define __NR_geteuid (__NR_Linux + 105)
  329. #endif
  330. #if !defined(__NR_getegid)
  331. #define __NR_getegid (__NR_Linux + 106)
  332. #endif
  333. #if !defined(__NR_setpgid)
  334. #define __NR_setpgid (__NR_Linux + 107)
  335. #endif
  336. #if !defined(__NR_getppid)
  337. #define __NR_getppid (__NR_Linux + 108)
  338. #endif
  339. #if !defined(__NR_getpgrp)
  340. #define __NR_getpgrp (__NR_Linux + 109)
  341. #endif
  342. #if !defined(__NR_setsid)
  343. #define __NR_setsid (__NR_Linux + 110)
  344. #endif
  345. #if !defined(__NR_setreuid)
  346. #define __NR_setreuid (__NR_Linux + 111)
  347. #endif
  348. #if !defined(__NR_setregid)
  349. #define __NR_setregid (__NR_Linux + 112)
  350. #endif
  351. #if !defined(__NR_getgroups)
  352. #define __NR_getgroups (__NR_Linux + 113)
  353. #endif
  354. #if !defined(__NR_setgroups)
  355. #define __NR_setgroups (__NR_Linux + 114)
  356. #endif
  357. #if !defined(__NR_setresuid)
  358. #define __NR_setresuid (__NR_Linux + 115)
  359. #endif
  360. #if !defined(__NR_getresuid)
  361. #define __NR_getresuid (__NR_Linux + 116)
  362. #endif
  363. #if !defined(__NR_setresgid)
  364. #define __NR_setresgid (__NR_Linux + 117)
  365. #endif
  366. #if !defined(__NR_getresgid)
  367. #define __NR_getresgid (__NR_Linux + 118)
  368. #endif
  369. #if !defined(__NR_getpgid)
  370. #define __NR_getpgid (__NR_Linux + 119)
  371. #endif
  372. #if !defined(__NR_setfsuid)
  373. #define __NR_setfsuid (__NR_Linux + 120)
  374. #endif
  375. #if !defined(__NR_setfsgid)
  376. #define __NR_setfsgid (__NR_Linux + 121)
  377. #endif
  378. #if !defined(__NR_getsid)
  379. #define __NR_getsid (__NR_Linux + 122)
  380. #endif
  381. #if !defined(__NR_capget)
  382. #define __NR_capget (__NR_Linux + 123)
  383. #endif
  384. #if !defined(__NR_capset)
  385. #define __NR_capset (__NR_Linux + 124)
  386. #endif
  387. #if !defined(__NR_rt_sigpending)
  388. #define __NR_rt_sigpending (__NR_Linux + 125)
  389. #endif
  390. #if !defined(__NR_rt_sigtimedwait)
  391. #define __NR_rt_sigtimedwait (__NR_Linux + 126)
  392. #endif
  393. #if !defined(__NR_rt_sigqueueinfo)
  394. #define __NR_rt_sigqueueinfo (__NR_Linux + 127)
  395. #endif
  396. #if !defined(__NR_rt_sigsuspend)
  397. #define __NR_rt_sigsuspend (__NR_Linux + 128)
  398. #endif
  399. #if !defined(__NR_sigaltstack)
  400. #define __NR_sigaltstack (__NR_Linux + 129)
  401. #endif
  402. #if !defined(__NR_utime)
  403. #define __NR_utime (__NR_Linux + 130)
  404. #endif
  405. #if !defined(__NR_mknod)
  406. #define __NR_mknod (__NR_Linux + 131)
  407. #endif
  408. #if !defined(__NR_personality)
  409. #define __NR_personality (__NR_Linux + 132)
  410. #endif
  411. #if !defined(__NR_ustat)
  412. #define __NR_ustat (__NR_Linux + 133)
  413. #endif
  414. #if !defined(__NR_statfs)
  415. #define __NR_statfs (__NR_Linux + 134)
  416. #endif
  417. #if !defined(__NR_fstatfs)
  418. #define __NR_fstatfs (__NR_Linux + 135)
  419. #endif
  420. #if !defined(__NR_sysfs)
  421. #define __NR_sysfs (__NR_Linux + 136)
  422. #endif
  423. #if !defined(__NR_getpriority)
  424. #define __NR_getpriority (__NR_Linux + 137)
  425. #endif
  426. #if !defined(__NR_setpriority)
  427. #define __NR_setpriority (__NR_Linux + 138)
  428. #endif
  429. #if !defined(__NR_sched_setparam)
  430. #define __NR_sched_setparam (__NR_Linux + 139)
  431. #endif
  432. #if !defined(__NR_sched_getparam)
  433. #define __NR_sched_getparam (__NR_Linux + 140)
  434. #endif
  435. #if !defined(__NR_sched_setscheduler)
  436. #define __NR_sched_setscheduler (__NR_Linux + 141)
  437. #endif
  438. #if !defined(__NR_sched_getscheduler)
  439. #define __NR_sched_getscheduler (__NR_Linux + 142)
  440. #endif
  441. #if !defined(__NR_sched_get_priority_max)
  442. #define __NR_sched_get_priority_max (__NR_Linux + 143)
  443. #endif
  444. #if !defined(__NR_sched_get_priority_min)
  445. #define __NR_sched_get_priority_min (__NR_Linux + 144)
  446. #endif
  447. #if !defined(__NR_sched_rr_get_interval)
  448. #define __NR_sched_rr_get_interval (__NR_Linux + 145)
  449. #endif
  450. #if !defined(__NR_mlock)
  451. #define __NR_mlock (__NR_Linux + 146)
  452. #endif
  453. #if !defined(__NR_munlock)
  454. #define __NR_munlock (__NR_Linux + 147)
  455. #endif
  456. #if !defined(__NR_mlockall)
  457. #define __NR_mlockall (__NR_Linux + 148)
  458. #endif
  459. #if !defined(__NR_munlockall)
  460. #define __NR_munlockall (__NR_Linux + 149)
  461. #endif
  462. #if !defined(__NR_vhangup)
  463. #define __NR_vhangup (__NR_Linux + 150)
  464. #endif
  465. #if !defined(__NR_pivot_root)
  466. #define __NR_pivot_root (__NR_Linux + 151)
  467. #endif
  468. #if !defined(__NR__sysctl)
  469. #define __NR__sysctl (__NR_Linux + 152)
  470. #endif
  471. #if !defined(__NR_prctl)
  472. #define __NR_prctl (__NR_Linux + 153)
  473. #endif
  474. #if !defined(__NR_adjtimex)
  475. #define __NR_adjtimex (__NR_Linux + 154)
  476. #endif
  477. #if !defined(__NR_setrlimit)
  478. #define __NR_setrlimit (__NR_Linux + 155)
  479. #endif
  480. #if !defined(__NR_chroot)
  481. #define __NR_chroot (__NR_Linux + 156)
  482. #endif
  483. #if !defined(__NR_sync)
  484. #define __NR_sync (__NR_Linux + 157)
  485. #endif
  486. #if !defined(__NR_acct)
  487. #define __NR_acct (__NR_Linux + 158)
  488. #endif
  489. #if !defined(__NR_settimeofday)
  490. #define __NR_settimeofday (__NR_Linux + 159)
  491. #endif
  492. #if !defined(__NR_mount)
  493. #define __NR_mount (__NR_Linux + 160)
  494. #endif
  495. #if !defined(__NR_umount2)
  496. #define __NR_umount2 (__NR_Linux + 161)
  497. #endif
  498. #if !defined(__NR_swapon)
  499. #define __NR_swapon (__NR_Linux + 162)
  500. #endif
  501. #if !defined(__NR_swapoff)
  502. #define __NR_swapoff (__NR_Linux + 163)
  503. #endif
  504. #if !defined(__NR_reboot)
  505. #define __NR_reboot (__NR_Linux + 164)
  506. #endif
  507. #if !defined(__NR_sethostname)
  508. #define __NR_sethostname (__NR_Linux + 165)
  509. #endif
  510. #if !defined(__NR_setdomainname)
  511. #define __NR_setdomainname (__NR_Linux + 166)
  512. #endif
  513. #if !defined(__NR_create_module)
  514. #define __NR_create_module (__NR_Linux + 167)
  515. #endif
  516. #if !defined(__NR_init_module)
  517. #define __NR_init_module (__NR_Linux + 168)
  518. #endif
  519. #if !defined(__NR_delete_module)
  520. #define __NR_delete_module (__NR_Linux + 169)
  521. #endif
  522. #if !defined(__NR_get_kernel_syms)
  523. #define __NR_get_kernel_syms (__NR_Linux + 170)
  524. #endif
  525. #if !defined(__NR_query_module)
  526. #define __NR_query_module (__NR_Linux + 171)
  527. #endif
  528. #if !defined(__NR_quotactl)
  529. #define __NR_quotactl (__NR_Linux + 172)
  530. #endif
  531. #if !defined(__NR_nfsservctl)
  532. #define __NR_nfsservctl (__NR_Linux + 173)
  533. #endif
  534. #if !defined(__NR_getpmsg)
  535. #define __NR_getpmsg (__NR_Linux + 174)
  536. #endif
  537. #if !defined(__NR_putpmsg)
  538. #define __NR_putpmsg (__NR_Linux + 175)
  539. #endif
  540. #if !defined(__NR_afs_syscall)
  541. #define __NR_afs_syscall (__NR_Linux + 176)
  542. #endif
  543. #if !defined(__NR_reserved177)
  544. #define __NR_reserved177 (__NR_Linux + 177)
  545. #endif
  546. #if !defined(__NR_gettid)
  547. #define __NR_gettid (__NR_Linux + 178)
  548. #endif
  549. #if !defined(__NR_readahead)
  550. #define __NR_readahead (__NR_Linux + 179)
  551. #endif
  552. #if !defined(__NR_setxattr)
  553. #define __NR_setxattr (__NR_Linux + 180)
  554. #endif
  555. #if !defined(__NR_lsetxattr)
  556. #define __NR_lsetxattr (__NR_Linux + 181)
  557. #endif
  558. #if !defined(__NR_fsetxattr)
  559. #define __NR_fsetxattr (__NR_Linux + 182)
  560. #endif
  561. #if !defined(__NR_getxattr)
  562. #define __NR_getxattr (__NR_Linux + 183)
  563. #endif
  564. #if !defined(__NR_lgetxattr)
  565. #define __NR_lgetxattr (__NR_Linux + 184)
  566. #endif
  567. #if !defined(__NR_fgetxattr)
  568. #define __NR_fgetxattr (__NR_Linux + 185)
  569. #endif
  570. #if !defined(__NR_listxattr)
  571. #define __NR_listxattr (__NR_Linux + 186)
  572. #endif
  573. #if !defined(__NR_llistxattr)
  574. #define __NR_llistxattr (__NR_Linux + 187)
  575. #endif
  576. #if !defined(__NR_flistxattr)
  577. #define __NR_flistxattr (__NR_Linux + 188)
  578. #endif
  579. #if !defined(__NR_removexattr)
  580. #define __NR_removexattr (__NR_Linux + 189)
  581. #endif
  582. #if !defined(__NR_lremovexattr)
  583. #define __NR_lremovexattr (__NR_Linux + 190)
  584. #endif
  585. #if !defined(__NR_fremovexattr)
  586. #define __NR_fremovexattr (__NR_Linux + 191)
  587. #endif
  588. #if !defined(__NR_tkill)
  589. #define __NR_tkill (__NR_Linux + 192)
  590. #endif
  591. #if !defined(__NR_reserved193)
  592. #define __NR_reserved193 (__NR_Linux + 193)
  593. #endif
  594. #if !defined(__NR_futex)
  595. #define __NR_futex (__NR_Linux + 194)
  596. #endif
  597. #if !defined(__NR_sched_setaffinity)
  598. #define __NR_sched_setaffinity (__NR_Linux + 195)
  599. #endif
  600. #if !defined(__NR_sched_getaffinity)
  601. #define __NR_sched_getaffinity (__NR_Linux + 196)
  602. #endif
  603. #if !defined(__NR_cacheflush)
  604. #define __NR_cacheflush (__NR_Linux + 197)
  605. #endif
  606. #if !defined(__NR_cachectl)
  607. #define __NR_cachectl (__NR_Linux + 198)
  608. #endif
  609. #if !defined(__NR_sysmips)
  610. #define __NR_sysmips (__NR_Linux + 199)
  611. #endif
  612. #if !defined(__NR_io_setup)
  613. #define __NR_io_setup (__NR_Linux + 200)
  614. #endif
  615. #if !defined(__NR_io_destroy)
  616. #define __NR_io_destroy (__NR_Linux + 201)
  617. #endif
  618. #if !defined(__NR_io_getevents)
  619. #define __NR_io_getevents (__NR_Linux + 202)
  620. #endif
  621. #if !defined(__NR_io_submit)
  622. #define __NR_io_submit (__NR_Linux + 203)
  623. #endif
  624. #if !defined(__NR_io_cancel)
  625. #define __NR_io_cancel (__NR_Linux + 204)
  626. #endif
  627. #if !defined(__NR_exit_group)
  628. #define __NR_exit_group (__NR_Linux + 205)
  629. #endif
  630. #if !defined(__NR_lookup_dcookie)
  631. #define __NR_lookup_dcookie (__NR_Linux + 206)
  632. #endif
  633. #if !defined(__NR_epoll_create)
  634. #define __NR_epoll_create (__NR_Linux + 207)
  635. #endif
  636. #if !defined(__NR_epoll_ctl)
  637. #define __NR_epoll_ctl (__NR_Linux + 208)
  638. #endif
  639. #if !defined(__NR_epoll_wait)
  640. #define __NR_epoll_wait (__NR_Linux + 209)
  641. #endif
  642. #if !defined(__NR_remap_file_pages)
  643. #define __NR_remap_file_pages (__NR_Linux + 210)
  644. #endif
  645. #if !defined(__NR_rt_sigreturn)
  646. #define __NR_rt_sigreturn (__NR_Linux + 211)
  647. #endif
  648. #if !defined(__NR_set_tid_address)
  649. #define __NR_set_tid_address (__NR_Linux + 212)
  650. #endif
  651. #if !defined(__NR_restart_syscall)
  652. #define __NR_restart_syscall (__NR_Linux + 213)
  653. #endif
  654. #if !defined(__NR_semtimedop)
  655. #define __NR_semtimedop (__NR_Linux + 214)
  656. #endif
  657. #if !defined(__NR_fadvise64)
  658. #define __NR_fadvise64 (__NR_Linux + 215)
  659. #endif
  660. #if !defined(__NR_timer_create)
  661. #define __NR_timer_create (__NR_Linux + 216)
  662. #endif
  663. #if !defined(__NR_timer_settime)
  664. #define __NR_timer_settime (__NR_Linux + 217)
  665. #endif
  666. #if !defined(__NR_timer_gettime)
  667. #define __NR_timer_gettime (__NR_Linux + 218)
  668. #endif
  669. #if !defined(__NR_timer_getoverrun)
  670. #define __NR_timer_getoverrun (__NR_Linux + 219)
  671. #endif
  672. #if !defined(__NR_timer_delete)
  673. #define __NR_timer_delete (__NR_Linux + 220)
  674. #endif
  675. #if !defined(__NR_clock_settime)
  676. #define __NR_clock_settime (__NR_Linux + 221)
  677. #endif
  678. #if !defined(__NR_clock_gettime)
  679. #define __NR_clock_gettime (__NR_Linux + 222)
  680. #endif
  681. #if !defined(__NR_clock_getres)
  682. #define __NR_clock_getres (__NR_Linux + 223)
  683. #endif
  684. #if !defined(__NR_clock_nanosleep)
  685. #define __NR_clock_nanosleep (__NR_Linux + 224)
  686. #endif
  687. #if !defined(__NR_tgkill)
  688. #define __NR_tgkill (__NR_Linux + 225)
  689. #endif
  690. #if !defined(__NR_utimes)
  691. #define __NR_utimes (__NR_Linux + 226)
  692. #endif
  693. #if !defined(__NR_mbind)
  694. #define __NR_mbind (__NR_Linux + 227)
  695. #endif
  696. #if !defined(__NR_get_mempolicy)
  697. #define __NR_get_mempolicy (__NR_Linux + 228)
  698. #endif
  699. #if !defined(__NR_set_mempolicy)
  700. #define __NR_set_mempolicy (__NR_Linux + 229)
  701. #endif
  702. #if !defined(__NR_mq_open)
  703. #define __NR_mq_open (__NR_Linux + 230)
  704. #endif
  705. #if !defined(__NR_mq_unlink)
  706. #define __NR_mq_unlink (__NR_Linux + 231)
  707. #endif
  708. #if !defined(__NR_mq_timedsend)
  709. #define __NR_mq_timedsend (__NR_Linux + 232)
  710. #endif
  711. #if !defined(__NR_mq_timedreceive)
  712. #define __NR_mq_timedreceive (__NR_Linux + 233)
  713. #endif
  714. #if !defined(__NR_mq_notify)
  715. #define __NR_mq_notify (__NR_Linux + 234)
  716. #endif
  717. #if !defined(__NR_mq_getsetattr)
  718. #define __NR_mq_getsetattr (__NR_Linux + 235)
  719. #endif
  720. #if !defined(__NR_vserver)
  721. #define __NR_vserver (__NR_Linux + 236)
  722. #endif
  723. #if !defined(__NR_waitid)
  724. #define __NR_waitid (__NR_Linux + 237)
  725. #endif
  726. /* #define __NR_sys_setaltroot (__NR_Linux + 238) */
  727. #if !defined(__NR_add_key)
  728. #define __NR_add_key (__NR_Linux + 239)
  729. #endif
  730. #if !defined(__NR_request_key)
  731. #define __NR_request_key (__NR_Linux + 240)
  732. #endif
  733. #if !defined(__NR_keyctl)
  734. #define __NR_keyctl (__NR_Linux + 241)
  735. #endif
  736. #if !defined(__NR_set_thread_area)
  737. #define __NR_set_thread_area (__NR_Linux + 242)
  738. #endif
  739. #if !defined(__NR_inotify_init)
  740. #define __NR_inotify_init (__NR_Linux + 243)
  741. #endif
  742. #if !defined(__NR_inotify_add_watch)
  743. #define __NR_inotify_add_watch (__NR_Linux + 244)
  744. #endif
  745. #if !defined(__NR_inotify_rm_watch)
  746. #define __NR_inotify_rm_watch (__NR_Linux + 245)
  747. #endif
  748. #if !defined(__NR_migrate_pages)
  749. #define __NR_migrate_pages (__NR_Linux + 246)
  750. #endif
  751. #if !defined(__NR_openat)
  752. #define __NR_openat (__NR_Linux + 247)
  753. #endif
  754. #if !defined(__NR_mkdirat)
  755. #define __NR_mkdirat (__NR_Linux + 248)
  756. #endif
  757. #if !defined(__NR_mknodat)
  758. #define __NR_mknodat (__NR_Linux + 249)
  759. #endif
  760. #if !defined(__NR_fchownat)
  761. #define __NR_fchownat (__NR_Linux + 250)
  762. #endif
  763. #if !defined(__NR_futimesat)
  764. #define __NR_futimesat (__NR_Linux + 251)
  765. #endif
  766. #if !defined(__NR_newfstatat)
  767. #define __NR_newfstatat (__NR_Linux + 252)
  768. #endif
  769. #if !defined(__NR_unlinkat)
  770. #define __NR_unlinkat (__NR_Linux + 253)
  771. #endif
  772. #if !defined(__NR_renameat)
  773. #define __NR_renameat (__NR_Linux + 254)
  774. #endif
  775. #if !defined(__NR_linkat)
  776. #define __NR_linkat (__NR_Linux + 255)
  777. #endif
  778. #if !defined(__NR_symlinkat)
  779. #define __NR_symlinkat (__NR_Linux + 256)
  780. #endif
  781. #if !defined(__NR_readlinkat)
  782. #define __NR_readlinkat (__NR_Linux + 257)
  783. #endif
  784. #if !defined(__NR_fchmodat)
  785. #define __NR_fchmodat (__NR_Linux + 258)
  786. #endif
  787. #if !defined(__NR_faccessat)
  788. #define __NR_faccessat (__NR_Linux + 259)
  789. #endif
  790. #if !defined(__NR_pselect6)
  791. #define __NR_pselect6 (__NR_Linux + 260)
  792. #endif
  793. #if !defined(__NR_ppoll)
  794. #define __NR_ppoll (__NR_Linux + 261)
  795. #endif
  796. #if !defined(__NR_unshare)
  797. #define __NR_unshare (__NR_Linux + 262)
  798. #endif
  799. #if !defined(__NR_splice)
  800. #define __NR_splice (__NR_Linux + 263)
  801. #endif
  802. #if !defined(__NR_sync_file_range)
  803. #define __NR_sync_file_range (__NR_Linux + 264)
  804. #endif
  805. #if !defined(__NR_tee)
  806. #define __NR_tee (__NR_Linux + 265)
  807. #endif
  808. #if !defined(__NR_vmsplice)
  809. #define __NR_vmsplice (__NR_Linux + 266)
  810. #endif
  811. #if !defined(__NR_move_pages)
  812. #define __NR_move_pages (__NR_Linux + 267)
  813. #endif
  814. #if !defined(__NR_set_robust_list)
  815. #define __NR_set_robust_list (__NR_Linux + 268)
  816. #endif
  817. #if !defined(__NR_get_robust_list)
  818. #define __NR_get_robust_list (__NR_Linux + 269)
  819. #endif
  820. #if !defined(__NR_kexec_load)
  821. #define __NR_kexec_load (__NR_Linux + 270)
  822. #endif
  823. #if !defined(__NR_getcpu)
  824. #define __NR_getcpu (__NR_Linux + 271)
  825. #endif
  826. #if !defined(__NR_epoll_pwait)
  827. #define __NR_epoll_pwait (__NR_Linux + 272)
  828. #endif
  829. #if !defined(__NR_ioprio_set)
  830. #define __NR_ioprio_set (__NR_Linux + 273)
  831. #endif
  832. #if !defined(__NR_ioprio_get)
  833. #define __NR_ioprio_get (__NR_Linux + 274)
  834. #endif
  835. #if !defined(__NR_utimensat)
  836. #define __NR_utimensat (__NR_Linux + 275)
  837. #endif
  838. #if !defined(__NR_signalfd)
  839. #define __NR_signalfd (__NR_Linux + 276)
  840. #endif
  841. #if !defined(__NR_timerfd)
  842. #define __NR_timerfd (__NR_Linux + 277)
  843. #endif
  844. #if !defined(__NR_eventfd)
  845. #define __NR_eventfd (__NR_Linux + 278)
  846. #endif
  847. #if !defined(__NR_fallocate)
  848. #define __NR_fallocate (__NR_Linux + 279)
  849. #endif
  850. #if !defined(__NR_timerfd_create)
  851. #define __NR_timerfd_create (__NR_Linux + 280)
  852. #endif
  853. #if !defined(__NR_timerfd_gettime)
  854. #define __NR_timerfd_gettime (__NR_Linux + 281)
  855. #endif
  856. #if !defined(__NR_timerfd_settime)
  857. #define __NR_timerfd_settime (__NR_Linux + 282)
  858. #endif
  859. #if !defined(__NR_signalfd4)
  860. #define __NR_signalfd4 (__NR_Linux + 283)
  861. #endif
  862. #if !defined(__NR_eventfd2)
  863. #define __NR_eventfd2 (__NR_Linux + 284)
  864. #endif
  865. #if !defined(__NR_epoll_create1)
  866. #define __NR_epoll_create1 (__NR_Linux + 285)
  867. #endif
  868. #if !defined(__NR_dup3)
  869. #define __NR_dup3 (__NR_Linux + 286)
  870. #endif
  871. #if !defined(__NR_pipe2)
  872. #define __NR_pipe2 (__NR_Linux + 287)
  873. #endif
  874. #if !defined(__NR_inotify_init1)
  875. #define __NR_inotify_init1 (__NR_Linux + 288)
  876. #endif
  877. #if !defined(__NR_preadv)
  878. #define __NR_preadv (__NR_Linux + 289)
  879. #endif
  880. #if !defined(__NR_pwritev)
  881. #define __NR_pwritev (__NR_Linux + 290)
  882. #endif
  883. #if !defined(__NR_rt_tgsigqueueinfo)
  884. #define __NR_rt_tgsigqueueinfo (__NR_Linux + 291)
  885. #endif
  886. #if !defined(__NR_perf_event_open)
  887. #define __NR_perf_event_open (__NR_Linux + 292)
  888. #endif
  889. #if !defined(__NR_accept4)
  890. #define __NR_accept4 (__NR_Linux + 293)
  891. #endif
  892. #if !defined(__NR_recvmmsg)
  893. #define __NR_recvmmsg (__NR_Linux + 294)
  894. #endif
  895. #if !defined(__NR_fanotify_init)
  896. #define __NR_fanotify_init (__NR_Linux + 295)
  897. #endif
  898. #if !defined(__NR_fanotify_mark)
  899. #define __NR_fanotify_mark (__NR_Linux + 296)
  900. #endif
  901. #if !defined(__NR_prlimit64)
  902. #define __NR_prlimit64 (__NR_Linux + 297)
  903. #endif
  904. #if !defined(__NR_name_to_handle_at)
  905. #define __NR_name_to_handle_at (__NR_Linux + 298)
  906. #endif
  907. #if !defined(__NR_open_by_handle_at)
  908. #define __NR_open_by_handle_at (__NR_Linux + 299)
  909. #endif
  910. #if !defined(__NR_clock_adjtime)
  911. #define __NR_clock_adjtime (__NR_Linux + 300)
  912. #endif
  913. #if !defined(__NR_syncfs)
  914. #define __NR_syncfs (__NR_Linux + 301)
  915. #endif
  916. #if !defined(__NR_sendmmsg)
  917. #define __NR_sendmmsg (__NR_Linux + 302)
  918. #endif
  919. #if !defined(__NR_setns)
  920. #define __NR_setns (__NR_Linux + 303)
  921. #endif
  922. #if !defined(__NR_process_vm_readv)
  923. #define __NR_process_vm_readv (__NR_Linux + 304)
  924. #endif
  925. #if !defined(__NR_process_vm_writev)
  926. #define __NR_process_vm_writev (__NR_Linux + 305)
  927. #endif
  928. #if !defined(__NR_kcmp)
  929. #define __NR_kcmp (__NR_Linux + 306)
  930. #endif
  931. #if !defined(__NR_finit_module)
  932. #define __NR_finit_module (__NR_Linux + 307)
  933. #endif
  934. #if !defined(__NR_getdents64)
  935. #define __NR_getdents64 (__NR_Linux + 308)
  936. #endif
  937. #if !defined(__NR_sched_setattr)
  938. #define __NR_sched_setattr (__NR_Linux + 309)
  939. #endif
  940. #if !defined(__NR_sched_getattr)
  941. #define __NR_sched_getattr (__NR_Linux + 310)
  942. #endif
  943. #if !defined(__NR_renameat2)
  944. #define __NR_renameat2 (__NR_Linux + 311)
  945. #endif
  946. #if !defined(__NR_seccomp)
  947. #define __NR_seccomp (__NR_Linux + 312)
  948. #endif
  949. #if !defined(__NR_getrandom)
  950. #define __NR_getrandom (__NR_Linux + 313)
  951. #endif
  952. #if !defined(__NR_memfd_create)
  953. #define __NR_memfd_create (__NR_Linux + 314)
  954. #endif
  955. #if !defined(__NR_bpf)
  956. #define __NR_bpf (__NR_Linux + 315)
  957. #endif
  958. #if !defined(__NR_execveat)
  959. #define __NR_execveat (__NR_Linux + 316)
  960. #endif
  961. #if !defined(__NR_userfaultfd)
  962. #define __NR_userfaultfd (__NR_Linux + 317)
  963. #endif
  964. #if !defined(__NR_membarrier)
  965. #define __NR_membarrier (__NR_Linux + 318)
  966. #endif
  967. #if !defined(__NR_mlock2)
  968. #define __NR_mlock2 (__NR_Linux + 319)
  969. #endif
  970. #if !defined(__NR_copy_file_range)
  971. #define __NR_copy_file_range (__NR_Linux + 320)
  972. #endif
  973. #if !defined(__NR_preadv2)
  974. #define __NR_preadv2 (__NR_Linux + 321)
  975. #endif
  976. #if !defined(__NR_pwritev2)
  977. #define __NR_pwritev2 (__NR_Linux + 322)
  978. #endif
  979. #if !defined(__NR_pkey_mprotect)
  980. #define __NR_pkey_mprotect (__NR_Linux + 323)
  981. #endif
  982. #if !defined(__NR_pkey_alloc)
  983. #define __NR_pkey_alloc (__NR_Linux + 324)
  984. #endif
  985. #if !defined(__NR_pkey_free)
  986. #define __NR_pkey_free (__NR_Linux + 325)
  987. #endif
  988. #if !defined(__NR_statx)
  989. #define __NR_statx (__NR_Linux + 326)
  990. #endif
  991. #if !defined(__NR_rseq)
  992. #define __NR_rseq (__NR_Linux + 327)
  993. #endif
  994. #if !defined(__NR_io_pgetevents)
  995. #define __NR_io_pgetevents (__NR_Linux + 328)
  996. #endif
  997. #if !defined(__NR_pidfd_send_signal)
  998. #define __NR_pidfd_send_signal (__NR_Linux + 424)
  999. #endif
  1000. #if !defined(__NR_io_uring_setup)
  1001. #define __NR_io_uring_setup (__NR_Linux + 425)
  1002. #endif
  1003. #if !defined(__NR_io_uring_enter)
  1004. #define __NR_io_uring_enter (__NR_Linux + 426)
  1005. #endif
  1006. #if !defined(__NR_io_uring_register)
  1007. #define __NR_io_uring_register (__NR_Linux + 427)
  1008. #endif
  1009. #if !defined(__NR_open_tree)
  1010. #define __NR_open_tree (__NR_Linux + 428)
  1011. #endif
  1012. #if !defined(__NR_move_mount)
  1013. #define __NR_move_mount (__NR_Linux + 429)
  1014. #endif
  1015. #if !defined(__NR_fsopen)
  1016. #define __NR_fsopen (__NR_Linux + 430)
  1017. #endif
  1018. #if !defined(__NR_fsconfig)
  1019. #define __NR_fsconfig (__NR_Linux + 431)
  1020. #endif
  1021. #if !defined(__NR_fsmount)
  1022. #define __NR_fsmount (__NR_Linux + 432)
  1023. #endif
  1024. #if !defined(__NR_fspick)
  1025. #define __NR_fspick (__NR_Linux + 433)
  1026. #endif
  1027. #if !defined(__NR_pidfd_open)
  1028. #define __NR_pidfd_open (__NR_Linux + 434)
  1029. #endif
  1030. #if !defined(__NR_clone3)
  1031. #define __NR_clone3 (__NR_Linux + 435)
  1032. #endif
  1033. #if !defined(__NR_close_range)
  1034. #define __NR_close_range (__NR_Linux + 436)
  1035. #endif
  1036. #if !defined(__NR_openat2)
  1037. #define __NR_openat2 (__NR_Linux + 437)
  1038. #endif
  1039. #if !defined(__NR_pidfd_getfd)
  1040. #define __NR_pidfd_getfd (__NR_Linux + 438)
  1041. #endif
  1042. #if !defined(__NR_faccessat2)
  1043. #define __NR_faccessat2 (__NR_Linux + 439)
  1044. #endif
  1045. #if !defined(__NR_process_madvise)
  1046. #define __NR_process_madvise (__NR_Linux + 440)
  1047. #endif
  1048. #if !defined(__NR_epoll_pwait2)
  1049. #define __NR_epoll_pwait2 (__NR_Linux + 441)
  1050. #endif
  1051. #if !defined(__NR_mount_setattr)
  1052. #define __NR_mount_setattr (__NR_Linux + 442)
  1053. #endif
  1054. #if !defined(__NR_landlock_create_ruleset)
  1055. #define __NR_landlock_create_ruleset (__NR_Linux + 444)
  1056. #endif
  1057. #if !defined(__NR_landlock_add_rule)
  1058. #define __NR_landlock_add_rule (__NR_Linux + 445)
  1059. #endif
  1060. #if !defined(__NR_landlock_restrict_self)
  1061. #define __NR_landlock_restrict_self (__NR_Linux + 446)
  1062. #endif
  1063. #endif // SANDBOX_LINUX_SYSTEM_HEADERS_MIPS64_LINUX_SYSCALLS_H_