linux_sysno/generic.rs
1//! Syscalls for arch `generic`.
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 [io_setup(2)](https://man7.org/linux/man-pages/man2/io_setup.2.html).
13 io_setup = 0,
14 /// See doc at [io_destroy(2)](https://man7.org/linux/man-pages/man2/io_destroy.2.html).
15 io_destroy = 1,
16 /// See doc at [io_submit(2)](https://man7.org/linux/man-pages/man2/io_submit.2.html).
17 io_submit = 2,
18 /// See doc at [io_cancel(2)](https://man7.org/linux/man-pages/man2/io_cancel.2.html).
19 io_cancel = 3,
20 /// See doc at [io_getevents(2)](https://man7.org/linux/man-pages/man2/io_getevents.2.html).
21 io_getevents = 4,
22 /// See doc at [setxattr(2)](https://man7.org/linux/man-pages/man2/setxattr.2.html).
23 setxattr = 5,
24 /// See doc at [lsetxattr(2)](https://man7.org/linux/man-pages/man2/lsetxattr.2.html).
25 lsetxattr = 6,
26 /// See doc at [fsetxattr(2)](https://man7.org/linux/man-pages/man2/fsetxattr.2.html).
27 fsetxattr = 7,
28 /// See doc at [getxattr(2)](https://man7.org/linux/man-pages/man2/getxattr.2.html).
29 getxattr = 8,
30 /// See doc at [lgetxattr(2)](https://man7.org/linux/man-pages/man2/lgetxattr.2.html).
31 lgetxattr = 9,
32 /// See doc at [fgetxattr(2)](https://man7.org/linux/man-pages/man2/fgetxattr.2.html).
33 fgetxattr = 10,
34 /// See doc at [listxattr(2)](https://man7.org/linux/man-pages/man2/listxattr.2.html).
35 listxattr = 11,
36 /// See doc at [llistxattr(2)](https://man7.org/linux/man-pages/man2/llistxattr.2.html).
37 llistxattr = 12,
38 /// See doc at [flistxattr(2)](https://man7.org/linux/man-pages/man2/flistxattr.2.html).
39 flistxattr = 13,
40 /// See doc at [removexattr(2)](https://man7.org/linux/man-pages/man2/removexattr.2.html).
41 removexattr = 14,
42 /// See doc at [lremovexattr(2)](https://man7.org/linux/man-pages/man2/lremovexattr.2.html).
43 lremovexattr = 15,
44 /// See doc at [fremovexattr(2)](https://man7.org/linux/man-pages/man2/fremovexattr.2.html).
45 fremovexattr = 16,
46 /// See doc at [getcwd(2)](https://man7.org/linux/man-pages/man2/getcwd.2.html).
47 getcwd = 17,
48 /// See doc at [lookup_dcookie(2)](https://man7.org/linux/man-pages/man2/lookup_dcookie.2.html).
49 lookup_dcookie = 18,
50 /// See doc at [eventfd2(2)](https://man7.org/linux/man-pages/man2/eventfd2.2.html).
51 eventfd2 = 19,
52 /// See doc at [epoll_create1(2)](https://man7.org/linux/man-pages/man2/epoll_create1.2.html).
53 epoll_create1 = 20,
54 /// See doc at [epoll_ctl(2)](https://man7.org/linux/man-pages/man2/epoll_ctl.2.html).
55 epoll_ctl = 21,
56 /// See doc at [epoll_pwait(2)](https://man7.org/linux/man-pages/man2/epoll_pwait.2.html).
57 epoll_pwait = 22,
58 /// See doc at [dup(2)](https://man7.org/linux/man-pages/man2/dup.2.html).
59 dup = 23,
60 /// See doc at [dup3(2)](https://man7.org/linux/man-pages/man2/dup3.2.html).
61 dup3 = 24,
62 /// See doc at [fcntl(2)](https://man7.org/linux/man-pages/man2/fcntl.2.html).
63 fcntl = 25,
64 /// See doc at [inotify_init1(2)](https://man7.org/linux/man-pages/man2/inotify_init1.2.html).
65 inotify_init1 = 26,
66 /// See doc at [inotify_add_watch(2)](https://man7.org/linux/man-pages/man2/inotify_add_watch.2.html).
67 inotify_add_watch = 27,
68 /// See doc at [inotify_rm_watch(2)](https://man7.org/linux/man-pages/man2/inotify_rm_watch.2.html).
69 inotify_rm_watch = 28,
70 /// See doc at [ioctl(2)](https://man7.org/linux/man-pages/man2/ioctl.2.html).
71 ioctl = 29,
72 /// See doc at [ioprio_set(2)](https://man7.org/linux/man-pages/man2/ioprio_set.2.html).
73 ioprio_set = 30,
74 /// See doc at [ioprio_get(2)](https://man7.org/linux/man-pages/man2/ioprio_get.2.html).
75 ioprio_get = 31,
76 /// See doc at [flock(2)](https://man7.org/linux/man-pages/man2/flock.2.html).
77 flock = 32,
78 /// See doc at [mknodat(2)](https://man7.org/linux/man-pages/man2/mknodat.2.html).
79 mknodat = 33,
80 /// See doc at [mkdirat(2)](https://man7.org/linux/man-pages/man2/mkdirat.2.html).
81 mkdirat = 34,
82 /// See doc at [unlinkat(2)](https://man7.org/linux/man-pages/man2/unlinkat.2.html).
83 unlinkat = 35,
84 /// See doc at [symlinkat(2)](https://man7.org/linux/man-pages/man2/symlinkat.2.html).
85 symlinkat = 36,
86 /// See doc at [linkat(2)](https://man7.org/linux/man-pages/man2/linkat.2.html).
87 linkat = 37,
88 /// See doc at [renameat(2)](https://man7.org/linux/man-pages/man2/renameat.2.html).
89 renameat = 38,
90 /// See doc at [umount2(2)](https://man7.org/linux/man-pages/man2/umount2.2.html).
91 umount2 = 39,
92 /// See doc at [mount(2)](https://man7.org/linux/man-pages/man2/mount.2.html).
93 mount = 40,
94 /// See doc at [pivot_root(2)](https://man7.org/linux/man-pages/man2/pivot_root.2.html).
95 pivot_root = 41,
96 /// See doc at [nfsservctl(2)](https://man7.org/linux/man-pages/man2/nfsservctl.2.html).
97 nfsservctl = 42,
98 /// See doc at [statfs(2)](https://man7.org/linux/man-pages/man2/statfs.2.html).
99 statfs = 43,
100 /// See doc at [fstatfs(2)](https://man7.org/linux/man-pages/man2/fstatfs.2.html).
101 fstatfs = 44,
102 /// See doc at [truncate(2)](https://man7.org/linux/man-pages/man2/truncate.2.html).
103 truncate = 45,
104 /// See doc at [ftruncate(2)](https://man7.org/linux/man-pages/man2/ftruncate.2.html).
105 ftruncate = 46,
106 /// See doc at [fallocate(2)](https://man7.org/linux/man-pages/man2/fallocate.2.html).
107 fallocate = 47,
108 /// See doc at [faccessat(2)](https://man7.org/linux/man-pages/man2/faccessat.2.html).
109 faccessat = 48,
110 /// See doc at [chdir(2)](https://man7.org/linux/man-pages/man2/chdir.2.html).
111 chdir = 49,
112 /// See doc at [fchdir(2)](https://man7.org/linux/man-pages/man2/fchdir.2.html).
113 fchdir = 50,
114 /// See doc at [chroot(2)](https://man7.org/linux/man-pages/man2/chroot.2.html).
115 chroot = 51,
116 /// See doc at [fchmod(2)](https://man7.org/linux/man-pages/man2/fchmod.2.html).
117 fchmod = 52,
118 /// See doc at [fchmodat(2)](https://man7.org/linux/man-pages/man2/fchmodat.2.html).
119 fchmodat = 53,
120 /// See doc at [fchownat(2)](https://man7.org/linux/man-pages/man2/fchownat.2.html).
121 fchownat = 54,
122 /// See doc at [fchown(2)](https://man7.org/linux/man-pages/man2/fchown.2.html).
123 fchown = 55,
124 /// See doc at [openat(2)](https://man7.org/linux/man-pages/man2/openat.2.html).
125 openat = 56,
126 /// See doc at [close(2)](https://man7.org/linux/man-pages/man2/close.2.html).
127 close = 57,
128 /// See doc at [vhangup(2)](https://man7.org/linux/man-pages/man2/vhangup.2.html).
129 vhangup = 58,
130 /// See doc at [pipe2(2)](https://man7.org/linux/man-pages/man2/pipe2.2.html).
131 pipe2 = 59,
132 /// See doc at [quotactl(2)](https://man7.org/linux/man-pages/man2/quotactl.2.html).
133 quotactl = 60,
134 /// See doc at [getdents64(2)](https://man7.org/linux/man-pages/man2/getdents64.2.html).
135 getdents64 = 61,
136 /// See doc at [lseek(2)](https://man7.org/linux/man-pages/man2/lseek.2.html).
137 lseek = 62,
138 /// See doc at [read(2)](https://man7.org/linux/man-pages/man2/read.2.html).
139 read = 63,
140 /// See doc at [write(2)](https://man7.org/linux/man-pages/man2/write.2.html).
141 write = 64,
142 /// See doc at [readv(2)](https://man7.org/linux/man-pages/man2/readv.2.html).
143 readv = 65,
144 /// See doc at [writev(2)](https://man7.org/linux/man-pages/man2/writev.2.html).
145 writev = 66,
146 /// See doc at [pread64(2)](https://man7.org/linux/man-pages/man2/pread64.2.html).
147 pread64 = 67,
148 /// See doc at [pwrite64(2)](https://man7.org/linux/man-pages/man2/pwrite64.2.html).
149 pwrite64 = 68,
150 /// See doc at [preadv(2)](https://man7.org/linux/man-pages/man2/preadv.2.html).
151 preadv = 69,
152 /// See doc at [pwritev(2)](https://man7.org/linux/man-pages/man2/pwritev.2.html).
153 pwritev = 70,
154 /// See doc at [sendfile(2)](https://man7.org/linux/man-pages/man2/sendfile.2.html).
155 sendfile = 71,
156 /// See doc at [pselect6(2)](https://man7.org/linux/man-pages/man2/pselect6.2.html).
157 pselect6 = 72,
158 /// See doc at [ppoll(2)](https://man7.org/linux/man-pages/man2/ppoll.2.html).
159 ppoll = 73,
160 /// See doc at [signalfd4(2)](https://man7.org/linux/man-pages/man2/signalfd4.2.html).
161 signalfd4 = 74,
162 /// See doc at [vmsplice(2)](https://man7.org/linux/man-pages/man2/vmsplice.2.html).
163 vmsplice = 75,
164 /// See doc at [splice(2)](https://man7.org/linux/man-pages/man2/splice.2.html).
165 splice = 76,
166 /// See doc at [tee(2)](https://man7.org/linux/man-pages/man2/tee.2.html).
167 tee = 77,
168 /// See doc at [readlinkat(2)](https://man7.org/linux/man-pages/man2/readlinkat.2.html).
169 readlinkat = 78,
170 /// See doc at [fstatat(2)](https://man7.org/linux/man-pages/man2/fstatat.2.html).
171 fstatat = 79,
172 /// See doc at [fstat(2)](https://man7.org/linux/man-pages/man2/fstat.2.html).
173 fstat = 80,
174 /// See doc at [sync(2)](https://man7.org/linux/man-pages/man2/sync.2.html).
175 sync = 81,
176 /// See doc at [fsync(2)](https://man7.org/linux/man-pages/man2/fsync.2.html).
177 fsync = 82,
178 /// See doc at [fdatasync(2)](https://man7.org/linux/man-pages/man2/fdatasync.2.html).
179 fdatasync = 83,
180 /// See doc at [sync_file_range2(2)](https://man7.org/linux/man-pages/man2/sync_file_range2.2.html).
181 sync_file_range2 = 84,
182 /// See doc at [timerfd_create(2)](https://man7.org/linux/man-pages/man2/timerfd_create.2.html).
183 timerfd_create = 85,
184 /// See doc at [timerfd_settime(2)](https://man7.org/linux/man-pages/man2/timerfd_settime.2.html).
185 timerfd_settime = 86,
186 /// See doc at [timerfd_gettime(2)](https://man7.org/linux/man-pages/man2/timerfd_gettime.2.html).
187 timerfd_gettime = 87,
188 /// See doc at [utimensat(2)](https://man7.org/linux/man-pages/man2/utimensat.2.html).
189 utimensat = 88,
190 /// See doc at [acct(2)](https://man7.org/linux/man-pages/man2/acct.2.html).
191 acct = 89,
192 /// See doc at [capget(2)](https://man7.org/linux/man-pages/man2/capget.2.html).
193 capget = 90,
194 /// See doc at [capset(2)](https://man7.org/linux/man-pages/man2/capset.2.html).
195 capset = 91,
196 /// See doc at [personality(2)](https://man7.org/linux/man-pages/man2/personality.2.html).
197 personality = 92,
198 /// See doc at [exit(2)](https://man7.org/linux/man-pages/man2/exit.2.html).
199 exit = 93,
200 /// See doc at [exit_group(2)](https://man7.org/linux/man-pages/man2/exit_group.2.html).
201 exit_group = 94,
202 /// See doc at [waitid(2)](https://man7.org/linux/man-pages/man2/waitid.2.html).
203 waitid = 95,
204 /// See doc at [set_tid_address(2)](https://man7.org/linux/man-pages/man2/set_tid_address.2.html).
205 set_tid_address = 96,
206 /// See doc at [unshare(2)](https://man7.org/linux/man-pages/man2/unshare.2.html).
207 unshare = 97,
208 /// See doc at [futex(2)](https://man7.org/linux/man-pages/man2/futex.2.html).
209 futex = 98,
210 /// See doc at [set_robust_list(2)](https://man7.org/linux/man-pages/man2/set_robust_list.2.html).
211 set_robust_list = 99,
212 /// See doc at [get_robust_list(2)](https://man7.org/linux/man-pages/man2/get_robust_list.2.html).
213 get_robust_list = 100,
214 /// See doc at [nanosleep(2)](https://man7.org/linux/man-pages/man2/nanosleep.2.html).
215 nanosleep = 101,
216 /// See doc at [getitimer(2)](https://man7.org/linux/man-pages/man2/getitimer.2.html).
217 getitimer = 102,
218 /// See doc at [setitimer(2)](https://man7.org/linux/man-pages/man2/setitimer.2.html).
219 setitimer = 103,
220 /// See doc at [kexec_load(2)](https://man7.org/linux/man-pages/man2/kexec_load.2.html).
221 kexec_load = 104,
222 /// See doc at [init_module(2)](https://man7.org/linux/man-pages/man2/init_module.2.html).
223 init_module = 105,
224 /// See doc at [delete_module(2)](https://man7.org/linux/man-pages/man2/delete_module.2.html).
225 delete_module = 106,
226 /// See doc at [timer_create(2)](https://man7.org/linux/man-pages/man2/timer_create.2.html).
227 timer_create = 107,
228 /// See doc at [timer_gettime(2)](https://man7.org/linux/man-pages/man2/timer_gettime.2.html).
229 timer_gettime = 108,
230 /// See doc at [timer_getoverrun(2)](https://man7.org/linux/man-pages/man2/timer_getoverrun.2.html).
231 timer_getoverrun = 109,
232 /// See doc at [timer_settime(2)](https://man7.org/linux/man-pages/man2/timer_settime.2.html).
233 timer_settime = 110,
234 /// See doc at [timer_delete(2)](https://man7.org/linux/man-pages/man2/timer_delete.2.html).
235 timer_delete = 111,
236 /// See doc at [clock_settime(2)](https://man7.org/linux/man-pages/man2/clock_settime.2.html).
237 clock_settime = 112,
238 /// See doc at [clock_gettime(2)](https://man7.org/linux/man-pages/man2/clock_gettime.2.html).
239 clock_gettime = 113,
240 /// See doc at [clock_getres(2)](https://man7.org/linux/man-pages/man2/clock_getres.2.html).
241 clock_getres = 114,
242 /// See doc at [clock_nanosleep(2)](https://man7.org/linux/man-pages/man2/clock_nanosleep.2.html).
243 clock_nanosleep = 115,
244 /// See doc at [syslog(2)](https://man7.org/linux/man-pages/man2/syslog.2.html).
245 syslog = 116,
246 /// See doc at [ptrace(2)](https://man7.org/linux/man-pages/man2/ptrace.2.html).
247 ptrace = 117,
248 /// See doc at [sched_setparam(2)](https://man7.org/linux/man-pages/man2/sched_setparam.2.html).
249 sched_setparam = 118,
250 /// See doc at [sched_setscheduler(2)](https://man7.org/linux/man-pages/man2/sched_setscheduler.2.html).
251 sched_setscheduler = 119,
252 /// See doc at [sched_getscheduler(2)](https://man7.org/linux/man-pages/man2/sched_getscheduler.2.html).
253 sched_getscheduler = 120,
254 /// See doc at [sched_getparam(2)](https://man7.org/linux/man-pages/man2/sched_getparam.2.html).
255 sched_getparam = 121,
256 /// See doc at [sched_setaffinity(2)](https://man7.org/linux/man-pages/man2/sched_setaffinity.2.html).
257 sched_setaffinity = 122,
258 /// See doc at [sched_getaffinity(2)](https://man7.org/linux/man-pages/man2/sched_getaffinity.2.html).
259 sched_getaffinity = 123,
260 /// See doc at [sched_yield(2)](https://man7.org/linux/man-pages/man2/sched_yield.2.html).
261 sched_yield = 124,
262 /// See doc at [sched_get_priority_max(2)](https://man7.org/linux/man-pages/man2/sched_get_priority_max.2.html).
263 sched_get_priority_max = 125,
264 /// See doc at [sched_get_priority_min(2)](https://man7.org/linux/man-pages/man2/sched_get_priority_min.2.html).
265 sched_get_priority_min = 126,
266 /// See doc at [sched_rr_get_interval(2)](https://man7.org/linux/man-pages/man2/sched_rr_get_interval.2.html).
267 sched_rr_get_interval = 127,
268 /// See doc at [restart_syscall(2)](https://man7.org/linux/man-pages/man2/restart_syscall.2.html).
269 restart_syscall = 128,
270 /// See doc at [kill(2)](https://man7.org/linux/man-pages/man2/kill.2.html).
271 kill = 129,
272 /// See doc at [tkill(2)](https://man7.org/linux/man-pages/man2/tkill.2.html).
273 tkill = 130,
274 /// See doc at [tgkill(2)](https://man7.org/linux/man-pages/man2/tgkill.2.html).
275 tgkill = 131,
276 /// See doc at [sigaltstack(2)](https://man7.org/linux/man-pages/man2/sigaltstack.2.html).
277 sigaltstack = 132,
278 /// See doc at [rt_sigsuspend(2)](https://man7.org/linux/man-pages/man2/rt_sigsuspend.2.html).
279 rt_sigsuspend = 133,
280 /// See doc at [rt_sigaction(2)](https://man7.org/linux/man-pages/man2/rt_sigaction.2.html).
281 rt_sigaction = 134,
282 /// See doc at [rt_sigprocmask(2)](https://man7.org/linux/man-pages/man2/rt_sigprocmask.2.html).
283 rt_sigprocmask = 135,
284 /// See doc at [rt_sigpending(2)](https://man7.org/linux/man-pages/man2/rt_sigpending.2.html).
285 rt_sigpending = 136,
286 /// See doc at [rt_sigtimedwait(2)](https://man7.org/linux/man-pages/man2/rt_sigtimedwait.2.html).
287 rt_sigtimedwait = 137,
288 /// See doc at [rt_sigqueueinfo(2)](https://man7.org/linux/man-pages/man2/rt_sigqueueinfo.2.html).
289 rt_sigqueueinfo = 138,
290 /// See doc at [rt_sigreturn(2)](https://man7.org/linux/man-pages/man2/rt_sigreturn.2.html).
291 rt_sigreturn = 139,
292 /// See doc at [setpriority(2)](https://man7.org/linux/man-pages/man2/setpriority.2.html).
293 setpriority = 140,
294 /// See doc at [getpriority(2)](https://man7.org/linux/man-pages/man2/getpriority.2.html).
295 getpriority = 141,
296 /// See doc at [reboot(2)](https://man7.org/linux/man-pages/man2/reboot.2.html).
297 reboot = 142,
298 /// See doc at [setregid(2)](https://man7.org/linux/man-pages/man2/setregid.2.html).
299 setregid = 143,
300 /// See doc at [setgid(2)](https://man7.org/linux/man-pages/man2/setgid.2.html).
301 setgid = 144,
302 /// See doc at [setreuid(2)](https://man7.org/linux/man-pages/man2/setreuid.2.html).
303 setreuid = 145,
304 /// See doc at [setuid(2)](https://man7.org/linux/man-pages/man2/setuid.2.html).
305 setuid = 146,
306 /// See doc at [setresuid(2)](https://man7.org/linux/man-pages/man2/setresuid.2.html).
307 setresuid = 147,
308 /// See doc at [getresuid(2)](https://man7.org/linux/man-pages/man2/getresuid.2.html).
309 getresuid = 148,
310 /// See doc at [setresgid(2)](https://man7.org/linux/man-pages/man2/setresgid.2.html).
311 setresgid = 149,
312 /// See doc at [getresgid(2)](https://man7.org/linux/man-pages/man2/getresgid.2.html).
313 getresgid = 150,
314 /// See doc at [setfsuid(2)](https://man7.org/linux/man-pages/man2/setfsuid.2.html).
315 setfsuid = 151,
316 /// See doc at [setfsgid(2)](https://man7.org/linux/man-pages/man2/setfsgid.2.html).
317 setfsgid = 152,
318 /// See doc at [times(2)](https://man7.org/linux/man-pages/man2/times.2.html).
319 times = 153,
320 /// See doc at [setpgid(2)](https://man7.org/linux/man-pages/man2/setpgid.2.html).
321 setpgid = 154,
322 /// See doc at [getpgid(2)](https://man7.org/linux/man-pages/man2/getpgid.2.html).
323 getpgid = 155,
324 /// See doc at [getsid(2)](https://man7.org/linux/man-pages/man2/getsid.2.html).
325 getsid = 156,
326 /// See doc at [setsid(2)](https://man7.org/linux/man-pages/man2/setsid.2.html).
327 setsid = 157,
328 /// See doc at [getgroups(2)](https://man7.org/linux/man-pages/man2/getgroups.2.html).
329 getgroups = 158,
330 /// See doc at [setgroups(2)](https://man7.org/linux/man-pages/man2/setgroups.2.html).
331 setgroups = 159,
332 /// See doc at [uname(2)](https://man7.org/linux/man-pages/man2/uname.2.html).
333 uname = 160,
334 /// See doc at [sethostname(2)](https://man7.org/linux/man-pages/man2/sethostname.2.html).
335 sethostname = 161,
336 /// See doc at [setdomainname(2)](https://man7.org/linux/man-pages/man2/setdomainname.2.html).
337 setdomainname = 162,
338 /// See doc at [getrlimit(2)](https://man7.org/linux/man-pages/man2/getrlimit.2.html).
339 getrlimit = 163,
340 /// See doc at [setrlimit(2)](https://man7.org/linux/man-pages/man2/setrlimit.2.html).
341 setrlimit = 164,
342 /// See doc at [getrusage(2)](https://man7.org/linux/man-pages/man2/getrusage.2.html).
343 getrusage = 165,
344 /// See doc at [umask(2)](https://man7.org/linux/man-pages/man2/umask.2.html).
345 umask = 166,
346 /// See doc at [prctl(2)](https://man7.org/linux/man-pages/man2/prctl.2.html).
347 prctl = 167,
348 /// See doc at [getcpu(2)](https://man7.org/linux/man-pages/man2/getcpu.2.html).
349 getcpu = 168,
350 /// See doc at [gettimeofday(2)](https://man7.org/linux/man-pages/man2/gettimeofday.2.html).
351 gettimeofday = 169,
352 /// See doc at [settimeofday(2)](https://man7.org/linux/man-pages/man2/settimeofday.2.html).
353 settimeofday = 170,
354 /// See doc at [adjtimex(2)](https://man7.org/linux/man-pages/man2/adjtimex.2.html).
355 adjtimex = 171,
356 /// See doc at [getpid(2)](https://man7.org/linux/man-pages/man2/getpid.2.html).
357 getpid = 172,
358 /// See doc at [getppid(2)](https://man7.org/linux/man-pages/man2/getppid.2.html).
359 getppid = 173,
360 /// See doc at [getuid(2)](https://man7.org/linux/man-pages/man2/getuid.2.html).
361 getuid = 174,
362 /// See doc at [geteuid(2)](https://man7.org/linux/man-pages/man2/geteuid.2.html).
363 geteuid = 175,
364 /// See doc at [getgid(2)](https://man7.org/linux/man-pages/man2/getgid.2.html).
365 getgid = 176,
366 /// See doc at [getegid(2)](https://man7.org/linux/man-pages/man2/getegid.2.html).
367 getegid = 177,
368 /// See doc at [gettid(2)](https://man7.org/linux/man-pages/man2/gettid.2.html).
369 gettid = 178,
370 /// See doc at [sysinfo(2)](https://man7.org/linux/man-pages/man2/sysinfo.2.html).
371 sysinfo = 179,
372 /// See doc at [mq_open(2)](https://man7.org/linux/man-pages/man2/mq_open.2.html).
373 mq_open = 180,
374 /// See doc at [mq_unlink(2)](https://man7.org/linux/man-pages/man2/mq_unlink.2.html).
375 mq_unlink = 181,
376 /// See doc at [mq_timedsend(2)](https://man7.org/linux/man-pages/man2/mq_timedsend.2.html).
377 mq_timedsend = 182,
378 /// See doc at [mq_timedreceive(2)](https://man7.org/linux/man-pages/man2/mq_timedreceive.2.html).
379 mq_timedreceive = 183,
380 /// See doc at [mq_notify(2)](https://man7.org/linux/man-pages/man2/mq_notify.2.html).
381 mq_notify = 184,
382 /// See doc at [mq_getsetattr(2)](https://man7.org/linux/man-pages/man2/mq_getsetattr.2.html).
383 mq_getsetattr = 185,
384 /// See doc at [msgget(2)](https://man7.org/linux/man-pages/man2/msgget.2.html).
385 msgget = 186,
386 /// See doc at [msgctl(2)](https://man7.org/linux/man-pages/man2/msgctl.2.html).
387 msgctl = 187,
388 /// See doc at [msgrcv(2)](https://man7.org/linux/man-pages/man2/msgrcv.2.html).
389 msgrcv = 188,
390 /// See doc at [msgsnd(2)](https://man7.org/linux/man-pages/man2/msgsnd.2.html).
391 msgsnd = 189,
392 /// See doc at [semget(2)](https://man7.org/linux/man-pages/man2/semget.2.html).
393 semget = 190,
394 /// See doc at [semctl(2)](https://man7.org/linux/man-pages/man2/semctl.2.html).
395 semctl = 191,
396 /// See doc at [semtimedop(2)](https://man7.org/linux/man-pages/man2/semtimedop.2.html).
397 semtimedop = 192,
398 /// See doc at [semop(2)](https://man7.org/linux/man-pages/man2/semop.2.html).
399 semop = 193,
400 /// See doc at [shmget(2)](https://man7.org/linux/man-pages/man2/shmget.2.html).
401 shmget = 194,
402 /// See doc at [shmctl(2)](https://man7.org/linux/man-pages/man2/shmctl.2.html).
403 shmctl = 195,
404 /// See doc at [shmat(2)](https://man7.org/linux/man-pages/man2/shmat.2.html).
405 shmat = 196,
406 /// See doc at [shmdt(2)](https://man7.org/linux/man-pages/man2/shmdt.2.html).
407 shmdt = 197,
408 /// See doc at [socket(2)](https://man7.org/linux/man-pages/man2/socket.2.html).
409 socket = 198,
410 /// See doc at [socketpair(2)](https://man7.org/linux/man-pages/man2/socketpair.2.html).
411 socketpair = 199,
412 /// See doc at [bind(2)](https://man7.org/linux/man-pages/man2/bind.2.html).
413 bind = 200,
414 /// See doc at [listen(2)](https://man7.org/linux/man-pages/man2/listen.2.html).
415 listen = 201,
416 /// See doc at [accept(2)](https://man7.org/linux/man-pages/man2/accept.2.html).
417 accept = 202,
418 /// See doc at [connect(2)](https://man7.org/linux/man-pages/man2/connect.2.html).
419 connect = 203,
420 /// See doc at [getsockname(2)](https://man7.org/linux/man-pages/man2/getsockname.2.html).
421 getsockname = 204,
422 /// See doc at [getpeername(2)](https://man7.org/linux/man-pages/man2/getpeername.2.html).
423 getpeername = 205,
424 /// See doc at [sendto(2)](https://man7.org/linux/man-pages/man2/sendto.2.html).
425 sendto = 206,
426 /// See doc at [recvfrom(2)](https://man7.org/linux/man-pages/man2/recvfrom.2.html).
427 recvfrom = 207,
428 /// See doc at [setsockopt(2)](https://man7.org/linux/man-pages/man2/setsockopt.2.html).
429 setsockopt = 208,
430 /// See doc at [getsockopt(2)](https://man7.org/linux/man-pages/man2/getsockopt.2.html).
431 getsockopt = 209,
432 /// See doc at [shutdown(2)](https://man7.org/linux/man-pages/man2/shutdown.2.html).
433 shutdown = 210,
434 /// See doc at [sendmsg(2)](https://man7.org/linux/man-pages/man2/sendmsg.2.html).
435 sendmsg = 211,
436 /// See doc at [recvmsg(2)](https://man7.org/linux/man-pages/man2/recvmsg.2.html).
437 recvmsg = 212,
438 /// See doc at [readahead(2)](https://man7.org/linux/man-pages/man2/readahead.2.html).
439 readahead = 213,
440 /// See doc at [brk(2)](https://man7.org/linux/man-pages/man2/brk.2.html).
441 brk = 214,
442 /// See doc at [munmap(2)](https://man7.org/linux/man-pages/man2/munmap.2.html).
443 munmap = 215,
444 /// See doc at [mremap(2)](https://man7.org/linux/man-pages/man2/mremap.2.html).
445 mremap = 216,
446 /// See doc at [add_key(2)](https://man7.org/linux/man-pages/man2/add_key.2.html).
447 add_key = 217,
448 /// See doc at [request_key(2)](https://man7.org/linux/man-pages/man2/request_key.2.html).
449 request_key = 218,
450 /// See doc at [keyctl(2)](https://man7.org/linux/man-pages/man2/keyctl.2.html).
451 keyctl = 219,
452 /// See doc at [clone(2)](https://man7.org/linux/man-pages/man2/clone.2.html).
453 clone = 220,
454 /// See doc at [execve(2)](https://man7.org/linux/man-pages/man2/execve.2.html).
455 execve = 221,
456 /// See doc at [mmap(2)](https://man7.org/linux/man-pages/man2/mmap.2.html).
457 mmap = 222,
458 /// See doc at [fadvise64(2)](https://man7.org/linux/man-pages/man2/fadvise64.2.html).
459 fadvise64 = 223,
460 /// See doc at [swapon(2)](https://man7.org/linux/man-pages/man2/swapon.2.html).
461 swapon = 224,
462 /// See doc at [swapoff(2)](https://man7.org/linux/man-pages/man2/swapoff.2.html).
463 swapoff = 225,
464 /// See doc at [mprotect(2)](https://man7.org/linux/man-pages/man2/mprotect.2.html).
465 mprotect = 226,
466 /// See doc at [msync(2)](https://man7.org/linux/man-pages/man2/msync.2.html).
467 msync = 227,
468 /// See doc at [mlock(2)](https://man7.org/linux/man-pages/man2/mlock.2.html).
469 mlock = 228,
470 /// See doc at [munlock(2)](https://man7.org/linux/man-pages/man2/munlock.2.html).
471 munlock = 229,
472 /// See doc at [mlockall(2)](https://man7.org/linux/man-pages/man2/mlockall.2.html).
473 mlockall = 230,
474 /// See doc at [munlockall(2)](https://man7.org/linux/man-pages/man2/munlockall.2.html).
475 munlockall = 231,
476 /// See doc at [mincore(2)](https://man7.org/linux/man-pages/man2/mincore.2.html).
477 mincore = 232,
478 /// See doc at [madvise(2)](https://man7.org/linux/man-pages/man2/madvise.2.html).
479 madvise = 233,
480 /// See doc at [remap_file_pages(2)](https://man7.org/linux/man-pages/man2/remap_file_pages.2.html).
481 remap_file_pages = 234,
482 /// See doc at [mbind(2)](https://man7.org/linux/man-pages/man2/mbind.2.html).
483 mbind = 235,
484 /// See doc at [get_mempolicy(2)](https://man7.org/linux/man-pages/man2/get_mempolicy.2.html).
485 get_mempolicy = 236,
486 /// See doc at [set_mempolicy(2)](https://man7.org/linux/man-pages/man2/set_mempolicy.2.html).
487 set_mempolicy = 237,
488 /// See doc at [migrate_pages(2)](https://man7.org/linux/man-pages/man2/migrate_pages.2.html).
489 migrate_pages = 238,
490 /// See doc at [move_pages(2)](https://man7.org/linux/man-pages/man2/move_pages.2.html).
491 move_pages = 239,
492 /// See doc at [rt_tgsigqueueinfo(2)](https://man7.org/linux/man-pages/man2/rt_tgsigqueueinfo.2.html).
493 rt_tgsigqueueinfo = 240,
494 /// See doc at [perf_event_open(2)](https://man7.org/linux/man-pages/man2/perf_event_open.2.html).
495 perf_event_open = 241,
496 /// See doc at [accept4(2)](https://man7.org/linux/man-pages/man2/accept4.2.html).
497 accept4 = 242,
498 /// See doc at [recvmmsg(2)](https://man7.org/linux/man-pages/man2/recvmmsg.2.html).
499 recvmmsg = 243,
500 /// See doc at [wait4(2)](https://man7.org/linux/man-pages/man2/wait4.2.html).
501 wait4 = 260,
502 /// See doc at [prlimit64(2)](https://man7.org/linux/man-pages/man2/prlimit64.2.html).
503 prlimit64 = 261,
504 /// See doc at [fanotify_init(2)](https://man7.org/linux/man-pages/man2/fanotify_init.2.html).
505 fanotify_init = 262,
506 /// See doc at [fanotify_mark(2)](https://man7.org/linux/man-pages/man2/fanotify_mark.2.html).
507 fanotify_mark = 263,
508 /// See doc at [name_to_handle_at(2)](https://man7.org/linux/man-pages/man2/name_to_handle_at.2.html).
509 name_to_handle_at = 264,
510 /// See doc at [open_by_handle_at(2)](https://man7.org/linux/man-pages/man2/open_by_handle_at.2.html).
511 open_by_handle_at = 265,
512 /// See doc at [clock_adjtime(2)](https://man7.org/linux/man-pages/man2/clock_adjtime.2.html).
513 clock_adjtime = 266,
514 /// See doc at [syncfs(2)](https://man7.org/linux/man-pages/man2/syncfs.2.html).
515 syncfs = 267,
516 /// See doc at [setns(2)](https://man7.org/linux/man-pages/man2/setns.2.html).
517 setns = 268,
518 /// See doc at [sendmmsg(2)](https://man7.org/linux/man-pages/man2/sendmmsg.2.html).
519 sendmmsg = 269,
520 /// See doc at [process_vm_readv(2)](https://man7.org/linux/man-pages/man2/process_vm_readv.2.html).
521 process_vm_readv = 270,
522 /// See doc at [process_vm_writev(2)](https://man7.org/linux/man-pages/man2/process_vm_writev.2.html).
523 process_vm_writev = 271,
524 /// See doc at [kcmp(2)](https://man7.org/linux/man-pages/man2/kcmp.2.html).
525 kcmp = 272,
526 /// See doc at [finit_module(2)](https://man7.org/linux/man-pages/man2/finit_module.2.html).
527 finit_module = 273,
528 /// See doc at [sched_setattr(2)](https://man7.org/linux/man-pages/man2/sched_setattr.2.html).
529 sched_setattr = 274,
530 /// See doc at [sched_getattr(2)](https://man7.org/linux/man-pages/man2/sched_getattr.2.html).
531 sched_getattr = 275,
532 /// See doc at [renameat2(2)](https://man7.org/linux/man-pages/man2/renameat2.2.html).
533 renameat2 = 276,
534 /// See doc at [seccomp(2)](https://man7.org/linux/man-pages/man2/seccomp.2.html).
535 seccomp = 277,
536 /// See doc at [getrandom(2)](https://man7.org/linux/man-pages/man2/getrandom.2.html).
537 getrandom = 278,
538 /// See doc at [memfd_create(2)](https://man7.org/linux/man-pages/man2/memfd_create.2.html).
539 memfd_create = 279,
540 /// See doc at [bpf(2)](https://man7.org/linux/man-pages/man2/bpf.2.html).
541 bpf = 280,
542 /// See doc at [execveat(2)](https://man7.org/linux/man-pages/man2/execveat.2.html).
543 execveat = 281,
544 /// See doc at [userfaultfd(2)](https://man7.org/linux/man-pages/man2/userfaultfd.2.html).
545 userfaultfd = 282,
546 /// See doc at [membarrier(2)](https://man7.org/linux/man-pages/man2/membarrier.2.html).
547 membarrier = 283,
548 /// See doc at [mlock2(2)](https://man7.org/linux/man-pages/man2/mlock2.2.html).
549 mlock2 = 284,
550 /// See doc at [copy_file_range(2)](https://man7.org/linux/man-pages/man2/copy_file_range.2.html).
551 copy_file_range = 285,
552 /// See doc at [preadv2(2)](https://man7.org/linux/man-pages/man2/preadv2.2.html).
553 preadv2 = 286,
554 /// See doc at [pwritev2(2)](https://man7.org/linux/man-pages/man2/pwritev2.2.html).
555 pwritev2 = 287,
556 /// See doc at [pkey_mprotect(2)](https://man7.org/linux/man-pages/man2/pkey_mprotect.2.html).
557 pkey_mprotect = 288,
558 /// See doc at [pkey_alloc(2)](https://man7.org/linux/man-pages/man2/pkey_alloc.2.html).
559 pkey_alloc = 289,
560 /// See doc at [pkey_free(2)](https://man7.org/linux/man-pages/man2/pkey_free.2.html).
561 pkey_free = 290,
562 /// See doc at [statx(2)](https://man7.org/linux/man-pages/man2/statx.2.html).
563 statx = 291,
564 /// See doc at [io_pgetevents(2)](https://man7.org/linux/man-pages/man2/io_pgetevents.2.html).
565 io_pgetevents = 292,
566 /// See doc at [rseq(2)](https://man7.org/linux/man-pages/man2/rseq.2.html).
567 rseq = 293,
568 /// See doc at [kexec_file_load(2)](https://man7.org/linux/man-pages/man2/kexec_file_load.2.html).
569 kexec_file_load = 294,
570 /// See doc at [clock_gettime64(2)](https://man7.org/linux/man-pages/man2/clock_gettime64.2.html).
571 clock_gettime64 = 403,
572 /// See doc at [clock_settime64(2)](https://man7.org/linux/man-pages/man2/clock_settime64.2.html).
573 clock_settime64 = 404,
574 /// See doc at [clock_adjtime64(2)](https://man7.org/linux/man-pages/man2/clock_adjtime64.2.html).
575 clock_adjtime64 = 405,
576 /// See doc at [clock_getres_time64(2)](https://man7.org/linux/man-pages/man2/clock_getres_time64.2.html).
577 clock_getres_time64 = 406,
578 /// See doc at [clock_nanosleep_time64(2)](https://man7.org/linux/man-pages/man2/clock_nanosleep_time64.2.html).
579 clock_nanosleep_time64 = 407,
580 /// See doc at [timer_gettime64(2)](https://man7.org/linux/man-pages/man2/timer_gettime64.2.html).
581 timer_gettime64 = 408,
582 /// See doc at [timer_settime64(2)](https://man7.org/linux/man-pages/man2/timer_settime64.2.html).
583 timer_settime64 = 409,
584 /// See doc at [timerfd_gettime64(2)](https://man7.org/linux/man-pages/man2/timerfd_gettime64.2.html).
585 timerfd_gettime64 = 410,
586 /// See doc at [timerfd_settime64(2)](https://man7.org/linux/man-pages/man2/timerfd_settime64.2.html).
587 timerfd_settime64 = 411,
588 /// See doc at [utimensat_time64(2)](https://man7.org/linux/man-pages/man2/utimensat_time64.2.html).
589 utimensat_time64 = 412,
590 /// See doc at [pselect6_time64(2)](https://man7.org/linux/man-pages/man2/pselect6_time64.2.html).
591 pselect6_time64 = 413,
592 /// See doc at [ppoll_time64(2)](https://man7.org/linux/man-pages/man2/ppoll_time64.2.html).
593 ppoll_time64 = 414,
594 /// See doc at [io_pgetevents_time64(2)](https://man7.org/linux/man-pages/man2/io_pgetevents_time64.2.html).
595 io_pgetevents_time64 = 416,
596 /// See doc at [recvmmsg_time64(2)](https://man7.org/linux/man-pages/man2/recvmmsg_time64.2.html).
597 recvmmsg_time64 = 417,
598 /// See doc at [mq_timedsend_time64(2)](https://man7.org/linux/man-pages/man2/mq_timedsend_time64.2.html).
599 mq_timedsend_time64 = 418,
600 /// See doc at [mq_timedreceive_time64(2)](https://man7.org/linux/man-pages/man2/mq_timedreceive_time64.2.html).
601 mq_timedreceive_time64 = 419,
602 /// See doc at [semtimedop_time64(2)](https://man7.org/linux/man-pages/man2/semtimedop_time64.2.html).
603 semtimedop_time64 = 420,
604 /// See doc at [rt_sigtimedwait_time64(2)](https://man7.org/linux/man-pages/man2/rt_sigtimedwait_time64.2.html).
605 rt_sigtimedwait_time64 = 421,
606 /// See doc at [futex_time64(2)](https://man7.org/linux/man-pages/man2/futex_time64.2.html).
607 futex_time64 = 422,
608 /// See doc at [sched_rr_get_interval_time64(2)](https://man7.org/linux/man-pages/man2/sched_rr_get_interval_time64.2.html).
609 sched_rr_get_interval_time64 = 423,
610 /// See doc at [pidfd_send_signal(2)](https://man7.org/linux/man-pages/man2/pidfd_send_signal.2.html).
611 pidfd_send_signal = 424,
612 /// See doc at [io_uring_setup(2)](https://man7.org/linux/man-pages/man2/io_uring_setup.2.html).
613 io_uring_setup = 425,
614 /// See doc at [io_uring_enter(2)](https://man7.org/linux/man-pages/man2/io_uring_enter.2.html).
615 io_uring_enter = 426,
616 /// See doc at [io_uring_register(2)](https://man7.org/linux/man-pages/man2/io_uring_register.2.html).
617 io_uring_register = 427,
618 /// See doc at [open_tree(2)](https://man7.org/linux/man-pages/man2/open_tree.2.html).
619 open_tree = 428,
620 /// See doc at [move_mount(2)](https://man7.org/linux/man-pages/man2/move_mount.2.html).
621 move_mount = 429,
622 /// See doc at [fsopen(2)](https://man7.org/linux/man-pages/man2/fsopen.2.html).
623 fsopen = 430,
624 /// See doc at [fsconfig(2)](https://man7.org/linux/man-pages/man2/fsconfig.2.html).
625 fsconfig = 431,
626 /// See doc at [fsmount(2)](https://man7.org/linux/man-pages/man2/fsmount.2.html).
627 fsmount = 432,
628 /// See doc at [fspick(2)](https://man7.org/linux/man-pages/man2/fspick.2.html).
629 fspick = 433,
630 /// See doc at [pidfd_open(2)](https://man7.org/linux/man-pages/man2/pidfd_open.2.html).
631 pidfd_open = 434,
632 /// See doc at [clone3(2)](https://man7.org/linux/man-pages/man2/clone3.2.html).
633 clone3 = 435,
634 /// See doc at [close_range(2)](https://man7.org/linux/man-pages/man2/close_range.2.html).
635 close_range = 436,
636 /// See doc at [openat2(2)](https://man7.org/linux/man-pages/man2/openat2.2.html).
637 openat2 = 437,
638 /// See doc at [pidfd_getfd(2)](https://man7.org/linux/man-pages/man2/pidfd_getfd.2.html).
639 pidfd_getfd = 438,
640 /// See doc at [faccessat2(2)](https://man7.org/linux/man-pages/man2/faccessat2.2.html).
641 faccessat2 = 439,
642 /// See doc at [process_madvise(2)](https://man7.org/linux/man-pages/man2/process_madvise.2.html).
643 process_madvise = 440,
644 /// See doc at [epoll_pwait2(2)](https://man7.org/linux/man-pages/man2/epoll_pwait2.2.html).
645 epoll_pwait2 = 441,
646 /// See doc at [mount_setattr(2)](https://man7.org/linux/man-pages/man2/mount_setattr.2.html).
647 mount_setattr = 442,
648 /// See doc at [quotactl_fd(2)](https://man7.org/linux/man-pages/man2/quotactl_fd.2.html).
649 quotactl_fd = 443,
650 /// See doc at [landlock_create_ruleset(2)](https://man7.org/linux/man-pages/man2/landlock_create_ruleset.2.html).
651 landlock_create_ruleset = 444,
652 /// See doc at [landlock_add_rule(2)](https://man7.org/linux/man-pages/man2/landlock_add_rule.2.html).
653 landlock_add_rule = 445,
654 /// See doc at [landlock_restrict_self(2)](https://man7.org/linux/man-pages/man2/landlock_restrict_self.2.html).
655 landlock_restrict_self = 446,
656 /// See doc at [memfd_secret(2)](https://man7.org/linux/man-pages/man2/memfd_secret.2.html).
657 memfd_secret = 447,
658 /// See doc at [process_mrelease(2)](https://man7.org/linux/man-pages/man2/process_mrelease.2.html).
659 process_mrelease = 448,
660 /// See doc at [futex_waitv(2)](https://man7.org/linux/man-pages/man2/futex_waitv.2.html).
661 futex_waitv = 449,
662 /// See doc at [set_mempolicy_home_node(2)](https://man7.org/linux/man-pages/man2/set_mempolicy_home_node.2.html).
663 set_mempolicy_home_node = 450,
664 /// See doc at [cachestat(2)](https://man7.org/linux/man-pages/man2/cachestat.2.html).
665 cachestat = 451,
666 /// See doc at [fchmodat2(2)](https://man7.org/linux/man-pages/man2/fchmodat2.2.html).
667 fchmodat2 = 452,
668 /// See doc at [map_shadow_stack(2)](https://man7.org/linux/man-pages/man2/map_shadow_stack.2.html).
669 map_shadow_stack = 453,
670 /// See doc at [futex_wake(2)](https://man7.org/linux/man-pages/man2/futex_wake.2.html).
671 futex_wake = 454,
672 /// See doc at [futex_wait(2)](https://man7.org/linux/man-pages/man2/futex_wait.2.html).
673 futex_wait = 455,
674 /// See doc at [futex_requeue(2)](https://man7.org/linux/man-pages/man2/futex_requeue.2.html).
675 futex_requeue = 456,
676 /// See doc at [statmount(2)](https://man7.org/linux/man-pages/man2/statmount.2.html).
677 statmount = 457,
678 /// See doc at [listmount(2)](https://man7.org/linux/man-pages/man2/listmount.2.html).
679 listmount = 458,
680 /// See doc at [lsm_get_self_attr(2)](https://man7.org/linux/man-pages/man2/lsm_get_self_attr.2.html).
681 lsm_get_self_attr = 459,
682 /// See doc at [lsm_set_self_attr(2)](https://man7.org/linux/man-pages/man2/lsm_set_self_attr.2.html).
683 lsm_set_self_attr = 460,
684 /// See doc at [lsm_list_modules(2)](https://man7.org/linux/man-pages/man2/lsm_list_modules.2.html).
685 lsm_list_modules = 461,
686 /// See doc at [mseal(2)](https://man7.org/linux/man-pages/man2/mseal.2.html).
687 mseal = 462,
688 /// See doc at [setxattrat(2)](https://man7.org/linux/man-pages/man2/setxattrat.2.html).
689 setxattrat = 463,
690 /// See doc at [getxattrat(2)](https://man7.org/linux/man-pages/man2/getxattrat.2.html).
691 getxattrat = 464,
692 /// See doc at [listxattrat(2)](https://man7.org/linux/man-pages/man2/listxattrat.2.html).
693 listxattrat = 465,
694 /// See doc at [removexattrat(2)](https://man7.org/linux/man-pages/man2/removexattrat.2.html).
695 removexattrat = 466,
696 /// See doc at [open_tree_attr(2)](https://man7.org/linux/man-pages/man2/open_tree_attr.2.html).
697 open_tree_attr = 467,
698 /// See doc at [file_getattr(2)](https://man7.org/linux/man-pages/man2/file_getattr.2.html).
699 file_getattr = 468,
700 /// See doc at [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html).
701 file_setattr = 469,
702}