linux_sysno/
x32.rs

1//! Syscalls for arch `x32`.
2
3#![allow(non_camel_case_types)]
4
5// This file is automatically generated. Do not edit.
6
7/// List of system call numbers.
8#[repr(usize)]
9#[non_exhaustive]
10#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
11pub enum Sysno {
12    /// See doc at [read(2)](https://man7.org/linux/man-pages/man2/read.2.html).
13    read = 1073741824,
14    /// See doc at [write(2)](https://man7.org/linux/man-pages/man2/write.2.html).
15    write = 1073741825,
16    /// See doc at [open(2)](https://man7.org/linux/man-pages/man2/open.2.html).
17    open = 1073741826,
18    /// See doc at [close(2)](https://man7.org/linux/man-pages/man2/close.2.html).
19    close = 1073741827,
20    /// See doc at [stat(2)](https://man7.org/linux/man-pages/man2/stat.2.html).
21    stat = 1073741828,
22    /// See doc at [fstat(2)](https://man7.org/linux/man-pages/man2/fstat.2.html).
23    fstat = 1073741829,
24    /// See doc at [lstat(2)](https://man7.org/linux/man-pages/man2/lstat.2.html).
25    lstat = 1073741830,
26    /// See doc at [poll(2)](https://man7.org/linux/man-pages/man2/poll.2.html).
27    poll = 1073741831,
28    /// See doc at [lseek(2)](https://man7.org/linux/man-pages/man2/lseek.2.html).
29    lseek = 1073741832,
30    /// See doc at [mmap(2)](https://man7.org/linux/man-pages/man2/mmap.2.html).
31    mmap = 1073741833,
32    /// See doc at [mprotect(2)](https://man7.org/linux/man-pages/man2/mprotect.2.html).
33    mprotect = 1073741834,
34    /// See doc at [munmap(2)](https://man7.org/linux/man-pages/man2/munmap.2.html).
35    munmap = 1073741835,
36    /// See doc at [brk(2)](https://man7.org/linux/man-pages/man2/brk.2.html).
37    brk = 1073741836,
38    /// See doc at [rt_sigprocmask(2)](https://man7.org/linux/man-pages/man2/rt_sigprocmask.2.html).
39    rt_sigprocmask = 1073741838,
40    /// See doc at [pread64(2)](https://man7.org/linux/man-pages/man2/pread64.2.html).
41    pread64 = 1073741841,
42    /// See doc at [pwrite64(2)](https://man7.org/linux/man-pages/man2/pwrite64.2.html).
43    pwrite64 = 1073741842,
44    /// See doc at [access(2)](https://man7.org/linux/man-pages/man2/access.2.html).
45    access = 1073741845,
46    /// See doc at [pipe(2)](https://man7.org/linux/man-pages/man2/pipe.2.html).
47    pipe = 1073741846,
48    /// See doc at [select(2)](https://man7.org/linux/man-pages/man2/select.2.html).
49    select = 1073741847,
50    /// See doc at [sched_yield(2)](https://man7.org/linux/man-pages/man2/sched_yield.2.html).
51    sched_yield = 1073741848,
52    /// See doc at [mremap(2)](https://man7.org/linux/man-pages/man2/mremap.2.html).
53    mremap = 1073741849,
54    /// See doc at [msync(2)](https://man7.org/linux/man-pages/man2/msync.2.html).
55    msync = 1073741850,
56    /// See doc at [mincore(2)](https://man7.org/linux/man-pages/man2/mincore.2.html).
57    mincore = 1073741851,
58    /// See doc at [madvise(2)](https://man7.org/linux/man-pages/man2/madvise.2.html).
59    madvise = 1073741852,
60    /// See doc at [shmget(2)](https://man7.org/linux/man-pages/man2/shmget.2.html).
61    shmget = 1073741853,
62    /// See doc at [shmat(2)](https://man7.org/linux/man-pages/man2/shmat.2.html).
63    shmat = 1073741854,
64    /// See doc at [shmctl(2)](https://man7.org/linux/man-pages/man2/shmctl.2.html).
65    shmctl = 1073741855,
66    /// See doc at [dup(2)](https://man7.org/linux/man-pages/man2/dup.2.html).
67    dup = 1073741856,
68    /// See doc at [dup2(2)](https://man7.org/linux/man-pages/man2/dup2.2.html).
69    dup2 = 1073741857,
70    /// See doc at [pause(2)](https://man7.org/linux/man-pages/man2/pause.2.html).
71    pause = 1073741858,
72    /// See doc at [nanosleep(2)](https://man7.org/linux/man-pages/man2/nanosleep.2.html).
73    nanosleep = 1073741859,
74    /// See doc at [getitimer(2)](https://man7.org/linux/man-pages/man2/getitimer.2.html).
75    getitimer = 1073741860,
76    /// See doc at [alarm(2)](https://man7.org/linux/man-pages/man2/alarm.2.html).
77    alarm = 1073741861,
78    /// See doc at [setitimer(2)](https://man7.org/linux/man-pages/man2/setitimer.2.html).
79    setitimer = 1073741862,
80    /// See doc at [getpid(2)](https://man7.org/linux/man-pages/man2/getpid.2.html).
81    getpid = 1073741863,
82    /// See doc at [sendfile(2)](https://man7.org/linux/man-pages/man2/sendfile.2.html).
83    sendfile = 1073741864,
84    /// See doc at [socket(2)](https://man7.org/linux/man-pages/man2/socket.2.html).
85    socket = 1073741865,
86    /// See doc at [connect(2)](https://man7.org/linux/man-pages/man2/connect.2.html).
87    connect = 1073741866,
88    /// See doc at [accept(2)](https://man7.org/linux/man-pages/man2/accept.2.html).
89    accept = 1073741867,
90    /// See doc at [sendto(2)](https://man7.org/linux/man-pages/man2/sendto.2.html).
91    sendto = 1073741868,
92    /// See doc at [shutdown(2)](https://man7.org/linux/man-pages/man2/shutdown.2.html).
93    shutdown = 1073741872,
94    /// See doc at [bind(2)](https://man7.org/linux/man-pages/man2/bind.2.html).
95    bind = 1073741873,
96    /// See doc at [listen(2)](https://man7.org/linux/man-pages/man2/listen.2.html).
97    listen = 1073741874,
98    /// See doc at [getsockname(2)](https://man7.org/linux/man-pages/man2/getsockname.2.html).
99    getsockname = 1073741875,
100    /// See doc at [getpeername(2)](https://man7.org/linux/man-pages/man2/getpeername.2.html).
101    getpeername = 1073741876,
102    /// See doc at [socketpair(2)](https://man7.org/linux/man-pages/man2/socketpair.2.html).
103    socketpair = 1073741877,
104    /// See doc at [clone(2)](https://man7.org/linux/man-pages/man2/clone.2.html).
105    clone = 1073741880,
106    /// See doc at [fork(2)](https://man7.org/linux/man-pages/man2/fork.2.html).
107    fork = 1073741881,
108    /// See doc at [vfork(2)](https://man7.org/linux/man-pages/man2/vfork.2.html).
109    vfork = 1073741882,
110    /// See doc at [exit(2)](https://man7.org/linux/man-pages/man2/exit.2.html).
111    exit = 1073741884,
112    /// See doc at [wait4(2)](https://man7.org/linux/man-pages/man2/wait4.2.html).
113    wait4 = 1073741885,
114    /// See doc at [kill(2)](https://man7.org/linux/man-pages/man2/kill.2.html).
115    kill = 1073741886,
116    /// See doc at [uname(2)](https://man7.org/linux/man-pages/man2/uname.2.html).
117    uname = 1073741887,
118    /// See doc at [semget(2)](https://man7.org/linux/man-pages/man2/semget.2.html).
119    semget = 1073741888,
120    /// See doc at [semop(2)](https://man7.org/linux/man-pages/man2/semop.2.html).
121    semop = 1073741889,
122    /// See doc at [semctl(2)](https://man7.org/linux/man-pages/man2/semctl.2.html).
123    semctl = 1073741890,
124    /// See doc at [shmdt(2)](https://man7.org/linux/man-pages/man2/shmdt.2.html).
125    shmdt = 1073741891,
126    /// See doc at [msgget(2)](https://man7.org/linux/man-pages/man2/msgget.2.html).
127    msgget = 1073741892,
128    /// See doc at [msgsnd(2)](https://man7.org/linux/man-pages/man2/msgsnd.2.html).
129    msgsnd = 1073741893,
130    /// See doc at [msgrcv(2)](https://man7.org/linux/man-pages/man2/msgrcv.2.html).
131    msgrcv = 1073741894,
132    /// See doc at [msgctl(2)](https://man7.org/linux/man-pages/man2/msgctl.2.html).
133    msgctl = 1073741895,
134    /// See doc at [fcntl(2)](https://man7.org/linux/man-pages/man2/fcntl.2.html).
135    fcntl = 1073741896,
136    /// See doc at [flock(2)](https://man7.org/linux/man-pages/man2/flock.2.html).
137    flock = 1073741897,
138    /// See doc at [fsync(2)](https://man7.org/linux/man-pages/man2/fsync.2.html).
139    fsync = 1073741898,
140    /// See doc at [fdatasync(2)](https://man7.org/linux/man-pages/man2/fdatasync.2.html).
141    fdatasync = 1073741899,
142    /// See doc at [truncate(2)](https://man7.org/linux/man-pages/man2/truncate.2.html).
143    truncate = 1073741900,
144    /// See doc at [ftruncate(2)](https://man7.org/linux/man-pages/man2/ftruncate.2.html).
145    ftruncate = 1073741901,
146    /// See doc at [getdents(2)](https://man7.org/linux/man-pages/man2/getdents.2.html).
147    getdents = 1073741902,
148    /// See doc at [getcwd(2)](https://man7.org/linux/man-pages/man2/getcwd.2.html).
149    getcwd = 1073741903,
150    /// See doc at [chdir(2)](https://man7.org/linux/man-pages/man2/chdir.2.html).
151    chdir = 1073741904,
152    /// See doc at [fchdir(2)](https://man7.org/linux/man-pages/man2/fchdir.2.html).
153    fchdir = 1073741905,
154    /// See doc at [rename(2)](https://man7.org/linux/man-pages/man2/rename.2.html).
155    rename = 1073741906,
156    /// See doc at [mkdir(2)](https://man7.org/linux/man-pages/man2/mkdir.2.html).
157    mkdir = 1073741907,
158    /// See doc at [rmdir(2)](https://man7.org/linux/man-pages/man2/rmdir.2.html).
159    rmdir = 1073741908,
160    /// See doc at [creat(2)](https://man7.org/linux/man-pages/man2/creat.2.html).
161    creat = 1073741909,
162    /// See doc at [link(2)](https://man7.org/linux/man-pages/man2/link.2.html).
163    link = 1073741910,
164    /// See doc at [unlink(2)](https://man7.org/linux/man-pages/man2/unlink.2.html).
165    unlink = 1073741911,
166    /// See doc at [symlink(2)](https://man7.org/linux/man-pages/man2/symlink.2.html).
167    symlink = 1073741912,
168    /// See doc at [readlink(2)](https://man7.org/linux/man-pages/man2/readlink.2.html).
169    readlink = 1073741913,
170    /// See doc at [chmod(2)](https://man7.org/linux/man-pages/man2/chmod.2.html).
171    chmod = 1073741914,
172    /// See doc at [fchmod(2)](https://man7.org/linux/man-pages/man2/fchmod.2.html).
173    fchmod = 1073741915,
174    /// See doc at [chown(2)](https://man7.org/linux/man-pages/man2/chown.2.html).
175    chown = 1073741916,
176    /// See doc at [fchown(2)](https://man7.org/linux/man-pages/man2/fchown.2.html).
177    fchown = 1073741917,
178    /// See doc at [lchown(2)](https://man7.org/linux/man-pages/man2/lchown.2.html).
179    lchown = 1073741918,
180    /// See doc at [umask(2)](https://man7.org/linux/man-pages/man2/umask.2.html).
181    umask = 1073741919,
182    /// See doc at [gettimeofday(2)](https://man7.org/linux/man-pages/man2/gettimeofday.2.html).
183    gettimeofday = 1073741920,
184    /// See doc at [getrlimit(2)](https://man7.org/linux/man-pages/man2/getrlimit.2.html).
185    getrlimit = 1073741921,
186    /// See doc at [getrusage(2)](https://man7.org/linux/man-pages/man2/getrusage.2.html).
187    getrusage = 1073741922,
188    /// See doc at [sysinfo(2)](https://man7.org/linux/man-pages/man2/sysinfo.2.html).
189    sysinfo = 1073741923,
190    /// See doc at [times(2)](https://man7.org/linux/man-pages/man2/times.2.html).
191    times = 1073741924,
192    /// See doc at [getuid(2)](https://man7.org/linux/man-pages/man2/getuid.2.html).
193    getuid = 1073741926,
194    /// See doc at [syslog(2)](https://man7.org/linux/man-pages/man2/syslog.2.html).
195    syslog = 1073741927,
196    /// See doc at [getgid(2)](https://man7.org/linux/man-pages/man2/getgid.2.html).
197    getgid = 1073741928,
198    /// See doc at [setuid(2)](https://man7.org/linux/man-pages/man2/setuid.2.html).
199    setuid = 1073741929,
200    /// See doc at [setgid(2)](https://man7.org/linux/man-pages/man2/setgid.2.html).
201    setgid = 1073741930,
202    /// See doc at [geteuid(2)](https://man7.org/linux/man-pages/man2/geteuid.2.html).
203    geteuid = 1073741931,
204    /// See doc at [getegid(2)](https://man7.org/linux/man-pages/man2/getegid.2.html).
205    getegid = 1073741932,
206    /// See doc at [setpgid(2)](https://man7.org/linux/man-pages/man2/setpgid.2.html).
207    setpgid = 1073741933,
208    /// See doc at [getppid(2)](https://man7.org/linux/man-pages/man2/getppid.2.html).
209    getppid = 1073741934,
210    /// See doc at [getpgrp(2)](https://man7.org/linux/man-pages/man2/getpgrp.2.html).
211    getpgrp = 1073741935,
212    /// See doc at [setsid(2)](https://man7.org/linux/man-pages/man2/setsid.2.html).
213    setsid = 1073741936,
214    /// See doc at [setreuid(2)](https://man7.org/linux/man-pages/man2/setreuid.2.html).
215    setreuid = 1073741937,
216    /// See doc at [setregid(2)](https://man7.org/linux/man-pages/man2/setregid.2.html).
217    setregid = 1073741938,
218    /// See doc at [getgroups(2)](https://man7.org/linux/man-pages/man2/getgroups.2.html).
219    getgroups = 1073741939,
220    /// See doc at [setgroups(2)](https://man7.org/linux/man-pages/man2/setgroups.2.html).
221    setgroups = 1073741940,
222    /// See doc at [setresuid(2)](https://man7.org/linux/man-pages/man2/setresuid.2.html).
223    setresuid = 1073741941,
224    /// See doc at [getresuid(2)](https://man7.org/linux/man-pages/man2/getresuid.2.html).
225    getresuid = 1073741942,
226    /// See doc at [setresgid(2)](https://man7.org/linux/man-pages/man2/setresgid.2.html).
227    setresgid = 1073741943,
228    /// See doc at [getresgid(2)](https://man7.org/linux/man-pages/man2/getresgid.2.html).
229    getresgid = 1073741944,
230    /// See doc at [getpgid(2)](https://man7.org/linux/man-pages/man2/getpgid.2.html).
231    getpgid = 1073741945,
232    /// See doc at [setfsuid(2)](https://man7.org/linux/man-pages/man2/setfsuid.2.html).
233    setfsuid = 1073741946,
234    /// See doc at [setfsgid(2)](https://man7.org/linux/man-pages/man2/setfsgid.2.html).
235    setfsgid = 1073741947,
236    /// See doc at [getsid(2)](https://man7.org/linux/man-pages/man2/getsid.2.html).
237    getsid = 1073741948,
238    /// See doc at [capget(2)](https://man7.org/linux/man-pages/man2/capget.2.html).
239    capget = 1073741949,
240    /// See doc at [capset(2)](https://man7.org/linux/man-pages/man2/capset.2.html).
241    capset = 1073741950,
242    /// See doc at [rt_sigsuspend(2)](https://man7.org/linux/man-pages/man2/rt_sigsuspend.2.html).
243    rt_sigsuspend = 1073741954,
244    /// See doc at [utime(2)](https://man7.org/linux/man-pages/man2/utime.2.html).
245    utime = 1073741956,
246    /// See doc at [mknod(2)](https://man7.org/linux/man-pages/man2/mknod.2.html).
247    mknod = 1073741957,
248    /// See doc at [personality(2)](https://man7.org/linux/man-pages/man2/personality.2.html).
249    personality = 1073741959,
250    /// See doc at [ustat(2)](https://man7.org/linux/man-pages/man2/ustat.2.html).
251    ustat = 1073741960,
252    /// See doc at [statfs(2)](https://man7.org/linux/man-pages/man2/statfs.2.html).
253    statfs = 1073741961,
254    /// See doc at [fstatfs(2)](https://man7.org/linux/man-pages/man2/fstatfs.2.html).
255    fstatfs = 1073741962,
256    /// See doc at [sysfs(2)](https://man7.org/linux/man-pages/man2/sysfs.2.html).
257    sysfs = 1073741963,
258    /// See doc at [getpriority(2)](https://man7.org/linux/man-pages/man2/getpriority.2.html).
259    getpriority = 1073741964,
260    /// See doc at [setpriority(2)](https://man7.org/linux/man-pages/man2/setpriority.2.html).
261    setpriority = 1073741965,
262    /// See doc at [sched_setparam(2)](https://man7.org/linux/man-pages/man2/sched_setparam.2.html).
263    sched_setparam = 1073741966,
264    /// See doc at [sched_getparam(2)](https://man7.org/linux/man-pages/man2/sched_getparam.2.html).
265    sched_getparam = 1073741967,
266    /// See doc at [sched_setscheduler(2)](https://man7.org/linux/man-pages/man2/sched_setscheduler.2.html).
267    sched_setscheduler = 1073741968,
268    /// See doc at [sched_getscheduler(2)](https://man7.org/linux/man-pages/man2/sched_getscheduler.2.html).
269    sched_getscheduler = 1073741969,
270    /// See doc at [sched_get_priority_max(2)](https://man7.org/linux/man-pages/man2/sched_get_priority_max.2.html).
271    sched_get_priority_max = 1073741970,
272    /// See doc at [sched_get_priority_min(2)](https://man7.org/linux/man-pages/man2/sched_get_priority_min.2.html).
273    sched_get_priority_min = 1073741971,
274    /// See doc at [sched_rr_get_interval(2)](https://man7.org/linux/man-pages/man2/sched_rr_get_interval.2.html).
275    sched_rr_get_interval = 1073741972,
276    /// See doc at [mlock(2)](https://man7.org/linux/man-pages/man2/mlock.2.html).
277    mlock = 1073741973,
278    /// See doc at [munlock(2)](https://man7.org/linux/man-pages/man2/munlock.2.html).
279    munlock = 1073741974,
280    /// See doc at [mlockall(2)](https://man7.org/linux/man-pages/man2/mlockall.2.html).
281    mlockall = 1073741975,
282    /// See doc at [munlockall(2)](https://man7.org/linux/man-pages/man2/munlockall.2.html).
283    munlockall = 1073741976,
284    /// See doc at [vhangup(2)](https://man7.org/linux/man-pages/man2/vhangup.2.html).
285    vhangup = 1073741977,
286    /// See doc at [modify_ldt(2)](https://man7.org/linux/man-pages/man2/modify_ldt.2.html).
287    modify_ldt = 1073741978,
288    /// See doc at [pivot_root(2)](https://man7.org/linux/man-pages/man2/pivot_root.2.html).
289    pivot_root = 1073741979,
290    /// See doc at [prctl(2)](https://man7.org/linux/man-pages/man2/prctl.2.html).
291    prctl = 1073741981,
292    /// See doc at [arch_prctl(2)](https://man7.org/linux/man-pages/man2/arch_prctl.2.html).
293    arch_prctl = 1073741982,
294    /// See doc at [adjtimex(2)](https://man7.org/linux/man-pages/man2/adjtimex.2.html).
295    adjtimex = 1073741983,
296    /// See doc at [setrlimit(2)](https://man7.org/linux/man-pages/man2/setrlimit.2.html).
297    setrlimit = 1073741984,
298    /// See doc at [chroot(2)](https://man7.org/linux/man-pages/man2/chroot.2.html).
299    chroot = 1073741985,
300    /// See doc at [sync(2)](https://man7.org/linux/man-pages/man2/sync.2.html).
301    sync = 1073741986,
302    /// See doc at [acct(2)](https://man7.org/linux/man-pages/man2/acct.2.html).
303    acct = 1073741987,
304    /// See doc at [settimeofday(2)](https://man7.org/linux/man-pages/man2/settimeofday.2.html).
305    settimeofday = 1073741988,
306    /// See doc at [mount(2)](https://man7.org/linux/man-pages/man2/mount.2.html).
307    mount = 1073741989,
308    /// See doc at [umount2(2)](https://man7.org/linux/man-pages/man2/umount2.2.html).
309    umount2 = 1073741990,
310    /// See doc at [swapon(2)](https://man7.org/linux/man-pages/man2/swapon.2.html).
311    swapon = 1073741991,
312    /// See doc at [swapoff(2)](https://man7.org/linux/man-pages/man2/swapoff.2.html).
313    swapoff = 1073741992,
314    /// See doc at [reboot(2)](https://man7.org/linux/man-pages/man2/reboot.2.html).
315    reboot = 1073741993,
316    /// See doc at [sethostname(2)](https://man7.org/linux/man-pages/man2/sethostname.2.html).
317    sethostname = 1073741994,
318    /// See doc at [setdomainname(2)](https://man7.org/linux/man-pages/man2/setdomainname.2.html).
319    setdomainname = 1073741995,
320    /// See doc at [iopl(2)](https://man7.org/linux/man-pages/man2/iopl.2.html).
321    iopl = 1073741996,
322    /// See doc at [ioperm(2)](https://man7.org/linux/man-pages/man2/ioperm.2.html).
323    ioperm = 1073741997,
324    /// See doc at [init_module(2)](https://man7.org/linux/man-pages/man2/init_module.2.html).
325    init_module = 1073741999,
326    /// See doc at [delete_module(2)](https://man7.org/linux/man-pages/man2/delete_module.2.html).
327    delete_module = 1073742000,
328    /// See doc at [quotactl(2)](https://man7.org/linux/man-pages/man2/quotactl.2.html).
329    quotactl = 1073742003,
330    /// See doc at [getpmsg(2)](https://man7.org/linux/man-pages/man2/getpmsg.2.html).
331    getpmsg = 1073742005,
332    /// See doc at [putpmsg(2)](https://man7.org/linux/man-pages/man2/putpmsg.2.html).
333    putpmsg = 1073742006,
334    /// See doc at [afs_syscall(2)](https://man7.org/linux/man-pages/man2/afs_syscall.2.html).
335    afs_syscall = 1073742007,
336    /// See doc at [tuxcall(2)](https://man7.org/linux/man-pages/man2/tuxcall.2.html).
337    tuxcall = 1073742008,
338    /// See doc at [security(2)](https://man7.org/linux/man-pages/man2/security.2.html).
339    security = 1073742009,
340    /// See doc at [gettid(2)](https://man7.org/linux/man-pages/man2/gettid.2.html).
341    gettid = 1073742010,
342    /// See doc at [readahead(2)](https://man7.org/linux/man-pages/man2/readahead.2.html).
343    readahead = 1073742011,
344    /// See doc at [setxattr(2)](https://man7.org/linux/man-pages/man2/setxattr.2.html).
345    setxattr = 1073742012,
346    /// See doc at [lsetxattr(2)](https://man7.org/linux/man-pages/man2/lsetxattr.2.html).
347    lsetxattr = 1073742013,
348    /// See doc at [fsetxattr(2)](https://man7.org/linux/man-pages/man2/fsetxattr.2.html).
349    fsetxattr = 1073742014,
350    /// See doc at [getxattr(2)](https://man7.org/linux/man-pages/man2/getxattr.2.html).
351    getxattr = 1073742015,
352    /// See doc at [lgetxattr(2)](https://man7.org/linux/man-pages/man2/lgetxattr.2.html).
353    lgetxattr = 1073742016,
354    /// See doc at [fgetxattr(2)](https://man7.org/linux/man-pages/man2/fgetxattr.2.html).
355    fgetxattr = 1073742017,
356    /// See doc at [listxattr(2)](https://man7.org/linux/man-pages/man2/listxattr.2.html).
357    listxattr = 1073742018,
358    /// See doc at [llistxattr(2)](https://man7.org/linux/man-pages/man2/llistxattr.2.html).
359    llistxattr = 1073742019,
360    /// See doc at [flistxattr(2)](https://man7.org/linux/man-pages/man2/flistxattr.2.html).
361    flistxattr = 1073742020,
362    /// See doc at [removexattr(2)](https://man7.org/linux/man-pages/man2/removexattr.2.html).
363    removexattr = 1073742021,
364    /// See doc at [lremovexattr(2)](https://man7.org/linux/man-pages/man2/lremovexattr.2.html).
365    lremovexattr = 1073742022,
366    /// See doc at [fremovexattr(2)](https://man7.org/linux/man-pages/man2/fremovexattr.2.html).
367    fremovexattr = 1073742023,
368    /// See doc at [tkill(2)](https://man7.org/linux/man-pages/man2/tkill.2.html).
369    tkill = 1073742024,
370    /// See doc at [time(2)](https://man7.org/linux/man-pages/man2/time.2.html).
371    time = 1073742025,
372    /// See doc at [futex(2)](https://man7.org/linux/man-pages/man2/futex.2.html).
373    futex = 1073742026,
374    /// See doc at [sched_setaffinity(2)](https://man7.org/linux/man-pages/man2/sched_setaffinity.2.html).
375    sched_setaffinity = 1073742027,
376    /// See doc at [sched_getaffinity(2)](https://man7.org/linux/man-pages/man2/sched_getaffinity.2.html).
377    sched_getaffinity = 1073742028,
378    /// See doc at [io_destroy(2)](https://man7.org/linux/man-pages/man2/io_destroy.2.html).
379    io_destroy = 1073742031,
380    /// See doc at [io_getevents(2)](https://man7.org/linux/man-pages/man2/io_getevents.2.html).
381    io_getevents = 1073742032,
382    /// See doc at [io_cancel(2)](https://man7.org/linux/man-pages/man2/io_cancel.2.html).
383    io_cancel = 1073742034,
384    /// See doc at [lookup_dcookie(2)](https://man7.org/linux/man-pages/man2/lookup_dcookie.2.html).
385    lookup_dcookie = 1073742036,
386    /// See doc at [epoll_create(2)](https://man7.org/linux/man-pages/man2/epoll_create.2.html).
387    epoll_create = 1073742037,
388    /// See doc at [remap_file_pages(2)](https://man7.org/linux/man-pages/man2/remap_file_pages.2.html).
389    remap_file_pages = 1073742040,
390    /// See doc at [getdents64(2)](https://man7.org/linux/man-pages/man2/getdents64.2.html).
391    getdents64 = 1073742041,
392    /// See doc at [set_tid_address(2)](https://man7.org/linux/man-pages/man2/set_tid_address.2.html).
393    set_tid_address = 1073742042,
394    /// See doc at [restart_syscall(2)](https://man7.org/linux/man-pages/man2/restart_syscall.2.html).
395    restart_syscall = 1073742043,
396    /// See doc at [semtimedop(2)](https://man7.org/linux/man-pages/man2/semtimedop.2.html).
397    semtimedop = 1073742044,
398    /// See doc at [fadvise64(2)](https://man7.org/linux/man-pages/man2/fadvise64.2.html).
399    fadvise64 = 1073742045,
400    /// See doc at [timer_settime(2)](https://man7.org/linux/man-pages/man2/timer_settime.2.html).
401    timer_settime = 1073742047,
402    /// See doc at [timer_gettime(2)](https://man7.org/linux/man-pages/man2/timer_gettime.2.html).
403    timer_gettime = 1073742048,
404    /// See doc at [timer_getoverrun(2)](https://man7.org/linux/man-pages/man2/timer_getoverrun.2.html).
405    timer_getoverrun = 1073742049,
406    /// See doc at [timer_delete(2)](https://man7.org/linux/man-pages/man2/timer_delete.2.html).
407    timer_delete = 1073742050,
408    /// See doc at [clock_settime(2)](https://man7.org/linux/man-pages/man2/clock_settime.2.html).
409    clock_settime = 1073742051,
410    /// See doc at [clock_gettime(2)](https://man7.org/linux/man-pages/man2/clock_gettime.2.html).
411    clock_gettime = 1073742052,
412    /// See doc at [clock_getres(2)](https://man7.org/linux/man-pages/man2/clock_getres.2.html).
413    clock_getres = 1073742053,
414    /// See doc at [clock_nanosleep(2)](https://man7.org/linux/man-pages/man2/clock_nanosleep.2.html).
415    clock_nanosleep = 1073742054,
416    /// See doc at [exit_group(2)](https://man7.org/linux/man-pages/man2/exit_group.2.html).
417    exit_group = 1073742055,
418    /// See doc at [epoll_wait(2)](https://man7.org/linux/man-pages/man2/epoll_wait.2.html).
419    epoll_wait = 1073742056,
420    /// See doc at [epoll_ctl(2)](https://man7.org/linux/man-pages/man2/epoll_ctl.2.html).
421    epoll_ctl = 1073742057,
422    /// See doc at [tgkill(2)](https://man7.org/linux/man-pages/man2/tgkill.2.html).
423    tgkill = 1073742058,
424    /// See doc at [utimes(2)](https://man7.org/linux/man-pages/man2/utimes.2.html).
425    utimes = 1073742059,
426    /// See doc at [mbind(2)](https://man7.org/linux/man-pages/man2/mbind.2.html).
427    mbind = 1073742061,
428    /// See doc at [set_mempolicy(2)](https://man7.org/linux/man-pages/man2/set_mempolicy.2.html).
429    set_mempolicy = 1073742062,
430    /// See doc at [get_mempolicy(2)](https://man7.org/linux/man-pages/man2/get_mempolicy.2.html).
431    get_mempolicy = 1073742063,
432    /// See doc at [mq_open(2)](https://man7.org/linux/man-pages/man2/mq_open.2.html).
433    mq_open = 1073742064,
434    /// See doc at [mq_unlink(2)](https://man7.org/linux/man-pages/man2/mq_unlink.2.html).
435    mq_unlink = 1073742065,
436    /// See doc at [mq_timedsend(2)](https://man7.org/linux/man-pages/man2/mq_timedsend.2.html).
437    mq_timedsend = 1073742066,
438    /// See doc at [mq_timedreceive(2)](https://man7.org/linux/man-pages/man2/mq_timedreceive.2.html).
439    mq_timedreceive = 1073742067,
440    /// See doc at [mq_getsetattr(2)](https://man7.org/linux/man-pages/man2/mq_getsetattr.2.html).
441    mq_getsetattr = 1073742069,
442    /// See doc at [add_key(2)](https://man7.org/linux/man-pages/man2/add_key.2.html).
443    add_key = 1073742072,
444    /// See doc at [request_key(2)](https://man7.org/linux/man-pages/man2/request_key.2.html).
445    request_key = 1073742073,
446    /// See doc at [keyctl(2)](https://man7.org/linux/man-pages/man2/keyctl.2.html).
447    keyctl = 1073742074,
448    /// See doc at [ioprio_set(2)](https://man7.org/linux/man-pages/man2/ioprio_set.2.html).
449    ioprio_set = 1073742075,
450    /// See doc at [ioprio_get(2)](https://man7.org/linux/man-pages/man2/ioprio_get.2.html).
451    ioprio_get = 1073742076,
452    /// See doc at [inotify_init(2)](https://man7.org/linux/man-pages/man2/inotify_init.2.html).
453    inotify_init = 1073742077,
454    /// See doc at [inotify_add_watch(2)](https://man7.org/linux/man-pages/man2/inotify_add_watch.2.html).
455    inotify_add_watch = 1073742078,
456    /// See doc at [inotify_rm_watch(2)](https://man7.org/linux/man-pages/man2/inotify_rm_watch.2.html).
457    inotify_rm_watch = 1073742079,
458    /// See doc at [migrate_pages(2)](https://man7.org/linux/man-pages/man2/migrate_pages.2.html).
459    migrate_pages = 1073742080,
460    /// See doc at [openat(2)](https://man7.org/linux/man-pages/man2/openat.2.html).
461    openat = 1073742081,
462    /// See doc at [mkdirat(2)](https://man7.org/linux/man-pages/man2/mkdirat.2.html).
463    mkdirat = 1073742082,
464    /// See doc at [mknodat(2)](https://man7.org/linux/man-pages/man2/mknodat.2.html).
465    mknodat = 1073742083,
466    /// See doc at [fchownat(2)](https://man7.org/linux/man-pages/man2/fchownat.2.html).
467    fchownat = 1073742084,
468    /// See doc at [futimesat(2)](https://man7.org/linux/man-pages/man2/futimesat.2.html).
469    futimesat = 1073742085,
470    /// See doc at [newfstatat(2)](https://man7.org/linux/man-pages/man2/newfstatat.2.html).
471    newfstatat = 1073742086,
472    /// See doc at [unlinkat(2)](https://man7.org/linux/man-pages/man2/unlinkat.2.html).
473    unlinkat = 1073742087,
474    /// See doc at [renameat(2)](https://man7.org/linux/man-pages/man2/renameat.2.html).
475    renameat = 1073742088,
476    /// See doc at [linkat(2)](https://man7.org/linux/man-pages/man2/linkat.2.html).
477    linkat = 1073742089,
478    /// See doc at [symlinkat(2)](https://man7.org/linux/man-pages/man2/symlinkat.2.html).
479    symlinkat = 1073742090,
480    /// See doc at [readlinkat(2)](https://man7.org/linux/man-pages/man2/readlinkat.2.html).
481    readlinkat = 1073742091,
482    /// See doc at [fchmodat(2)](https://man7.org/linux/man-pages/man2/fchmodat.2.html).
483    fchmodat = 1073742092,
484    /// See doc at [faccessat(2)](https://man7.org/linux/man-pages/man2/faccessat.2.html).
485    faccessat = 1073742093,
486    /// See doc at [pselect6(2)](https://man7.org/linux/man-pages/man2/pselect6.2.html).
487    pselect6 = 1073742094,
488    /// See doc at [ppoll(2)](https://man7.org/linux/man-pages/man2/ppoll.2.html).
489    ppoll = 1073742095,
490    /// See doc at [unshare(2)](https://man7.org/linux/man-pages/man2/unshare.2.html).
491    unshare = 1073742096,
492    /// See doc at [splice(2)](https://man7.org/linux/man-pages/man2/splice.2.html).
493    splice = 1073742099,
494    /// See doc at [tee(2)](https://man7.org/linux/man-pages/man2/tee.2.html).
495    tee = 1073742100,
496    /// See doc at [sync_file_range(2)](https://man7.org/linux/man-pages/man2/sync_file_range.2.html).
497    sync_file_range = 1073742101,
498    /// See doc at [utimensat(2)](https://man7.org/linux/man-pages/man2/utimensat.2.html).
499    utimensat = 1073742104,
500    /// See doc at [epoll_pwait(2)](https://man7.org/linux/man-pages/man2/epoll_pwait.2.html).
501    epoll_pwait = 1073742105,
502    /// See doc at [signalfd(2)](https://man7.org/linux/man-pages/man2/signalfd.2.html).
503    signalfd = 1073742106,
504    /// See doc at [timerfd_create(2)](https://man7.org/linux/man-pages/man2/timerfd_create.2.html).
505    timerfd_create = 1073742107,
506    /// See doc at [eventfd(2)](https://man7.org/linux/man-pages/man2/eventfd.2.html).
507    eventfd = 1073742108,
508    /// See doc at [fallocate(2)](https://man7.org/linux/man-pages/man2/fallocate.2.html).
509    fallocate = 1073742109,
510    /// See doc at [timerfd_settime(2)](https://man7.org/linux/man-pages/man2/timerfd_settime.2.html).
511    timerfd_settime = 1073742110,
512    /// See doc at [timerfd_gettime(2)](https://man7.org/linux/man-pages/man2/timerfd_gettime.2.html).
513    timerfd_gettime = 1073742111,
514    /// See doc at [accept4(2)](https://man7.org/linux/man-pages/man2/accept4.2.html).
515    accept4 = 1073742112,
516    /// See doc at [signalfd4(2)](https://man7.org/linux/man-pages/man2/signalfd4.2.html).
517    signalfd4 = 1073742113,
518    /// See doc at [eventfd2(2)](https://man7.org/linux/man-pages/man2/eventfd2.2.html).
519    eventfd2 = 1073742114,
520    /// See doc at [epoll_create1(2)](https://man7.org/linux/man-pages/man2/epoll_create1.2.html).
521    epoll_create1 = 1073742115,
522    /// See doc at [dup3(2)](https://man7.org/linux/man-pages/man2/dup3.2.html).
523    dup3 = 1073742116,
524    /// See doc at [pipe2(2)](https://man7.org/linux/man-pages/man2/pipe2.2.html).
525    pipe2 = 1073742117,
526    /// See doc at [inotify_init1(2)](https://man7.org/linux/man-pages/man2/inotify_init1.2.html).
527    inotify_init1 = 1073742118,
528    /// See doc at [perf_event_open(2)](https://man7.org/linux/man-pages/man2/perf_event_open.2.html).
529    perf_event_open = 1073742122,
530    /// See doc at [fanotify_init(2)](https://man7.org/linux/man-pages/man2/fanotify_init.2.html).
531    fanotify_init = 1073742124,
532    /// See doc at [fanotify_mark(2)](https://man7.org/linux/man-pages/man2/fanotify_mark.2.html).
533    fanotify_mark = 1073742125,
534    /// See doc at [prlimit64(2)](https://man7.org/linux/man-pages/man2/prlimit64.2.html).
535    prlimit64 = 1073742126,
536    /// See doc at [name_to_handle_at(2)](https://man7.org/linux/man-pages/man2/name_to_handle_at.2.html).
537    name_to_handle_at = 1073742127,
538    /// See doc at [open_by_handle_at(2)](https://man7.org/linux/man-pages/man2/open_by_handle_at.2.html).
539    open_by_handle_at = 1073742128,
540    /// See doc at [clock_adjtime(2)](https://man7.org/linux/man-pages/man2/clock_adjtime.2.html).
541    clock_adjtime = 1073742129,
542    /// See doc at [syncfs(2)](https://man7.org/linux/man-pages/man2/syncfs.2.html).
543    syncfs = 1073742130,
544    /// See doc at [setns(2)](https://man7.org/linux/man-pages/man2/setns.2.html).
545    setns = 1073742132,
546    /// See doc at [getcpu(2)](https://man7.org/linux/man-pages/man2/getcpu.2.html).
547    getcpu = 1073742133,
548    /// See doc at [kcmp(2)](https://man7.org/linux/man-pages/man2/kcmp.2.html).
549    kcmp = 1073742136,
550    /// See doc at [finit_module(2)](https://man7.org/linux/man-pages/man2/finit_module.2.html).
551    finit_module = 1073742137,
552    /// See doc at [sched_setattr(2)](https://man7.org/linux/man-pages/man2/sched_setattr.2.html).
553    sched_setattr = 1073742138,
554    /// See doc at [sched_getattr(2)](https://man7.org/linux/man-pages/man2/sched_getattr.2.html).
555    sched_getattr = 1073742139,
556    /// See doc at [renameat2(2)](https://man7.org/linux/man-pages/man2/renameat2.2.html).
557    renameat2 = 1073742140,
558    /// See doc at [seccomp(2)](https://man7.org/linux/man-pages/man2/seccomp.2.html).
559    seccomp = 1073742141,
560    /// See doc at [getrandom(2)](https://man7.org/linux/man-pages/man2/getrandom.2.html).
561    getrandom = 1073742142,
562    /// See doc at [memfd_create(2)](https://man7.org/linux/man-pages/man2/memfd_create.2.html).
563    memfd_create = 1073742143,
564    /// See doc at [kexec_file_load(2)](https://man7.org/linux/man-pages/man2/kexec_file_load.2.html).
565    kexec_file_load = 1073742144,
566    /// See doc at [bpf(2)](https://man7.org/linux/man-pages/man2/bpf.2.html).
567    bpf = 1073742145,
568    /// See doc at [userfaultfd(2)](https://man7.org/linux/man-pages/man2/userfaultfd.2.html).
569    userfaultfd = 1073742147,
570    /// See doc at [membarrier(2)](https://man7.org/linux/man-pages/man2/membarrier.2.html).
571    membarrier = 1073742148,
572    /// See doc at [mlock2(2)](https://man7.org/linux/man-pages/man2/mlock2.2.html).
573    mlock2 = 1073742149,
574    /// See doc at [copy_file_range(2)](https://man7.org/linux/man-pages/man2/copy_file_range.2.html).
575    copy_file_range = 1073742150,
576    /// See doc at [pkey_mprotect(2)](https://man7.org/linux/man-pages/man2/pkey_mprotect.2.html).
577    pkey_mprotect = 1073742153,
578    /// See doc at [pkey_alloc(2)](https://man7.org/linux/man-pages/man2/pkey_alloc.2.html).
579    pkey_alloc = 1073742154,
580    /// See doc at [pkey_free(2)](https://man7.org/linux/man-pages/man2/pkey_free.2.html).
581    pkey_free = 1073742155,
582    /// See doc at [statx(2)](https://man7.org/linux/man-pages/man2/statx.2.html).
583    statx = 1073742156,
584    /// See doc at [io_pgetevents(2)](https://man7.org/linux/man-pages/man2/io_pgetevents.2.html).
585    io_pgetevents = 1073742157,
586    /// See doc at [rseq(2)](https://man7.org/linux/man-pages/man2/rseq.2.html).
587    rseq = 1073742158,
588    /// See doc at [uretprobe(2)](https://man7.org/linux/man-pages/man2/uretprobe.2.html).
589    uretprobe = 1073742159,
590    /// See doc at [pidfd_send_signal(2)](https://man7.org/linux/man-pages/man2/pidfd_send_signal.2.html).
591    pidfd_send_signal = 1073742248,
592    /// See doc at [io_uring_setup(2)](https://man7.org/linux/man-pages/man2/io_uring_setup.2.html).
593    io_uring_setup = 1073742249,
594    /// See doc at [io_uring_enter(2)](https://man7.org/linux/man-pages/man2/io_uring_enter.2.html).
595    io_uring_enter = 1073742250,
596    /// See doc at [io_uring_register(2)](https://man7.org/linux/man-pages/man2/io_uring_register.2.html).
597    io_uring_register = 1073742251,
598    /// See doc at [open_tree(2)](https://man7.org/linux/man-pages/man2/open_tree.2.html).
599    open_tree = 1073742252,
600    /// See doc at [move_mount(2)](https://man7.org/linux/man-pages/man2/move_mount.2.html).
601    move_mount = 1073742253,
602    /// See doc at [fsopen(2)](https://man7.org/linux/man-pages/man2/fsopen.2.html).
603    fsopen = 1073742254,
604    /// See doc at [fsconfig(2)](https://man7.org/linux/man-pages/man2/fsconfig.2.html).
605    fsconfig = 1073742255,
606    /// See doc at [fsmount(2)](https://man7.org/linux/man-pages/man2/fsmount.2.html).
607    fsmount = 1073742256,
608    /// See doc at [fspick(2)](https://man7.org/linux/man-pages/man2/fspick.2.html).
609    fspick = 1073742257,
610    /// See doc at [pidfd_open(2)](https://man7.org/linux/man-pages/man2/pidfd_open.2.html).
611    pidfd_open = 1073742258,
612    /// See doc at [clone3(2)](https://man7.org/linux/man-pages/man2/clone3.2.html).
613    clone3 = 1073742259,
614    /// See doc at [close_range(2)](https://man7.org/linux/man-pages/man2/close_range.2.html).
615    close_range = 1073742260,
616    /// See doc at [openat2(2)](https://man7.org/linux/man-pages/man2/openat2.2.html).
617    openat2 = 1073742261,
618    /// See doc at [pidfd_getfd(2)](https://man7.org/linux/man-pages/man2/pidfd_getfd.2.html).
619    pidfd_getfd = 1073742262,
620    /// See doc at [faccessat2(2)](https://man7.org/linux/man-pages/man2/faccessat2.2.html).
621    faccessat2 = 1073742263,
622    /// See doc at [process_madvise(2)](https://man7.org/linux/man-pages/man2/process_madvise.2.html).
623    process_madvise = 1073742264,
624    /// See doc at [epoll_pwait2(2)](https://man7.org/linux/man-pages/man2/epoll_pwait2.2.html).
625    epoll_pwait2 = 1073742265,
626    /// See doc at [mount_setattr(2)](https://man7.org/linux/man-pages/man2/mount_setattr.2.html).
627    mount_setattr = 1073742266,
628    /// See doc at [quotactl_fd(2)](https://man7.org/linux/man-pages/man2/quotactl_fd.2.html).
629    quotactl_fd = 1073742267,
630    /// See doc at [landlock_create_ruleset(2)](https://man7.org/linux/man-pages/man2/landlock_create_ruleset.2.html).
631    landlock_create_ruleset = 1073742268,
632    /// See doc at [landlock_add_rule(2)](https://man7.org/linux/man-pages/man2/landlock_add_rule.2.html).
633    landlock_add_rule = 1073742269,
634    /// See doc at [landlock_restrict_self(2)](https://man7.org/linux/man-pages/man2/landlock_restrict_self.2.html).
635    landlock_restrict_self = 1073742270,
636    /// See doc at [memfd_secret(2)](https://man7.org/linux/man-pages/man2/memfd_secret.2.html).
637    memfd_secret = 1073742271,
638    /// See doc at [process_mrelease(2)](https://man7.org/linux/man-pages/man2/process_mrelease.2.html).
639    process_mrelease = 1073742272,
640    /// See doc at [futex_waitv(2)](https://man7.org/linux/man-pages/man2/futex_waitv.2.html).
641    futex_waitv = 1073742273,
642    /// See doc at [set_mempolicy_home_node(2)](https://man7.org/linux/man-pages/man2/set_mempolicy_home_node.2.html).
643    set_mempolicy_home_node = 1073742274,
644    /// See doc at [cachestat(2)](https://man7.org/linux/man-pages/man2/cachestat.2.html).
645    cachestat = 1073742275,
646    /// See doc at [fchmodat2(2)](https://man7.org/linux/man-pages/man2/fchmodat2.2.html).
647    fchmodat2 = 1073742276,
648    /// See doc at [map_shadow_stack(2)](https://man7.org/linux/man-pages/man2/map_shadow_stack.2.html).
649    map_shadow_stack = 1073742277,
650    /// See doc at [futex_wake(2)](https://man7.org/linux/man-pages/man2/futex_wake.2.html).
651    futex_wake = 1073742278,
652    /// See doc at [futex_wait(2)](https://man7.org/linux/man-pages/man2/futex_wait.2.html).
653    futex_wait = 1073742279,
654    /// See doc at [futex_requeue(2)](https://man7.org/linux/man-pages/man2/futex_requeue.2.html).
655    futex_requeue = 1073742280,
656    /// See doc at [statmount(2)](https://man7.org/linux/man-pages/man2/statmount.2.html).
657    statmount = 1073742281,
658    /// See doc at [listmount(2)](https://man7.org/linux/man-pages/man2/listmount.2.html).
659    listmount = 1073742282,
660    /// See doc at [lsm_get_self_attr(2)](https://man7.org/linux/man-pages/man2/lsm_get_self_attr.2.html).
661    lsm_get_self_attr = 1073742283,
662    /// See doc at [lsm_set_self_attr(2)](https://man7.org/linux/man-pages/man2/lsm_set_self_attr.2.html).
663    lsm_set_self_attr = 1073742284,
664    /// See doc at [lsm_list_modules(2)](https://man7.org/linux/man-pages/man2/lsm_list_modules.2.html).
665    lsm_list_modules = 1073742285,
666    /// See doc at [mseal(2)](https://man7.org/linux/man-pages/man2/mseal.2.html).
667    mseal = 1073742286,
668    /// See doc at [setxattrat(2)](https://man7.org/linux/man-pages/man2/setxattrat.2.html).
669    setxattrat = 1073742287,
670    /// See doc at [getxattrat(2)](https://man7.org/linux/man-pages/man2/getxattrat.2.html).
671    getxattrat = 1073742288,
672    /// See doc at [listxattrat(2)](https://man7.org/linux/man-pages/man2/listxattrat.2.html).
673    listxattrat = 1073742289,
674    /// See doc at [removexattrat(2)](https://man7.org/linux/man-pages/man2/removexattrat.2.html).
675    removexattrat = 1073742290,
676    /// See doc at [open_tree_attr(2)](https://man7.org/linux/man-pages/man2/open_tree_attr.2.html).
677    open_tree_attr = 1073742291,
678    /// See doc at [file_getattr(2)](https://man7.org/linux/man-pages/man2/file_getattr.2.html).
679    file_getattr = 1073742292,
680    /// See doc at [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html).
681    file_setattr = 1073742293,
682    /// See doc at [rt_sigaction(2)](https://man7.org/linux/man-pages/man2/rt_sigaction.2.html).
683    rt_sigaction = 1073742336,
684    /// See doc at [rt_sigreturn(2)](https://man7.org/linux/man-pages/man2/rt_sigreturn.2.html).
685    rt_sigreturn = 1073742337,
686    /// See doc at [ioctl(2)](https://man7.org/linux/man-pages/man2/ioctl.2.html).
687    ioctl = 1073742338,
688    /// See doc at [readv(2)](https://man7.org/linux/man-pages/man2/readv.2.html).
689    readv = 1073742339,
690    /// See doc at [writev(2)](https://man7.org/linux/man-pages/man2/writev.2.html).
691    writev = 1073742340,
692    /// See doc at [recvfrom(2)](https://man7.org/linux/man-pages/man2/recvfrom.2.html).
693    recvfrom = 1073742341,
694    /// See doc at [sendmsg(2)](https://man7.org/linux/man-pages/man2/sendmsg.2.html).
695    sendmsg = 1073742342,
696    /// See doc at [recvmsg(2)](https://man7.org/linux/man-pages/man2/recvmsg.2.html).
697    recvmsg = 1073742343,
698    /// See doc at [execve(2)](https://man7.org/linux/man-pages/man2/execve.2.html).
699    execve = 1073742344,
700    /// See doc at [ptrace(2)](https://man7.org/linux/man-pages/man2/ptrace.2.html).
701    ptrace = 1073742345,
702    /// See doc at [rt_sigpending(2)](https://man7.org/linux/man-pages/man2/rt_sigpending.2.html).
703    rt_sigpending = 1073742346,
704    /// See doc at [rt_sigtimedwait(2)](https://man7.org/linux/man-pages/man2/rt_sigtimedwait.2.html).
705    rt_sigtimedwait = 1073742347,
706    /// See doc at [rt_sigqueueinfo(2)](https://man7.org/linux/man-pages/man2/rt_sigqueueinfo.2.html).
707    rt_sigqueueinfo = 1073742348,
708    /// See doc at [sigaltstack(2)](https://man7.org/linux/man-pages/man2/sigaltstack.2.html).
709    sigaltstack = 1073742349,
710    /// See doc at [timer_create(2)](https://man7.org/linux/man-pages/man2/timer_create.2.html).
711    timer_create = 1073742350,
712    /// See doc at [mq_notify(2)](https://man7.org/linux/man-pages/man2/mq_notify.2.html).
713    mq_notify = 1073742351,
714    /// See doc at [kexec_load(2)](https://man7.org/linux/man-pages/man2/kexec_load.2.html).
715    kexec_load = 1073742352,
716    /// See doc at [waitid(2)](https://man7.org/linux/man-pages/man2/waitid.2.html).
717    waitid = 1073742353,
718    /// See doc at [set_robust_list(2)](https://man7.org/linux/man-pages/man2/set_robust_list.2.html).
719    set_robust_list = 1073742354,
720    /// See doc at [get_robust_list(2)](https://man7.org/linux/man-pages/man2/get_robust_list.2.html).
721    get_robust_list = 1073742355,
722    /// See doc at [vmsplice(2)](https://man7.org/linux/man-pages/man2/vmsplice.2.html).
723    vmsplice = 1073742356,
724    /// See doc at [move_pages(2)](https://man7.org/linux/man-pages/man2/move_pages.2.html).
725    move_pages = 1073742357,
726    /// See doc at [preadv(2)](https://man7.org/linux/man-pages/man2/preadv.2.html).
727    preadv = 1073742358,
728    /// See doc at [pwritev(2)](https://man7.org/linux/man-pages/man2/pwritev.2.html).
729    pwritev = 1073742359,
730    /// See doc at [rt_tgsigqueueinfo(2)](https://man7.org/linux/man-pages/man2/rt_tgsigqueueinfo.2.html).
731    rt_tgsigqueueinfo = 1073742360,
732    /// See doc at [recvmmsg(2)](https://man7.org/linux/man-pages/man2/recvmmsg.2.html).
733    recvmmsg = 1073742361,
734    /// See doc at [sendmmsg(2)](https://man7.org/linux/man-pages/man2/sendmmsg.2.html).
735    sendmmsg = 1073742362,
736    /// See doc at [process_vm_readv(2)](https://man7.org/linux/man-pages/man2/process_vm_readv.2.html).
737    process_vm_readv = 1073742363,
738    /// See doc at [process_vm_writev(2)](https://man7.org/linux/man-pages/man2/process_vm_writev.2.html).
739    process_vm_writev = 1073742364,
740    /// See doc at [setsockopt(2)](https://man7.org/linux/man-pages/man2/setsockopt.2.html).
741    setsockopt = 1073742365,
742    /// See doc at [getsockopt(2)](https://man7.org/linux/man-pages/man2/getsockopt.2.html).
743    getsockopt = 1073742366,
744    /// See doc at [io_setup(2)](https://man7.org/linux/man-pages/man2/io_setup.2.html).
745    io_setup = 1073742367,
746    /// See doc at [io_submit(2)](https://man7.org/linux/man-pages/man2/io_submit.2.html).
747    io_submit = 1073742368,
748    /// See doc at [execveat(2)](https://man7.org/linux/man-pages/man2/execveat.2.html).
749    execveat = 1073742369,
750    /// See doc at [preadv2(2)](https://man7.org/linux/man-pages/man2/preadv2.2.html).
751    preadv2 = 1073742370,
752    /// See doc at [pwritev2(2)](https://man7.org/linux/man-pages/man2/pwritev2.2.html).
753    pwritev2 = 1073742371,
754}