linux_sysno/mips.rs
1//! Syscalls for arch `mips`.
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 [syscall(2)](https://man7.org/linux/man-pages/man2/syscall.2.html).
13 syscall = 4000,
14 /// See doc at [exit(2)](https://man7.org/linux/man-pages/man2/exit.2.html).
15 exit = 4001,
16 /// See doc at [fork(2)](https://man7.org/linux/man-pages/man2/fork.2.html).
17 fork = 4002,
18 /// See doc at [read(2)](https://man7.org/linux/man-pages/man2/read.2.html).
19 read = 4003,
20 /// See doc at [write(2)](https://man7.org/linux/man-pages/man2/write.2.html).
21 write = 4004,
22 /// See doc at [open(2)](https://man7.org/linux/man-pages/man2/open.2.html).
23 open = 4005,
24 /// See doc at [close(2)](https://man7.org/linux/man-pages/man2/close.2.html).
25 close = 4006,
26 /// See doc at [waitpid(2)](https://man7.org/linux/man-pages/man2/waitpid.2.html).
27 waitpid = 4007,
28 /// See doc at [creat(2)](https://man7.org/linux/man-pages/man2/creat.2.html).
29 creat = 4008,
30 /// See doc at [link(2)](https://man7.org/linux/man-pages/man2/link.2.html).
31 link = 4009,
32 /// See doc at [unlink(2)](https://man7.org/linux/man-pages/man2/unlink.2.html).
33 unlink = 4010,
34 /// See doc at [execve(2)](https://man7.org/linux/man-pages/man2/execve.2.html).
35 execve = 4011,
36 /// See doc at [chdir(2)](https://man7.org/linux/man-pages/man2/chdir.2.html).
37 chdir = 4012,
38 /// See doc at [time(2)](https://man7.org/linux/man-pages/man2/time.2.html).
39 time = 4013,
40 /// See doc at [mknod(2)](https://man7.org/linux/man-pages/man2/mknod.2.html).
41 mknod = 4014,
42 /// See doc at [chmod(2)](https://man7.org/linux/man-pages/man2/chmod.2.html).
43 chmod = 4015,
44 /// See doc at [lchown(2)](https://man7.org/linux/man-pages/man2/lchown.2.html).
45 lchown = 4016,
46 /// See doc at [break(2)](https://man7.org/linux/man-pages/man2/break.2.html).
47 r#break = 4017,
48 /// See doc at [unused18(2)](https://man7.org/linux/man-pages/man2/unused18.2.html).
49 unused18 = 4018,
50 /// See doc at [lseek(2)](https://man7.org/linux/man-pages/man2/lseek.2.html).
51 lseek = 4019,
52 /// See doc at [getpid(2)](https://man7.org/linux/man-pages/man2/getpid.2.html).
53 getpid = 4020,
54 /// See doc at [mount(2)](https://man7.org/linux/man-pages/man2/mount.2.html).
55 mount = 4021,
56 /// See doc at [umount(2)](https://man7.org/linux/man-pages/man2/umount.2.html).
57 umount = 4022,
58 /// See doc at [setuid(2)](https://man7.org/linux/man-pages/man2/setuid.2.html).
59 setuid = 4023,
60 /// See doc at [getuid(2)](https://man7.org/linux/man-pages/man2/getuid.2.html).
61 getuid = 4024,
62 /// See doc at [stime(2)](https://man7.org/linux/man-pages/man2/stime.2.html).
63 stime = 4025,
64 /// See doc at [ptrace(2)](https://man7.org/linux/man-pages/man2/ptrace.2.html).
65 ptrace = 4026,
66 /// See doc at [alarm(2)](https://man7.org/linux/man-pages/man2/alarm.2.html).
67 alarm = 4027,
68 /// See doc at [unused28(2)](https://man7.org/linux/man-pages/man2/unused28.2.html).
69 unused28 = 4028,
70 /// See doc at [pause(2)](https://man7.org/linux/man-pages/man2/pause.2.html).
71 pause = 4029,
72 /// See doc at [utime(2)](https://man7.org/linux/man-pages/man2/utime.2.html).
73 utime = 4030,
74 /// See doc at [stty(2)](https://man7.org/linux/man-pages/man2/stty.2.html).
75 stty = 4031,
76 /// See doc at [gtty(2)](https://man7.org/linux/man-pages/man2/gtty.2.html).
77 gtty = 4032,
78 /// See doc at [access(2)](https://man7.org/linux/man-pages/man2/access.2.html).
79 access = 4033,
80 /// See doc at [nice(2)](https://man7.org/linux/man-pages/man2/nice.2.html).
81 nice = 4034,
82 /// See doc at [ftime(2)](https://man7.org/linux/man-pages/man2/ftime.2.html).
83 ftime = 4035,
84 /// See doc at [sync(2)](https://man7.org/linux/man-pages/man2/sync.2.html).
85 sync = 4036,
86 /// See doc at [kill(2)](https://man7.org/linux/man-pages/man2/kill.2.html).
87 kill = 4037,
88 /// See doc at [rename(2)](https://man7.org/linux/man-pages/man2/rename.2.html).
89 rename = 4038,
90 /// See doc at [mkdir(2)](https://man7.org/linux/man-pages/man2/mkdir.2.html).
91 mkdir = 4039,
92 /// See doc at [rmdir(2)](https://man7.org/linux/man-pages/man2/rmdir.2.html).
93 rmdir = 4040,
94 /// See doc at [dup(2)](https://man7.org/linux/man-pages/man2/dup.2.html).
95 dup = 4041,
96 /// See doc at [pipe(2)](https://man7.org/linux/man-pages/man2/pipe.2.html).
97 pipe = 4042,
98 /// See doc at [times(2)](https://man7.org/linux/man-pages/man2/times.2.html).
99 times = 4043,
100 /// See doc at [prof(2)](https://man7.org/linux/man-pages/man2/prof.2.html).
101 prof = 4044,
102 /// See doc at [brk(2)](https://man7.org/linux/man-pages/man2/brk.2.html).
103 brk = 4045,
104 /// See doc at [setgid(2)](https://man7.org/linux/man-pages/man2/setgid.2.html).
105 setgid = 4046,
106 /// See doc at [getgid(2)](https://man7.org/linux/man-pages/man2/getgid.2.html).
107 getgid = 4047,
108 /// See doc at [signal(2)](https://man7.org/linux/man-pages/man2/signal.2.html).
109 signal = 4048,
110 /// See doc at [geteuid(2)](https://man7.org/linux/man-pages/man2/geteuid.2.html).
111 geteuid = 4049,
112 /// See doc at [getegid(2)](https://man7.org/linux/man-pages/man2/getegid.2.html).
113 getegid = 4050,
114 /// See doc at [acct(2)](https://man7.org/linux/man-pages/man2/acct.2.html).
115 acct = 4051,
116 /// See doc at [umount2(2)](https://man7.org/linux/man-pages/man2/umount2.2.html).
117 umount2 = 4052,
118 /// See doc at [lock(2)](https://man7.org/linux/man-pages/man2/lock.2.html).
119 lock = 4053,
120 /// See doc at [ioctl(2)](https://man7.org/linux/man-pages/man2/ioctl.2.html).
121 ioctl = 4054,
122 /// See doc at [fcntl(2)](https://man7.org/linux/man-pages/man2/fcntl.2.html).
123 fcntl = 4055,
124 /// See doc at [mpx(2)](https://man7.org/linux/man-pages/man2/mpx.2.html).
125 mpx = 4056,
126 /// See doc at [setpgid(2)](https://man7.org/linux/man-pages/man2/setpgid.2.html).
127 setpgid = 4057,
128 /// See doc at [ulimit(2)](https://man7.org/linux/man-pages/man2/ulimit.2.html).
129 ulimit = 4058,
130 /// See doc at [unused59(2)](https://man7.org/linux/man-pages/man2/unused59.2.html).
131 unused59 = 4059,
132 /// See doc at [umask(2)](https://man7.org/linux/man-pages/man2/umask.2.html).
133 umask = 4060,
134 /// See doc at [chroot(2)](https://man7.org/linux/man-pages/man2/chroot.2.html).
135 chroot = 4061,
136 /// See doc at [ustat(2)](https://man7.org/linux/man-pages/man2/ustat.2.html).
137 ustat = 4062,
138 /// See doc at [dup2(2)](https://man7.org/linux/man-pages/man2/dup2.2.html).
139 dup2 = 4063,
140 /// See doc at [getppid(2)](https://man7.org/linux/man-pages/man2/getppid.2.html).
141 getppid = 4064,
142 /// See doc at [getpgrp(2)](https://man7.org/linux/man-pages/man2/getpgrp.2.html).
143 getpgrp = 4065,
144 /// See doc at [setsid(2)](https://man7.org/linux/man-pages/man2/setsid.2.html).
145 setsid = 4066,
146 /// See doc at [sigaction(2)](https://man7.org/linux/man-pages/man2/sigaction.2.html).
147 sigaction = 4067,
148 /// See doc at [sgetmask(2)](https://man7.org/linux/man-pages/man2/sgetmask.2.html).
149 sgetmask = 4068,
150 /// See doc at [ssetmask(2)](https://man7.org/linux/man-pages/man2/ssetmask.2.html).
151 ssetmask = 4069,
152 /// See doc at [setreuid(2)](https://man7.org/linux/man-pages/man2/setreuid.2.html).
153 setreuid = 4070,
154 /// See doc at [setregid(2)](https://man7.org/linux/man-pages/man2/setregid.2.html).
155 setregid = 4071,
156 /// See doc at [sigsuspend(2)](https://man7.org/linux/man-pages/man2/sigsuspend.2.html).
157 sigsuspend = 4072,
158 /// See doc at [sigpending(2)](https://man7.org/linux/man-pages/man2/sigpending.2.html).
159 sigpending = 4073,
160 /// See doc at [sethostname(2)](https://man7.org/linux/man-pages/man2/sethostname.2.html).
161 sethostname = 4074,
162 /// See doc at [setrlimit(2)](https://man7.org/linux/man-pages/man2/setrlimit.2.html).
163 setrlimit = 4075,
164 /// See doc at [getrlimit(2)](https://man7.org/linux/man-pages/man2/getrlimit.2.html).
165 getrlimit = 4076,
166 /// See doc at [getrusage(2)](https://man7.org/linux/man-pages/man2/getrusage.2.html).
167 getrusage = 4077,
168 /// See doc at [gettimeofday(2)](https://man7.org/linux/man-pages/man2/gettimeofday.2.html).
169 gettimeofday = 4078,
170 /// See doc at [settimeofday(2)](https://man7.org/linux/man-pages/man2/settimeofday.2.html).
171 settimeofday = 4079,
172 /// See doc at [getgroups(2)](https://man7.org/linux/man-pages/man2/getgroups.2.html).
173 getgroups = 4080,
174 /// See doc at [setgroups(2)](https://man7.org/linux/man-pages/man2/setgroups.2.html).
175 setgroups = 4081,
176 /// See doc at [reserved82(2)](https://man7.org/linux/man-pages/man2/reserved82.2.html).
177 reserved82 = 4082,
178 /// See doc at [symlink(2)](https://man7.org/linux/man-pages/man2/symlink.2.html).
179 symlink = 4083,
180 /// See doc at [unused84(2)](https://man7.org/linux/man-pages/man2/unused84.2.html).
181 unused84 = 4084,
182 /// See doc at [readlink(2)](https://man7.org/linux/man-pages/man2/readlink.2.html).
183 readlink = 4085,
184 /// See doc at [uselib(2)](https://man7.org/linux/man-pages/man2/uselib.2.html).
185 uselib = 4086,
186 /// See doc at [swapon(2)](https://man7.org/linux/man-pages/man2/swapon.2.html).
187 swapon = 4087,
188 /// See doc at [reboot(2)](https://man7.org/linux/man-pages/man2/reboot.2.html).
189 reboot = 4088,
190 /// See doc at [readdir(2)](https://man7.org/linux/man-pages/man2/readdir.2.html).
191 readdir = 4089,
192 /// See doc at [mmap(2)](https://man7.org/linux/man-pages/man2/mmap.2.html).
193 mmap = 4090,
194 /// See doc at [munmap(2)](https://man7.org/linux/man-pages/man2/munmap.2.html).
195 munmap = 4091,
196 /// See doc at [truncate(2)](https://man7.org/linux/man-pages/man2/truncate.2.html).
197 truncate = 4092,
198 /// See doc at [ftruncate(2)](https://man7.org/linux/man-pages/man2/ftruncate.2.html).
199 ftruncate = 4093,
200 /// See doc at [fchmod(2)](https://man7.org/linux/man-pages/man2/fchmod.2.html).
201 fchmod = 4094,
202 /// See doc at [fchown(2)](https://man7.org/linux/man-pages/man2/fchown.2.html).
203 fchown = 4095,
204 /// See doc at [getpriority(2)](https://man7.org/linux/man-pages/man2/getpriority.2.html).
205 getpriority = 4096,
206 /// See doc at [setpriority(2)](https://man7.org/linux/man-pages/man2/setpriority.2.html).
207 setpriority = 4097,
208 /// See doc at [profil(2)](https://man7.org/linux/man-pages/man2/profil.2.html).
209 profil = 4098,
210 /// See doc at [statfs(2)](https://man7.org/linux/man-pages/man2/statfs.2.html).
211 statfs = 4099,
212 /// See doc at [fstatfs(2)](https://man7.org/linux/man-pages/man2/fstatfs.2.html).
213 fstatfs = 4100,
214 /// See doc at [ioperm(2)](https://man7.org/linux/man-pages/man2/ioperm.2.html).
215 ioperm = 4101,
216 /// See doc at [socketcall(2)](https://man7.org/linux/man-pages/man2/socketcall.2.html).
217 socketcall = 4102,
218 /// See doc at [syslog(2)](https://man7.org/linux/man-pages/man2/syslog.2.html).
219 syslog = 4103,
220 /// See doc at [setitimer(2)](https://man7.org/linux/man-pages/man2/setitimer.2.html).
221 setitimer = 4104,
222 /// See doc at [getitimer(2)](https://man7.org/linux/man-pages/man2/getitimer.2.html).
223 getitimer = 4105,
224 /// See doc at [stat(2)](https://man7.org/linux/man-pages/man2/stat.2.html).
225 stat = 4106,
226 /// See doc at [lstat(2)](https://man7.org/linux/man-pages/man2/lstat.2.html).
227 lstat = 4107,
228 /// See doc at [fstat(2)](https://man7.org/linux/man-pages/man2/fstat.2.html).
229 fstat = 4108,
230 /// See doc at [unused109(2)](https://man7.org/linux/man-pages/man2/unused109.2.html).
231 unused109 = 4109,
232 /// See doc at [iopl(2)](https://man7.org/linux/man-pages/man2/iopl.2.html).
233 iopl = 4110,
234 /// See doc at [vhangup(2)](https://man7.org/linux/man-pages/man2/vhangup.2.html).
235 vhangup = 4111,
236 /// See doc at [idle(2)](https://man7.org/linux/man-pages/man2/idle.2.html).
237 idle = 4112,
238 /// See doc at [vm86(2)](https://man7.org/linux/man-pages/man2/vm86.2.html).
239 vm86 = 4113,
240 /// See doc at [wait4(2)](https://man7.org/linux/man-pages/man2/wait4.2.html).
241 wait4 = 4114,
242 /// See doc at [swapoff(2)](https://man7.org/linux/man-pages/man2/swapoff.2.html).
243 swapoff = 4115,
244 /// See doc at [sysinfo(2)](https://man7.org/linux/man-pages/man2/sysinfo.2.html).
245 sysinfo = 4116,
246 /// See doc at [ipc(2)](https://man7.org/linux/man-pages/man2/ipc.2.html).
247 ipc = 4117,
248 /// See doc at [fsync(2)](https://man7.org/linux/man-pages/man2/fsync.2.html).
249 fsync = 4118,
250 /// See doc at [sigreturn(2)](https://man7.org/linux/man-pages/man2/sigreturn.2.html).
251 sigreturn = 4119,
252 /// See doc at [clone(2)](https://man7.org/linux/man-pages/man2/clone.2.html).
253 clone = 4120,
254 /// See doc at [setdomainname(2)](https://man7.org/linux/man-pages/man2/setdomainname.2.html).
255 setdomainname = 4121,
256 /// See doc at [uname(2)](https://man7.org/linux/man-pages/man2/uname.2.html).
257 uname = 4122,
258 /// See doc at [modify_ldt(2)](https://man7.org/linux/man-pages/man2/modify_ldt.2.html).
259 modify_ldt = 4123,
260 /// See doc at [adjtimex(2)](https://man7.org/linux/man-pages/man2/adjtimex.2.html).
261 adjtimex = 4124,
262 /// See doc at [mprotect(2)](https://man7.org/linux/man-pages/man2/mprotect.2.html).
263 mprotect = 4125,
264 /// See doc at [sigprocmask(2)](https://man7.org/linux/man-pages/man2/sigprocmask.2.html).
265 sigprocmask = 4126,
266 /// See doc at [create_module(2)](https://man7.org/linux/man-pages/man2/create_module.2.html).
267 create_module = 4127,
268 /// See doc at [init_module(2)](https://man7.org/linux/man-pages/man2/init_module.2.html).
269 init_module = 4128,
270 /// See doc at [delete_module(2)](https://man7.org/linux/man-pages/man2/delete_module.2.html).
271 delete_module = 4129,
272 /// See doc at [get_kernel_syms(2)](https://man7.org/linux/man-pages/man2/get_kernel_syms.2.html).
273 get_kernel_syms = 4130,
274 /// See doc at [quotactl(2)](https://man7.org/linux/man-pages/man2/quotactl.2.html).
275 quotactl = 4131,
276 /// See doc at [getpgid(2)](https://man7.org/linux/man-pages/man2/getpgid.2.html).
277 getpgid = 4132,
278 /// See doc at [fchdir(2)](https://man7.org/linux/man-pages/man2/fchdir.2.html).
279 fchdir = 4133,
280 /// See doc at [bdflush(2)](https://man7.org/linux/man-pages/man2/bdflush.2.html).
281 bdflush = 4134,
282 /// See doc at [sysfs(2)](https://man7.org/linux/man-pages/man2/sysfs.2.html).
283 sysfs = 4135,
284 /// See doc at [personality(2)](https://man7.org/linux/man-pages/man2/personality.2.html).
285 personality = 4136,
286 /// See doc at [afs_syscall(2)](https://man7.org/linux/man-pages/man2/afs_syscall.2.html).
287 afs_syscall = 4137,
288 /// See doc at [setfsuid(2)](https://man7.org/linux/man-pages/man2/setfsuid.2.html).
289 setfsuid = 4138,
290 /// See doc at [setfsgid(2)](https://man7.org/linux/man-pages/man2/setfsgid.2.html).
291 setfsgid = 4139,
292 /// See doc at [_llseek(2)](https://man7.org/linux/man-pages/man2/_llseek.2.html).
293 _llseek = 4140,
294 /// See doc at [getdents(2)](https://man7.org/linux/man-pages/man2/getdents.2.html).
295 getdents = 4141,
296 /// See doc at [_newselect(2)](https://man7.org/linux/man-pages/man2/_newselect.2.html).
297 _newselect = 4142,
298 /// See doc at [flock(2)](https://man7.org/linux/man-pages/man2/flock.2.html).
299 flock = 4143,
300 /// See doc at [msync(2)](https://man7.org/linux/man-pages/man2/msync.2.html).
301 msync = 4144,
302 /// See doc at [readv(2)](https://man7.org/linux/man-pages/man2/readv.2.html).
303 readv = 4145,
304 /// See doc at [writev(2)](https://man7.org/linux/man-pages/man2/writev.2.html).
305 writev = 4146,
306 /// See doc at [cacheflush(2)](https://man7.org/linux/man-pages/man2/cacheflush.2.html).
307 cacheflush = 4147,
308 /// See doc at [cachectl(2)](https://man7.org/linux/man-pages/man2/cachectl.2.html).
309 cachectl = 4148,
310 /// See doc at [sysmips(2)](https://man7.org/linux/man-pages/man2/sysmips.2.html).
311 sysmips = 4149,
312 /// See doc at [unused150(2)](https://man7.org/linux/man-pages/man2/unused150.2.html).
313 unused150 = 4150,
314 /// See doc at [getsid(2)](https://man7.org/linux/man-pages/man2/getsid.2.html).
315 getsid = 4151,
316 /// See doc at [fdatasync(2)](https://man7.org/linux/man-pages/man2/fdatasync.2.html).
317 fdatasync = 4152,
318 /// See doc at [_sysctl(2)](https://man7.org/linux/man-pages/man2/_sysctl.2.html).
319 _sysctl = 4153,
320 /// See doc at [mlock(2)](https://man7.org/linux/man-pages/man2/mlock.2.html).
321 mlock = 4154,
322 /// See doc at [munlock(2)](https://man7.org/linux/man-pages/man2/munlock.2.html).
323 munlock = 4155,
324 /// See doc at [mlockall(2)](https://man7.org/linux/man-pages/man2/mlockall.2.html).
325 mlockall = 4156,
326 /// See doc at [munlockall(2)](https://man7.org/linux/man-pages/man2/munlockall.2.html).
327 munlockall = 4157,
328 /// See doc at [sched_setparam(2)](https://man7.org/linux/man-pages/man2/sched_setparam.2.html).
329 sched_setparam = 4158,
330 /// See doc at [sched_getparam(2)](https://man7.org/linux/man-pages/man2/sched_getparam.2.html).
331 sched_getparam = 4159,
332 /// See doc at [sched_setscheduler(2)](https://man7.org/linux/man-pages/man2/sched_setscheduler.2.html).
333 sched_setscheduler = 4160,
334 /// See doc at [sched_getscheduler(2)](https://man7.org/linux/man-pages/man2/sched_getscheduler.2.html).
335 sched_getscheduler = 4161,
336 /// See doc at [sched_yield(2)](https://man7.org/linux/man-pages/man2/sched_yield.2.html).
337 sched_yield = 4162,
338 /// See doc at [sched_get_priority_max(2)](https://man7.org/linux/man-pages/man2/sched_get_priority_max.2.html).
339 sched_get_priority_max = 4163,
340 /// See doc at [sched_get_priority_min(2)](https://man7.org/linux/man-pages/man2/sched_get_priority_min.2.html).
341 sched_get_priority_min = 4164,
342 /// See doc at [sched_rr_get_interval(2)](https://man7.org/linux/man-pages/man2/sched_rr_get_interval.2.html).
343 sched_rr_get_interval = 4165,
344 /// See doc at [nanosleep(2)](https://man7.org/linux/man-pages/man2/nanosleep.2.html).
345 nanosleep = 4166,
346 /// See doc at [mremap(2)](https://man7.org/linux/man-pages/man2/mremap.2.html).
347 mremap = 4167,
348 /// See doc at [accept(2)](https://man7.org/linux/man-pages/man2/accept.2.html).
349 accept = 4168,
350 /// See doc at [bind(2)](https://man7.org/linux/man-pages/man2/bind.2.html).
351 bind = 4169,
352 /// See doc at [connect(2)](https://man7.org/linux/man-pages/man2/connect.2.html).
353 connect = 4170,
354 /// See doc at [getpeername(2)](https://man7.org/linux/man-pages/man2/getpeername.2.html).
355 getpeername = 4171,
356 /// See doc at [getsockname(2)](https://man7.org/linux/man-pages/man2/getsockname.2.html).
357 getsockname = 4172,
358 /// See doc at [getsockopt(2)](https://man7.org/linux/man-pages/man2/getsockopt.2.html).
359 getsockopt = 4173,
360 /// See doc at [listen(2)](https://man7.org/linux/man-pages/man2/listen.2.html).
361 listen = 4174,
362 /// See doc at [recv(2)](https://man7.org/linux/man-pages/man2/recv.2.html).
363 recv = 4175,
364 /// See doc at [recvfrom(2)](https://man7.org/linux/man-pages/man2/recvfrom.2.html).
365 recvfrom = 4176,
366 /// See doc at [recvmsg(2)](https://man7.org/linux/man-pages/man2/recvmsg.2.html).
367 recvmsg = 4177,
368 /// See doc at [send(2)](https://man7.org/linux/man-pages/man2/send.2.html).
369 send = 4178,
370 /// See doc at [sendmsg(2)](https://man7.org/linux/man-pages/man2/sendmsg.2.html).
371 sendmsg = 4179,
372 /// See doc at [sendto(2)](https://man7.org/linux/man-pages/man2/sendto.2.html).
373 sendto = 4180,
374 /// See doc at [setsockopt(2)](https://man7.org/linux/man-pages/man2/setsockopt.2.html).
375 setsockopt = 4181,
376 /// See doc at [shutdown(2)](https://man7.org/linux/man-pages/man2/shutdown.2.html).
377 shutdown = 4182,
378 /// See doc at [socket(2)](https://man7.org/linux/man-pages/man2/socket.2.html).
379 socket = 4183,
380 /// See doc at [socketpair(2)](https://man7.org/linux/man-pages/man2/socketpair.2.html).
381 socketpair = 4184,
382 /// See doc at [setresuid(2)](https://man7.org/linux/man-pages/man2/setresuid.2.html).
383 setresuid = 4185,
384 /// See doc at [getresuid(2)](https://man7.org/linux/man-pages/man2/getresuid.2.html).
385 getresuid = 4186,
386 /// See doc at [query_module(2)](https://man7.org/linux/man-pages/man2/query_module.2.html).
387 query_module = 4187,
388 /// See doc at [poll(2)](https://man7.org/linux/man-pages/man2/poll.2.html).
389 poll = 4188,
390 /// See doc at [nfsservctl(2)](https://man7.org/linux/man-pages/man2/nfsservctl.2.html).
391 nfsservctl = 4189,
392 /// See doc at [setresgid(2)](https://man7.org/linux/man-pages/man2/setresgid.2.html).
393 setresgid = 4190,
394 /// See doc at [getresgid(2)](https://man7.org/linux/man-pages/man2/getresgid.2.html).
395 getresgid = 4191,
396 /// See doc at [prctl(2)](https://man7.org/linux/man-pages/man2/prctl.2.html).
397 prctl = 4192,
398 /// See doc at [rt_sigreturn(2)](https://man7.org/linux/man-pages/man2/rt_sigreturn.2.html).
399 rt_sigreturn = 4193,
400 /// See doc at [rt_sigaction(2)](https://man7.org/linux/man-pages/man2/rt_sigaction.2.html).
401 rt_sigaction = 4194,
402 /// See doc at [rt_sigprocmask(2)](https://man7.org/linux/man-pages/man2/rt_sigprocmask.2.html).
403 rt_sigprocmask = 4195,
404 /// See doc at [rt_sigpending(2)](https://man7.org/linux/man-pages/man2/rt_sigpending.2.html).
405 rt_sigpending = 4196,
406 /// See doc at [rt_sigtimedwait(2)](https://man7.org/linux/man-pages/man2/rt_sigtimedwait.2.html).
407 rt_sigtimedwait = 4197,
408 /// See doc at [rt_sigqueueinfo(2)](https://man7.org/linux/man-pages/man2/rt_sigqueueinfo.2.html).
409 rt_sigqueueinfo = 4198,
410 /// See doc at [rt_sigsuspend(2)](https://man7.org/linux/man-pages/man2/rt_sigsuspend.2.html).
411 rt_sigsuspend = 4199,
412 /// See doc at [pread64(2)](https://man7.org/linux/man-pages/man2/pread64.2.html).
413 pread64 = 4200,
414 /// See doc at [pwrite64(2)](https://man7.org/linux/man-pages/man2/pwrite64.2.html).
415 pwrite64 = 4201,
416 /// See doc at [chown(2)](https://man7.org/linux/man-pages/man2/chown.2.html).
417 chown = 4202,
418 /// See doc at [getcwd(2)](https://man7.org/linux/man-pages/man2/getcwd.2.html).
419 getcwd = 4203,
420 /// See doc at [capget(2)](https://man7.org/linux/man-pages/man2/capget.2.html).
421 capget = 4204,
422 /// See doc at [capset(2)](https://man7.org/linux/man-pages/man2/capset.2.html).
423 capset = 4205,
424 /// See doc at [sigaltstack(2)](https://man7.org/linux/man-pages/man2/sigaltstack.2.html).
425 sigaltstack = 4206,
426 /// See doc at [sendfile(2)](https://man7.org/linux/man-pages/man2/sendfile.2.html).
427 sendfile = 4207,
428 /// See doc at [getpmsg(2)](https://man7.org/linux/man-pages/man2/getpmsg.2.html).
429 getpmsg = 4208,
430 /// See doc at [putpmsg(2)](https://man7.org/linux/man-pages/man2/putpmsg.2.html).
431 putpmsg = 4209,
432 /// See doc at [mmap2(2)](https://man7.org/linux/man-pages/man2/mmap2.2.html).
433 mmap2 = 4210,
434 /// See doc at [truncate64(2)](https://man7.org/linux/man-pages/man2/truncate64.2.html).
435 truncate64 = 4211,
436 /// See doc at [ftruncate64(2)](https://man7.org/linux/man-pages/man2/ftruncate64.2.html).
437 ftruncate64 = 4212,
438 /// See doc at [stat64(2)](https://man7.org/linux/man-pages/man2/stat64.2.html).
439 stat64 = 4213,
440 /// See doc at [lstat64(2)](https://man7.org/linux/man-pages/man2/lstat64.2.html).
441 lstat64 = 4214,
442 /// See doc at [fstat64(2)](https://man7.org/linux/man-pages/man2/fstat64.2.html).
443 fstat64 = 4215,
444 /// See doc at [pivot_root(2)](https://man7.org/linux/man-pages/man2/pivot_root.2.html).
445 pivot_root = 4216,
446 /// See doc at [mincore(2)](https://man7.org/linux/man-pages/man2/mincore.2.html).
447 mincore = 4217,
448 /// See doc at [madvise(2)](https://man7.org/linux/man-pages/man2/madvise.2.html).
449 madvise = 4218,
450 /// See doc at [getdents64(2)](https://man7.org/linux/man-pages/man2/getdents64.2.html).
451 getdents64 = 4219,
452 /// See doc at [fcntl64(2)](https://man7.org/linux/man-pages/man2/fcntl64.2.html).
453 fcntl64 = 4220,
454 /// See doc at [reserved221(2)](https://man7.org/linux/man-pages/man2/reserved221.2.html).
455 reserved221 = 4221,
456 /// See doc at [gettid(2)](https://man7.org/linux/man-pages/man2/gettid.2.html).
457 gettid = 4222,
458 /// See doc at [readahead(2)](https://man7.org/linux/man-pages/man2/readahead.2.html).
459 readahead = 4223,
460 /// See doc at [setxattr(2)](https://man7.org/linux/man-pages/man2/setxattr.2.html).
461 setxattr = 4224,
462 /// See doc at [lsetxattr(2)](https://man7.org/linux/man-pages/man2/lsetxattr.2.html).
463 lsetxattr = 4225,
464 /// See doc at [fsetxattr(2)](https://man7.org/linux/man-pages/man2/fsetxattr.2.html).
465 fsetxattr = 4226,
466 /// See doc at [getxattr(2)](https://man7.org/linux/man-pages/man2/getxattr.2.html).
467 getxattr = 4227,
468 /// See doc at [lgetxattr(2)](https://man7.org/linux/man-pages/man2/lgetxattr.2.html).
469 lgetxattr = 4228,
470 /// See doc at [fgetxattr(2)](https://man7.org/linux/man-pages/man2/fgetxattr.2.html).
471 fgetxattr = 4229,
472 /// See doc at [listxattr(2)](https://man7.org/linux/man-pages/man2/listxattr.2.html).
473 listxattr = 4230,
474 /// See doc at [llistxattr(2)](https://man7.org/linux/man-pages/man2/llistxattr.2.html).
475 llistxattr = 4231,
476 /// See doc at [flistxattr(2)](https://man7.org/linux/man-pages/man2/flistxattr.2.html).
477 flistxattr = 4232,
478 /// See doc at [removexattr(2)](https://man7.org/linux/man-pages/man2/removexattr.2.html).
479 removexattr = 4233,
480 /// See doc at [lremovexattr(2)](https://man7.org/linux/man-pages/man2/lremovexattr.2.html).
481 lremovexattr = 4234,
482 /// See doc at [fremovexattr(2)](https://man7.org/linux/man-pages/man2/fremovexattr.2.html).
483 fremovexattr = 4235,
484 /// See doc at [tkill(2)](https://man7.org/linux/man-pages/man2/tkill.2.html).
485 tkill = 4236,
486 /// See doc at [sendfile64(2)](https://man7.org/linux/man-pages/man2/sendfile64.2.html).
487 sendfile64 = 4237,
488 /// See doc at [futex(2)](https://man7.org/linux/man-pages/man2/futex.2.html).
489 futex = 4238,
490 /// See doc at [sched_setaffinity(2)](https://man7.org/linux/man-pages/man2/sched_setaffinity.2.html).
491 sched_setaffinity = 4239,
492 /// See doc at [sched_getaffinity(2)](https://man7.org/linux/man-pages/man2/sched_getaffinity.2.html).
493 sched_getaffinity = 4240,
494 /// See doc at [io_setup(2)](https://man7.org/linux/man-pages/man2/io_setup.2.html).
495 io_setup = 4241,
496 /// See doc at [io_destroy(2)](https://man7.org/linux/man-pages/man2/io_destroy.2.html).
497 io_destroy = 4242,
498 /// See doc at [io_getevents(2)](https://man7.org/linux/man-pages/man2/io_getevents.2.html).
499 io_getevents = 4243,
500 /// See doc at [io_submit(2)](https://man7.org/linux/man-pages/man2/io_submit.2.html).
501 io_submit = 4244,
502 /// See doc at [io_cancel(2)](https://man7.org/linux/man-pages/man2/io_cancel.2.html).
503 io_cancel = 4245,
504 /// See doc at [exit_group(2)](https://man7.org/linux/man-pages/man2/exit_group.2.html).
505 exit_group = 4246,
506 /// See doc at [lookup_dcookie(2)](https://man7.org/linux/man-pages/man2/lookup_dcookie.2.html).
507 lookup_dcookie = 4247,
508 /// See doc at [epoll_create(2)](https://man7.org/linux/man-pages/man2/epoll_create.2.html).
509 epoll_create = 4248,
510 /// See doc at [epoll_ctl(2)](https://man7.org/linux/man-pages/man2/epoll_ctl.2.html).
511 epoll_ctl = 4249,
512 /// See doc at [epoll_wait(2)](https://man7.org/linux/man-pages/man2/epoll_wait.2.html).
513 epoll_wait = 4250,
514 /// See doc at [remap_file_pages(2)](https://man7.org/linux/man-pages/man2/remap_file_pages.2.html).
515 remap_file_pages = 4251,
516 /// See doc at [set_tid_address(2)](https://man7.org/linux/man-pages/man2/set_tid_address.2.html).
517 set_tid_address = 4252,
518 /// See doc at [restart_syscall(2)](https://man7.org/linux/man-pages/man2/restart_syscall.2.html).
519 restart_syscall = 4253,
520 /// See doc at [fadvise64(2)](https://man7.org/linux/man-pages/man2/fadvise64.2.html).
521 fadvise64 = 4254,
522 /// See doc at [statfs64(2)](https://man7.org/linux/man-pages/man2/statfs64.2.html).
523 statfs64 = 4255,
524 /// See doc at [fstatfs64(2)](https://man7.org/linux/man-pages/man2/fstatfs64.2.html).
525 fstatfs64 = 4256,
526 /// See doc at [timer_create(2)](https://man7.org/linux/man-pages/man2/timer_create.2.html).
527 timer_create = 4257,
528 /// See doc at [timer_settime(2)](https://man7.org/linux/man-pages/man2/timer_settime.2.html).
529 timer_settime = 4258,
530 /// See doc at [timer_gettime(2)](https://man7.org/linux/man-pages/man2/timer_gettime.2.html).
531 timer_gettime = 4259,
532 /// See doc at [timer_getoverrun(2)](https://man7.org/linux/man-pages/man2/timer_getoverrun.2.html).
533 timer_getoverrun = 4260,
534 /// See doc at [timer_delete(2)](https://man7.org/linux/man-pages/man2/timer_delete.2.html).
535 timer_delete = 4261,
536 /// See doc at [clock_settime(2)](https://man7.org/linux/man-pages/man2/clock_settime.2.html).
537 clock_settime = 4262,
538 /// See doc at [clock_gettime(2)](https://man7.org/linux/man-pages/man2/clock_gettime.2.html).
539 clock_gettime = 4263,
540 /// See doc at [clock_getres(2)](https://man7.org/linux/man-pages/man2/clock_getres.2.html).
541 clock_getres = 4264,
542 /// See doc at [clock_nanosleep(2)](https://man7.org/linux/man-pages/man2/clock_nanosleep.2.html).
543 clock_nanosleep = 4265,
544 /// See doc at [tgkill(2)](https://man7.org/linux/man-pages/man2/tgkill.2.html).
545 tgkill = 4266,
546 /// See doc at [utimes(2)](https://man7.org/linux/man-pages/man2/utimes.2.html).
547 utimes = 4267,
548 /// See doc at [mbind(2)](https://man7.org/linux/man-pages/man2/mbind.2.html).
549 mbind = 4268,
550 /// See doc at [get_mempolicy(2)](https://man7.org/linux/man-pages/man2/get_mempolicy.2.html).
551 get_mempolicy = 4269,
552 /// See doc at [set_mempolicy(2)](https://man7.org/linux/man-pages/man2/set_mempolicy.2.html).
553 set_mempolicy = 4270,
554 /// See doc at [mq_open(2)](https://man7.org/linux/man-pages/man2/mq_open.2.html).
555 mq_open = 4271,
556 /// See doc at [mq_unlink(2)](https://man7.org/linux/man-pages/man2/mq_unlink.2.html).
557 mq_unlink = 4272,
558 /// See doc at [mq_timedsend(2)](https://man7.org/linux/man-pages/man2/mq_timedsend.2.html).
559 mq_timedsend = 4273,
560 /// See doc at [mq_timedreceive(2)](https://man7.org/linux/man-pages/man2/mq_timedreceive.2.html).
561 mq_timedreceive = 4274,
562 /// See doc at [mq_notify(2)](https://man7.org/linux/man-pages/man2/mq_notify.2.html).
563 mq_notify = 4275,
564 /// See doc at [mq_getsetattr(2)](https://man7.org/linux/man-pages/man2/mq_getsetattr.2.html).
565 mq_getsetattr = 4276,
566 /// See doc at [vserver(2)](https://man7.org/linux/man-pages/man2/vserver.2.html).
567 vserver = 4277,
568 /// See doc at [waitid(2)](https://man7.org/linux/man-pages/man2/waitid.2.html).
569 waitid = 4278,
570 /// See doc at [add_key(2)](https://man7.org/linux/man-pages/man2/add_key.2.html).
571 add_key = 4280,
572 /// See doc at [request_key(2)](https://man7.org/linux/man-pages/man2/request_key.2.html).
573 request_key = 4281,
574 /// See doc at [keyctl(2)](https://man7.org/linux/man-pages/man2/keyctl.2.html).
575 keyctl = 4282,
576 /// See doc at [set_thread_area(2)](https://man7.org/linux/man-pages/man2/set_thread_area.2.html).
577 set_thread_area = 4283,
578 /// See doc at [inotify_init(2)](https://man7.org/linux/man-pages/man2/inotify_init.2.html).
579 inotify_init = 4284,
580 /// See doc at [inotify_add_watch(2)](https://man7.org/linux/man-pages/man2/inotify_add_watch.2.html).
581 inotify_add_watch = 4285,
582 /// See doc at [inotify_rm_watch(2)](https://man7.org/linux/man-pages/man2/inotify_rm_watch.2.html).
583 inotify_rm_watch = 4286,
584 /// See doc at [migrate_pages(2)](https://man7.org/linux/man-pages/man2/migrate_pages.2.html).
585 migrate_pages = 4287,
586 /// See doc at [openat(2)](https://man7.org/linux/man-pages/man2/openat.2.html).
587 openat = 4288,
588 /// See doc at [mkdirat(2)](https://man7.org/linux/man-pages/man2/mkdirat.2.html).
589 mkdirat = 4289,
590 /// See doc at [mknodat(2)](https://man7.org/linux/man-pages/man2/mknodat.2.html).
591 mknodat = 4290,
592 /// See doc at [fchownat(2)](https://man7.org/linux/man-pages/man2/fchownat.2.html).
593 fchownat = 4291,
594 /// See doc at [futimesat(2)](https://man7.org/linux/man-pages/man2/futimesat.2.html).
595 futimesat = 4292,
596 /// See doc at [fstatat64(2)](https://man7.org/linux/man-pages/man2/fstatat64.2.html).
597 fstatat64 = 4293,
598 /// See doc at [unlinkat(2)](https://man7.org/linux/man-pages/man2/unlinkat.2.html).
599 unlinkat = 4294,
600 /// See doc at [renameat(2)](https://man7.org/linux/man-pages/man2/renameat.2.html).
601 renameat = 4295,
602 /// See doc at [linkat(2)](https://man7.org/linux/man-pages/man2/linkat.2.html).
603 linkat = 4296,
604 /// See doc at [symlinkat(2)](https://man7.org/linux/man-pages/man2/symlinkat.2.html).
605 symlinkat = 4297,
606 /// See doc at [readlinkat(2)](https://man7.org/linux/man-pages/man2/readlinkat.2.html).
607 readlinkat = 4298,
608 /// See doc at [fchmodat(2)](https://man7.org/linux/man-pages/man2/fchmodat.2.html).
609 fchmodat = 4299,
610 /// See doc at [faccessat(2)](https://man7.org/linux/man-pages/man2/faccessat.2.html).
611 faccessat = 4300,
612 /// See doc at [pselect6(2)](https://man7.org/linux/man-pages/man2/pselect6.2.html).
613 pselect6 = 4301,
614 /// See doc at [ppoll(2)](https://man7.org/linux/man-pages/man2/ppoll.2.html).
615 ppoll = 4302,
616 /// See doc at [unshare(2)](https://man7.org/linux/man-pages/man2/unshare.2.html).
617 unshare = 4303,
618 /// See doc at [splice(2)](https://man7.org/linux/man-pages/man2/splice.2.html).
619 splice = 4304,
620 /// See doc at [sync_file_range(2)](https://man7.org/linux/man-pages/man2/sync_file_range.2.html).
621 sync_file_range = 4305,
622 /// See doc at [tee(2)](https://man7.org/linux/man-pages/man2/tee.2.html).
623 tee = 4306,
624 /// See doc at [vmsplice(2)](https://man7.org/linux/man-pages/man2/vmsplice.2.html).
625 vmsplice = 4307,
626 /// See doc at [move_pages(2)](https://man7.org/linux/man-pages/man2/move_pages.2.html).
627 move_pages = 4308,
628 /// See doc at [set_robust_list(2)](https://man7.org/linux/man-pages/man2/set_robust_list.2.html).
629 set_robust_list = 4309,
630 /// See doc at [get_robust_list(2)](https://man7.org/linux/man-pages/man2/get_robust_list.2.html).
631 get_robust_list = 4310,
632 /// See doc at [kexec_load(2)](https://man7.org/linux/man-pages/man2/kexec_load.2.html).
633 kexec_load = 4311,
634 /// See doc at [getcpu(2)](https://man7.org/linux/man-pages/man2/getcpu.2.html).
635 getcpu = 4312,
636 /// See doc at [epoll_pwait(2)](https://man7.org/linux/man-pages/man2/epoll_pwait.2.html).
637 epoll_pwait = 4313,
638 /// See doc at [ioprio_set(2)](https://man7.org/linux/man-pages/man2/ioprio_set.2.html).
639 ioprio_set = 4314,
640 /// See doc at [ioprio_get(2)](https://man7.org/linux/man-pages/man2/ioprio_get.2.html).
641 ioprio_get = 4315,
642 /// See doc at [utimensat(2)](https://man7.org/linux/man-pages/man2/utimensat.2.html).
643 utimensat = 4316,
644 /// See doc at [signalfd(2)](https://man7.org/linux/man-pages/man2/signalfd.2.html).
645 signalfd = 4317,
646 /// See doc at [timerfd(2)](https://man7.org/linux/man-pages/man2/timerfd.2.html).
647 timerfd = 4318,
648 /// See doc at [eventfd(2)](https://man7.org/linux/man-pages/man2/eventfd.2.html).
649 eventfd = 4319,
650 /// See doc at [fallocate(2)](https://man7.org/linux/man-pages/man2/fallocate.2.html).
651 fallocate = 4320,
652 /// See doc at [timerfd_create(2)](https://man7.org/linux/man-pages/man2/timerfd_create.2.html).
653 timerfd_create = 4321,
654 /// See doc at [timerfd_gettime(2)](https://man7.org/linux/man-pages/man2/timerfd_gettime.2.html).
655 timerfd_gettime = 4322,
656 /// See doc at [timerfd_settime(2)](https://man7.org/linux/man-pages/man2/timerfd_settime.2.html).
657 timerfd_settime = 4323,
658 /// See doc at [signalfd4(2)](https://man7.org/linux/man-pages/man2/signalfd4.2.html).
659 signalfd4 = 4324,
660 /// See doc at [eventfd2(2)](https://man7.org/linux/man-pages/man2/eventfd2.2.html).
661 eventfd2 = 4325,
662 /// See doc at [epoll_create1(2)](https://man7.org/linux/man-pages/man2/epoll_create1.2.html).
663 epoll_create1 = 4326,
664 /// See doc at [dup3(2)](https://man7.org/linux/man-pages/man2/dup3.2.html).
665 dup3 = 4327,
666 /// See doc at [pipe2(2)](https://man7.org/linux/man-pages/man2/pipe2.2.html).
667 pipe2 = 4328,
668 /// See doc at [inotify_init1(2)](https://man7.org/linux/man-pages/man2/inotify_init1.2.html).
669 inotify_init1 = 4329,
670 /// See doc at [preadv(2)](https://man7.org/linux/man-pages/man2/preadv.2.html).
671 preadv = 4330,
672 /// See doc at [pwritev(2)](https://man7.org/linux/man-pages/man2/pwritev.2.html).
673 pwritev = 4331,
674 /// See doc at [rt_tgsigqueueinfo(2)](https://man7.org/linux/man-pages/man2/rt_tgsigqueueinfo.2.html).
675 rt_tgsigqueueinfo = 4332,
676 /// See doc at [perf_event_open(2)](https://man7.org/linux/man-pages/man2/perf_event_open.2.html).
677 perf_event_open = 4333,
678 /// See doc at [accept4(2)](https://man7.org/linux/man-pages/man2/accept4.2.html).
679 accept4 = 4334,
680 /// See doc at [recvmmsg(2)](https://man7.org/linux/man-pages/man2/recvmmsg.2.html).
681 recvmmsg = 4335,
682 /// See doc at [fanotify_init(2)](https://man7.org/linux/man-pages/man2/fanotify_init.2.html).
683 fanotify_init = 4336,
684 /// See doc at [fanotify_mark(2)](https://man7.org/linux/man-pages/man2/fanotify_mark.2.html).
685 fanotify_mark = 4337,
686 /// See doc at [prlimit64(2)](https://man7.org/linux/man-pages/man2/prlimit64.2.html).
687 prlimit64 = 4338,
688 /// See doc at [name_to_handle_at(2)](https://man7.org/linux/man-pages/man2/name_to_handle_at.2.html).
689 name_to_handle_at = 4339,
690 /// See doc at [open_by_handle_at(2)](https://man7.org/linux/man-pages/man2/open_by_handle_at.2.html).
691 open_by_handle_at = 4340,
692 /// See doc at [clock_adjtime(2)](https://man7.org/linux/man-pages/man2/clock_adjtime.2.html).
693 clock_adjtime = 4341,
694 /// See doc at [syncfs(2)](https://man7.org/linux/man-pages/man2/syncfs.2.html).
695 syncfs = 4342,
696 /// See doc at [sendmmsg(2)](https://man7.org/linux/man-pages/man2/sendmmsg.2.html).
697 sendmmsg = 4343,
698 /// See doc at [setns(2)](https://man7.org/linux/man-pages/man2/setns.2.html).
699 setns = 4344,
700 /// See doc at [process_vm_readv(2)](https://man7.org/linux/man-pages/man2/process_vm_readv.2.html).
701 process_vm_readv = 4345,
702 /// See doc at [process_vm_writev(2)](https://man7.org/linux/man-pages/man2/process_vm_writev.2.html).
703 process_vm_writev = 4346,
704 /// See doc at [kcmp(2)](https://man7.org/linux/man-pages/man2/kcmp.2.html).
705 kcmp = 4347,
706 /// See doc at [finit_module(2)](https://man7.org/linux/man-pages/man2/finit_module.2.html).
707 finit_module = 4348,
708 /// See doc at [sched_setattr(2)](https://man7.org/linux/man-pages/man2/sched_setattr.2.html).
709 sched_setattr = 4349,
710 /// See doc at [sched_getattr(2)](https://man7.org/linux/man-pages/man2/sched_getattr.2.html).
711 sched_getattr = 4350,
712 /// See doc at [renameat2(2)](https://man7.org/linux/man-pages/man2/renameat2.2.html).
713 renameat2 = 4351,
714 /// See doc at [seccomp(2)](https://man7.org/linux/man-pages/man2/seccomp.2.html).
715 seccomp = 4352,
716 /// See doc at [getrandom(2)](https://man7.org/linux/man-pages/man2/getrandom.2.html).
717 getrandom = 4353,
718 /// See doc at [memfd_create(2)](https://man7.org/linux/man-pages/man2/memfd_create.2.html).
719 memfd_create = 4354,
720 /// See doc at [bpf(2)](https://man7.org/linux/man-pages/man2/bpf.2.html).
721 bpf = 4355,
722 /// See doc at [execveat(2)](https://man7.org/linux/man-pages/man2/execveat.2.html).
723 execveat = 4356,
724 /// See doc at [userfaultfd(2)](https://man7.org/linux/man-pages/man2/userfaultfd.2.html).
725 userfaultfd = 4357,
726 /// See doc at [membarrier(2)](https://man7.org/linux/man-pages/man2/membarrier.2.html).
727 membarrier = 4358,
728 /// See doc at [mlock2(2)](https://man7.org/linux/man-pages/man2/mlock2.2.html).
729 mlock2 = 4359,
730 /// See doc at [copy_file_range(2)](https://man7.org/linux/man-pages/man2/copy_file_range.2.html).
731 copy_file_range = 4360,
732 /// See doc at [preadv2(2)](https://man7.org/linux/man-pages/man2/preadv2.2.html).
733 preadv2 = 4361,
734 /// See doc at [pwritev2(2)](https://man7.org/linux/man-pages/man2/pwritev2.2.html).
735 pwritev2 = 4362,
736 /// See doc at [pkey_mprotect(2)](https://man7.org/linux/man-pages/man2/pkey_mprotect.2.html).
737 pkey_mprotect = 4363,
738 /// See doc at [pkey_alloc(2)](https://man7.org/linux/man-pages/man2/pkey_alloc.2.html).
739 pkey_alloc = 4364,
740 /// See doc at [pkey_free(2)](https://man7.org/linux/man-pages/man2/pkey_free.2.html).
741 pkey_free = 4365,
742 /// See doc at [statx(2)](https://man7.org/linux/man-pages/man2/statx.2.html).
743 statx = 4366,
744 /// See doc at [rseq(2)](https://man7.org/linux/man-pages/man2/rseq.2.html).
745 rseq = 4367,
746 /// See doc at [io_pgetevents(2)](https://man7.org/linux/man-pages/man2/io_pgetevents.2.html).
747 io_pgetevents = 4368,
748 /// See doc at [semget(2)](https://man7.org/linux/man-pages/man2/semget.2.html).
749 semget = 4393,
750 /// See doc at [semctl(2)](https://man7.org/linux/man-pages/man2/semctl.2.html).
751 semctl = 4394,
752 /// See doc at [shmget(2)](https://man7.org/linux/man-pages/man2/shmget.2.html).
753 shmget = 4395,
754 /// See doc at [shmctl(2)](https://man7.org/linux/man-pages/man2/shmctl.2.html).
755 shmctl = 4396,
756 /// See doc at [shmat(2)](https://man7.org/linux/man-pages/man2/shmat.2.html).
757 shmat = 4397,
758 /// See doc at [shmdt(2)](https://man7.org/linux/man-pages/man2/shmdt.2.html).
759 shmdt = 4398,
760 /// See doc at [msgget(2)](https://man7.org/linux/man-pages/man2/msgget.2.html).
761 msgget = 4399,
762 /// See doc at [msgsnd(2)](https://man7.org/linux/man-pages/man2/msgsnd.2.html).
763 msgsnd = 4400,
764 /// See doc at [msgrcv(2)](https://man7.org/linux/man-pages/man2/msgrcv.2.html).
765 msgrcv = 4401,
766 /// See doc at [msgctl(2)](https://man7.org/linux/man-pages/man2/msgctl.2.html).
767 msgctl = 4402,
768 /// See doc at [clock_gettime64(2)](https://man7.org/linux/man-pages/man2/clock_gettime64.2.html).
769 clock_gettime64 = 4403,
770 /// See doc at [clock_settime64(2)](https://man7.org/linux/man-pages/man2/clock_settime64.2.html).
771 clock_settime64 = 4404,
772 /// See doc at [clock_adjtime64(2)](https://man7.org/linux/man-pages/man2/clock_adjtime64.2.html).
773 clock_adjtime64 = 4405,
774 /// See doc at [clock_getres_time64(2)](https://man7.org/linux/man-pages/man2/clock_getres_time64.2.html).
775 clock_getres_time64 = 4406,
776 /// See doc at [clock_nanosleep_time64(2)](https://man7.org/linux/man-pages/man2/clock_nanosleep_time64.2.html).
777 clock_nanosleep_time64 = 4407,
778 /// See doc at [timer_gettime64(2)](https://man7.org/linux/man-pages/man2/timer_gettime64.2.html).
779 timer_gettime64 = 4408,
780 /// See doc at [timer_settime64(2)](https://man7.org/linux/man-pages/man2/timer_settime64.2.html).
781 timer_settime64 = 4409,
782 /// See doc at [timerfd_gettime64(2)](https://man7.org/linux/man-pages/man2/timerfd_gettime64.2.html).
783 timerfd_gettime64 = 4410,
784 /// See doc at [timerfd_settime64(2)](https://man7.org/linux/man-pages/man2/timerfd_settime64.2.html).
785 timerfd_settime64 = 4411,
786 /// See doc at [utimensat_time64(2)](https://man7.org/linux/man-pages/man2/utimensat_time64.2.html).
787 utimensat_time64 = 4412,
788 /// See doc at [pselect6_time64(2)](https://man7.org/linux/man-pages/man2/pselect6_time64.2.html).
789 pselect6_time64 = 4413,
790 /// See doc at [ppoll_time64(2)](https://man7.org/linux/man-pages/man2/ppoll_time64.2.html).
791 ppoll_time64 = 4414,
792 /// See doc at [io_pgetevents_time64(2)](https://man7.org/linux/man-pages/man2/io_pgetevents_time64.2.html).
793 io_pgetevents_time64 = 4416,
794 /// See doc at [recvmmsg_time64(2)](https://man7.org/linux/man-pages/man2/recvmmsg_time64.2.html).
795 recvmmsg_time64 = 4417,
796 /// See doc at [mq_timedsend_time64(2)](https://man7.org/linux/man-pages/man2/mq_timedsend_time64.2.html).
797 mq_timedsend_time64 = 4418,
798 /// See doc at [mq_timedreceive_time64(2)](https://man7.org/linux/man-pages/man2/mq_timedreceive_time64.2.html).
799 mq_timedreceive_time64 = 4419,
800 /// See doc at [semtimedop_time64(2)](https://man7.org/linux/man-pages/man2/semtimedop_time64.2.html).
801 semtimedop_time64 = 4420,
802 /// See doc at [rt_sigtimedwait_time64(2)](https://man7.org/linux/man-pages/man2/rt_sigtimedwait_time64.2.html).
803 rt_sigtimedwait_time64 = 4421,
804 /// See doc at [futex_time64(2)](https://man7.org/linux/man-pages/man2/futex_time64.2.html).
805 futex_time64 = 4422,
806 /// See doc at [sched_rr_get_interval_time64(2)](https://man7.org/linux/man-pages/man2/sched_rr_get_interval_time64.2.html).
807 sched_rr_get_interval_time64 = 4423,
808 /// See doc at [pidfd_send_signal(2)](https://man7.org/linux/man-pages/man2/pidfd_send_signal.2.html).
809 pidfd_send_signal = 4424,
810 /// See doc at [io_uring_setup(2)](https://man7.org/linux/man-pages/man2/io_uring_setup.2.html).
811 io_uring_setup = 4425,
812 /// See doc at [io_uring_enter(2)](https://man7.org/linux/man-pages/man2/io_uring_enter.2.html).
813 io_uring_enter = 4426,
814 /// See doc at [io_uring_register(2)](https://man7.org/linux/man-pages/man2/io_uring_register.2.html).
815 io_uring_register = 4427,
816 /// See doc at [open_tree(2)](https://man7.org/linux/man-pages/man2/open_tree.2.html).
817 open_tree = 4428,
818 /// See doc at [move_mount(2)](https://man7.org/linux/man-pages/man2/move_mount.2.html).
819 move_mount = 4429,
820 /// See doc at [fsopen(2)](https://man7.org/linux/man-pages/man2/fsopen.2.html).
821 fsopen = 4430,
822 /// See doc at [fsconfig(2)](https://man7.org/linux/man-pages/man2/fsconfig.2.html).
823 fsconfig = 4431,
824 /// See doc at [fsmount(2)](https://man7.org/linux/man-pages/man2/fsmount.2.html).
825 fsmount = 4432,
826 /// See doc at [fspick(2)](https://man7.org/linux/man-pages/man2/fspick.2.html).
827 fspick = 4433,
828 /// See doc at [pidfd_open(2)](https://man7.org/linux/man-pages/man2/pidfd_open.2.html).
829 pidfd_open = 4434,
830 /// See doc at [clone3(2)](https://man7.org/linux/man-pages/man2/clone3.2.html).
831 clone3 = 4435,
832 /// See doc at [close_range(2)](https://man7.org/linux/man-pages/man2/close_range.2.html).
833 close_range = 4436,
834 /// See doc at [openat2(2)](https://man7.org/linux/man-pages/man2/openat2.2.html).
835 openat2 = 4437,
836 /// See doc at [pidfd_getfd(2)](https://man7.org/linux/man-pages/man2/pidfd_getfd.2.html).
837 pidfd_getfd = 4438,
838 /// See doc at [faccessat2(2)](https://man7.org/linux/man-pages/man2/faccessat2.2.html).
839 faccessat2 = 4439,
840 /// See doc at [process_madvise(2)](https://man7.org/linux/man-pages/man2/process_madvise.2.html).
841 process_madvise = 4440,
842 /// See doc at [epoll_pwait2(2)](https://man7.org/linux/man-pages/man2/epoll_pwait2.2.html).
843 epoll_pwait2 = 4441,
844 /// See doc at [mount_setattr(2)](https://man7.org/linux/man-pages/man2/mount_setattr.2.html).
845 mount_setattr = 4442,
846 /// See doc at [quotactl_fd(2)](https://man7.org/linux/man-pages/man2/quotactl_fd.2.html).
847 quotactl_fd = 4443,
848 /// See doc at [landlock_create_ruleset(2)](https://man7.org/linux/man-pages/man2/landlock_create_ruleset.2.html).
849 landlock_create_ruleset = 4444,
850 /// See doc at [landlock_add_rule(2)](https://man7.org/linux/man-pages/man2/landlock_add_rule.2.html).
851 landlock_add_rule = 4445,
852 /// See doc at [landlock_restrict_self(2)](https://man7.org/linux/man-pages/man2/landlock_restrict_self.2.html).
853 landlock_restrict_self = 4446,
854 /// See doc at [process_mrelease(2)](https://man7.org/linux/man-pages/man2/process_mrelease.2.html).
855 process_mrelease = 4448,
856 /// See doc at [futex_waitv(2)](https://man7.org/linux/man-pages/man2/futex_waitv.2.html).
857 futex_waitv = 4449,
858 /// See doc at [set_mempolicy_home_node(2)](https://man7.org/linux/man-pages/man2/set_mempolicy_home_node.2.html).
859 set_mempolicy_home_node = 4450,
860 /// See doc at [cachestat(2)](https://man7.org/linux/man-pages/man2/cachestat.2.html).
861 cachestat = 4451,
862 /// See doc at [fchmodat2(2)](https://man7.org/linux/man-pages/man2/fchmodat2.2.html).
863 fchmodat2 = 4452,
864 /// See doc at [map_shadow_stack(2)](https://man7.org/linux/man-pages/man2/map_shadow_stack.2.html).
865 map_shadow_stack = 4453,
866 /// See doc at [futex_wake(2)](https://man7.org/linux/man-pages/man2/futex_wake.2.html).
867 futex_wake = 4454,
868 /// See doc at [futex_wait(2)](https://man7.org/linux/man-pages/man2/futex_wait.2.html).
869 futex_wait = 4455,
870 /// See doc at [futex_requeue(2)](https://man7.org/linux/man-pages/man2/futex_requeue.2.html).
871 futex_requeue = 4456,
872 /// See doc at [statmount(2)](https://man7.org/linux/man-pages/man2/statmount.2.html).
873 statmount = 4457,
874 /// See doc at [listmount(2)](https://man7.org/linux/man-pages/man2/listmount.2.html).
875 listmount = 4458,
876 /// See doc at [lsm_get_self_attr(2)](https://man7.org/linux/man-pages/man2/lsm_get_self_attr.2.html).
877 lsm_get_self_attr = 4459,
878 /// See doc at [lsm_set_self_attr(2)](https://man7.org/linux/man-pages/man2/lsm_set_self_attr.2.html).
879 lsm_set_self_attr = 4460,
880 /// See doc at [lsm_list_modules(2)](https://man7.org/linux/man-pages/man2/lsm_list_modules.2.html).
881 lsm_list_modules = 4461,
882 /// See doc at [mseal(2)](https://man7.org/linux/man-pages/man2/mseal.2.html).
883 mseal = 4462,
884 /// See doc at [setxattrat(2)](https://man7.org/linux/man-pages/man2/setxattrat.2.html).
885 setxattrat = 4463,
886 /// See doc at [getxattrat(2)](https://man7.org/linux/man-pages/man2/getxattrat.2.html).
887 getxattrat = 4464,
888 /// See doc at [listxattrat(2)](https://man7.org/linux/man-pages/man2/listxattrat.2.html).
889 listxattrat = 4465,
890 /// See doc at [removexattrat(2)](https://man7.org/linux/man-pages/man2/removexattrat.2.html).
891 removexattrat = 4466,
892 /// See doc at [open_tree_attr(2)](https://man7.org/linux/man-pages/man2/open_tree_attr.2.html).
893 open_tree_attr = 4467,
894 /// See doc at [file_getattr(2)](https://man7.org/linux/man-pages/man2/file_getattr.2.html).
895 file_getattr = 4468,
896 /// See doc at [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html).
897 file_setattr = 4469,
898}