]> git.proxmox.com Git - rustc.git/blame - src/vendor/libc/src/unix/notbsd/linux/mips/mips32.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / vendor / libc / src / unix / notbsd / linux / mips / mips32.rs
CommitLineData
9e0c209e 1pub type c_char = i8;
8bb4bdeb
XL
2pub type c_long = i32;
3pub type c_ulong = u32;
4pub type clock_t = i32;
5pub type time_t = i32;
6pub type suseconds_t = i32;
7pub type wchar_t = i32;
8pub type off_t = i32;
9pub type ino_t = u32;
10pub type blkcnt_t = i32;
11pub type blksize_t = i32;
12pub type nlink_t = u32;
041b39d2 13pub type __u64 = ::c_ulonglong;
9e0c209e
SL
14
15s! {
8bb4bdeb
XL
16 pub struct aiocb {
17 pub aio_fildes: ::c_int,
18 pub aio_lio_opcode: ::c_int,
19 pub aio_reqprio: ::c_int,
20 pub aio_buf: *mut ::c_void,
21 pub aio_nbytes: ::size_t,
22 pub aio_sigevent: ::sigevent,
23 __next_prio: *mut aiocb,
24 __abs_prio: ::c_int,
25 __policy: ::c_int,
26 __error_code: ::c_int,
27 __return_value: ::ssize_t,
28 pub aio_offset: off_t,
29 __unused1: [::c_char; 4],
30 __glibc_reserved: [::c_char; 32]
31 }
32
9e0c209e
SL
33 pub struct stat {
34 pub st_dev: ::c_ulong,
8bb4bdeb 35 st_pad1: [::c_long; 3],
9e0c209e
SL
36 pub st_ino: ::ino_t,
37 pub st_mode: ::mode_t,
38 pub st_nlink: ::nlink_t,
39 pub st_uid: ::uid_t,
40 pub st_gid: ::gid_t,
41 pub st_rdev: ::c_ulong,
8bb4bdeb 42 pub st_pad2: [::c_long; 2],
9e0c209e
SL
43 pub st_size: ::off_t,
44 st_pad3: ::c_long,
45 pub st_atime: ::time_t,
46 pub st_atime_nsec: ::c_long,
47 pub st_mtime: ::time_t,
48 pub st_mtime_nsec: ::c_long,
49 pub st_ctime: ::time_t,
50 pub st_ctime_nsec: ::c_long,
51 pub st_blksize: ::blksize_t,
9e0c209e 52 pub st_blocks: ::blkcnt_t,
8bb4bdeb 53 st_pad5: [::c_long; 14],
9e0c209e
SL
54 }
55
56 pub struct stat64 {
57 pub st_dev: ::c_ulong,
8bb4bdeb 58 st_pad1: [::c_long; 3],
9e0c209e
SL
59 pub st_ino: ::ino64_t,
60 pub st_mode: ::mode_t,
61 pub st_nlink: ::nlink_t,
62 pub st_uid: ::uid_t,
63 pub st_gid: ::gid_t,
64 pub st_rdev: ::c_ulong,
65 st_pad2: [::c_long; 2],
66 pub st_size: ::off64_t,
67 pub st_atime: ::time_t,
68 pub st_atime_nsec: ::c_long,
69 pub st_mtime: ::time_t,
70 pub st_mtime_nsec: ::c_long,
71 pub st_ctime: ::time_t,
72 pub st_ctime_nsec: ::c_long,
73 pub st_blksize: ::blksize_t,
74 st_pad3: ::c_long,
75 pub st_blocks: ::blkcnt64_t,
8bb4bdeb 76 st_pad5: [::c_long; 14],
9e0c209e
SL
77 }
78
ea8adc8c
XL
79 pub struct statfs64 {
80 pub f_type: ::c_long,
81 pub f_bsize: ::c_long,
82 pub f_frsize: ::c_long,
83 pub f_blocks: u64,
84 pub f_bfree: u64,
85 pub f_files: u64,
86 pub f_ffree: u64,
87 pub f_bavail: u64,
88 pub f_fsid: ::fsid_t,
89 pub f_namelen: ::c_long,
90 pub f_flags: ::c_long,
91 pub f_spare: [::c_long; 5],
92 }
93
94 pub struct statvfs64 {
95 pub f_bsize: ::c_ulong,
96 pub f_frsize: ::c_ulong,
97 pub f_blocks: u64,
98 pub f_bfree: u64,
99 pub f_bavail: u64,
100 pub f_files: u64,
101 pub f_ffree: u64,
102 pub f_favail: u64,
103 #[cfg(target_endian = "little")]
104 pub f_fsid: ::c_ulong,
105 __f_unused: ::c_int,
106 #[cfg(target_endian = "big")]
107 pub f_fsid: ::c_ulong,
108 pub f_flag: ::c_ulong,
109 pub f_namemax: ::c_ulong,
110 __f_spare: [::c_int; 6],
111 }
112
9e0c209e 113 pub struct pthread_attr_t {
8bb4bdeb 114 __size: [u32; 9]
9e0c209e
SL
115 }
116
117 pub struct sigaction {
118 pub sa_flags: ::c_int,
119 pub sa_sigaction: ::sighandler_t,
120 pub sa_mask: sigset_t,
041b39d2 121 pub sa_restorer: ::dox::Option<extern fn()>,
8bb4bdeb 122 _resv: [::c_int; 1],
9e0c209e
SL
123 }
124
125 pub struct stack_t {
126 pub ss_sp: *mut ::c_void,
127 pub ss_size: ::size_t,
128 pub ss_flags: ::c_int,
129 }
130
131 pub struct sigset_t {
8bb4bdeb 132 __val: [::c_ulong; 32],
9e0c209e
SL
133 }
134
135 pub struct siginfo_t {
136 pub si_signo: ::c_int,
137 pub si_code: ::c_int,
138 pub si_errno: ::c_int,
8bb4bdeb
XL
139 pub _pad: [::c_int; 29],
140 }
141
9e0c209e
SL
142 pub struct ipc_perm {
143 pub __key: ::key_t,
144 pub uid: ::uid_t,
145 pub gid: ::gid_t,
146 pub cuid: ::uid_t,
147 pub cgid: ::gid_t,
148 pub mode: ::c_uint,
149 pub __seq: ::c_ushort,
150 __pad1: ::c_ushort,
151 __unused1: ::c_ulong,
152 __unused2: ::c_ulong
153 }
154
155 pub struct shmid_ds {
156 pub shm_perm: ::ipc_perm,
157 pub shm_segsz: ::size_t,
158 pub shm_atime: ::time_t,
159 pub shm_dtime: ::time_t,
160 pub shm_ctime: ::time_t,
161 pub shm_cpid: ::pid_t,
162 pub shm_lpid: ::pid_t,
163 pub shm_nattch: ::shmatt_t,
164 __unused4: ::c_ulong,
165 __unused5: ::c_ulong
166 }
167
168 pub struct msqid_ds {
169 pub msg_perm: ::ipc_perm,
8bb4bdeb
XL
170 #[cfg(target_endian = "big")]
171 __glibc_reserved1: ::c_ulong,
9e0c209e 172 pub msg_stime: ::time_t,
8bb4bdeb
XL
173 #[cfg(target_endian = "little")]
174 __glibc_reserved1: ::c_ulong,
175 #[cfg(target_endian = "big")]
176 __glibc_reserved2: ::c_ulong,
9e0c209e 177 pub msg_rtime: ::time_t,
8bb4bdeb
XL
178 #[cfg(target_endian = "little")]
179 __glibc_reserved2: ::c_ulong,
180 #[cfg(target_endian = "big")]
181 __glibc_reserved3: ::c_ulong,
9e0c209e 182 pub msg_ctime: ::time_t,
8bb4bdeb
XL
183 #[cfg(target_endian = "little")]
184 __glibc_reserved3: ::c_ulong,
9e0c209e
SL
185 __msg_cbytes: ::c_ulong,
186 pub msg_qnum: ::msgqnum_t,
187 pub msg_qbytes: ::msglen_t,
188 pub msg_lspid: ::pid_t,
189 pub msg_lrpid: ::pid_t,
190 __glibc_reserved4: ::c_ulong,
191 __glibc_reserved5: ::c_ulong,
192 }
193
194 pub struct statfs {
195 pub f_type: ::c_long,
196 pub f_bsize: ::c_long,
197 pub f_frsize: ::c_long,
198 pub f_blocks: ::fsblkcnt_t,
199 pub f_bfree: ::fsblkcnt_t,
200 pub f_files: ::fsblkcnt_t,
201 pub f_ffree: ::fsblkcnt_t,
202 pub f_bavail: ::fsblkcnt_t,
203 pub f_fsid: ::fsid_t,
204
205 pub f_namelen: ::c_long,
206 f_spare: [::c_long; 6],
207 }
208
209 pub struct msghdr {
210 pub msg_name: *mut ::c_void,
211 pub msg_namelen: ::socklen_t,
212 pub msg_iov: *mut ::iovec,
213 pub msg_iovlen: ::size_t,
214 pub msg_control: *mut ::c_void,
215 pub msg_controllen: ::size_t,
216 pub msg_flags: ::c_int,
217 }
218
8bb4bdeb
XL
219 pub struct cmsghdr {
220 pub cmsg_len: ::size_t,
221 pub cmsg_level: ::c_int,
222 pub cmsg_type: ::c_int,
223 }
224
9e0c209e
SL
225 pub struct termios {
226 pub c_iflag: ::tcflag_t,
227 pub c_oflag: ::tcflag_t,
228 pub c_cflag: ::tcflag_t,
229 pub c_lflag: ::tcflag_t,
230 pub c_line: ::cc_t,
231 pub c_cc: [::cc_t; ::NCCS],
232 }
233
8bb4bdeb
XL
234 pub struct flock {
235 pub l_type: ::c_short,
236 pub l_whence: ::c_short,
237 pub l_start: ::off_t,
238 pub l_len: ::off_t,
239 pub l_sysid: ::c_long,
240 pub l_pid: ::pid_t,
241 pad: [::c_long; 4],
242 }
243
9e0c209e
SL
244 pub struct sysinfo {
245 pub uptime: ::c_long,
246 pub loads: [::c_ulong; 3],
247 pub totalram: ::c_ulong,
248 pub freeram: ::c_ulong,
249 pub sharedram: ::c_ulong,
250 pub bufferram: ::c_ulong,
251 pub totalswap: ::c_ulong,
252 pub freeswap: ::c_ulong,
253 pub procs: ::c_ushort,
254 pub pad: ::c_ushort,
255 pub totalhigh: ::c_ulong,
256 pub freehigh: ::c_ulong,
257 pub mem_unit: ::c_uint,
8bb4bdeb 258 pub _f: [::c_char; 8],
9e0c209e 259 }
9e0c209e
SL
260}
261
262pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4;
8bb4bdeb
XL
263pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 24;
264pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 32;
9e0c209e 265pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
041b39d2 266pub const __SIZEOF_PTHREAD_RWLOCKATTR_T: usize = 8;
8bb4bdeb 267
3b2f2976
XL
268pub const O_LARGEFILE: ::c_int = 0x2000;
269
8bb4bdeb
XL
270pub const RLIM_INFINITY: ::rlim_t = 0x7fffffff;
271
abe05a73
XL
272pub const SYS_syscall: ::c_long = 4000 + 0;
273pub const SYS_exit: ::c_long = 4000 + 1;
274pub const SYS_fork: ::c_long = 4000 + 2;
275pub const SYS_read: ::c_long = 4000 + 3;
276pub const SYS_write: ::c_long = 4000 + 4;
277pub const SYS_open: ::c_long = 4000 + 5;
278pub const SYS_close: ::c_long = 4000 + 6;
279pub const SYS_waitpid: ::c_long = 4000 + 7;
280pub const SYS_creat: ::c_long = 4000 + 8;
281pub const SYS_link: ::c_long = 4000 + 9;
282pub const SYS_unlink: ::c_long = 4000 + 10;
283pub const SYS_execve: ::c_long = 4000 + 11;
284pub const SYS_chdir: ::c_long = 4000 + 12;
285pub const SYS_time: ::c_long = 4000 + 13;
286pub const SYS_mknod: ::c_long = 4000 + 14;
287pub const SYS_chmod: ::c_long = 4000 + 15;
288pub const SYS_lchown: ::c_long = 4000 + 16;
289pub const SYS_break: ::c_long = 4000 + 17;
290pub const SYS_unused18: ::c_long = 4000 + 18;
291pub const SYS_lseek: ::c_long = 4000 + 19;
292pub const SYS_getpid: ::c_long = 4000 + 20;
293pub const SYS_mount: ::c_long = 4000 + 21;
294pub const SYS_umount: ::c_long = 4000 + 22;
295pub const SYS_setuid: ::c_long = 4000 + 23;
296pub const SYS_getuid: ::c_long = 4000 + 24;
297pub const SYS_stime: ::c_long = 4000 + 25;
298pub const SYS_ptrace: ::c_long = 4000 + 26;
299pub const SYS_alarm: ::c_long = 4000 + 27;
300pub const SYS_unused28: ::c_long = 4000 + 28;
301pub const SYS_pause: ::c_long = 4000 + 29;
302pub const SYS_utime: ::c_long = 4000 + 30;
303pub const SYS_stty: ::c_long = 4000 + 31;
304pub const SYS_gtty: ::c_long = 4000 + 32;
305pub const SYS_access: ::c_long = 4000 + 33;
306pub const SYS_nice: ::c_long = 4000 + 34;
307pub const SYS_ftime: ::c_long = 4000 + 35;
308pub const SYS_sync: ::c_long = 4000 + 36;
309pub const SYS_kill: ::c_long = 4000 + 37;
310pub const SYS_rename: ::c_long = 4000 + 38;
311pub const SYS_mkdir: ::c_long = 4000 + 39;
312pub const SYS_rmdir: ::c_long = 4000 + 40;
313pub const SYS_dup: ::c_long = 4000 + 41;
314pub const SYS_pipe: ::c_long = 4000 + 42;
315pub const SYS_times: ::c_long = 4000 + 43;
316pub const SYS_prof: ::c_long = 4000 + 44;
317pub const SYS_brk: ::c_long = 4000 + 45;
318pub const SYS_setgid: ::c_long = 4000 + 46;
319pub const SYS_getgid: ::c_long = 4000 + 47;
320pub const SYS_signal: ::c_long = 4000 + 48;
321pub const SYS_geteuid: ::c_long = 4000 + 49;
322pub const SYS_getegid: ::c_long = 4000 + 50;
323pub const SYS_acct: ::c_long = 4000 + 51;
324pub const SYS_umount2: ::c_long = 4000 + 52;
325pub const SYS_lock: ::c_long = 4000 + 53;
326pub const SYS_ioctl: ::c_long = 4000 + 54;
327pub const SYS_fcntl: ::c_long = 4000 + 55;
328pub const SYS_mpx: ::c_long = 4000 + 56;
329pub const SYS_setpgid: ::c_long = 4000 + 57;
330pub const SYS_ulimit: ::c_long = 4000 + 58;
331pub const SYS_unused59: ::c_long = 4000 + 59;
332pub const SYS_umask: ::c_long = 4000 + 60;
333pub const SYS_chroot: ::c_long = 4000 + 61;
334pub const SYS_ustat: ::c_long = 4000 + 62;
335pub const SYS_dup2: ::c_long = 4000 + 63;
336pub const SYS_getppid: ::c_long = 4000 + 64;
337pub const SYS_getpgrp: ::c_long = 4000 + 65;
338pub const SYS_setsid: ::c_long = 4000 + 66;
339pub const SYS_sigaction: ::c_long = 4000 + 67;
340pub const SYS_sgetmask: ::c_long = 4000 + 68;
341pub const SYS_ssetmask: ::c_long = 4000 + 69;
342pub const SYS_setreuid: ::c_long = 4000 + 70;
343pub const SYS_setregid: ::c_long = 4000 + 71;
344pub const SYS_sigsuspend: ::c_long = 4000 + 72;
345pub const SYS_sigpending: ::c_long = 4000 + 73;
346pub const SYS_sethostname: ::c_long = 4000 + 74;
347pub const SYS_setrlimit: ::c_long = 4000 + 75;
348pub const SYS_getrlimit: ::c_long = 4000 + 76;
349pub const SYS_getrusage: ::c_long = 4000 + 77;
350pub const SYS_gettimeofday: ::c_long = 4000 + 78;
351pub const SYS_settimeofday: ::c_long = 4000 + 79;
352pub const SYS_getgroups: ::c_long = 4000 + 80;
353pub const SYS_setgroups: ::c_long = 4000 + 81;
354pub const SYS_reserved82: ::c_long = 4000 + 82;
355pub const SYS_symlink: ::c_long = 4000 + 83;
356pub const SYS_unused84: ::c_long = 4000 + 84;
357pub const SYS_readlink: ::c_long = 4000 + 85;
358pub const SYS_uselib: ::c_long = 4000 + 86;
359pub const SYS_swapon: ::c_long = 4000 + 87;
360pub const SYS_reboot: ::c_long = 4000 + 88;
361pub const SYS_readdir: ::c_long = 4000 + 89;
362pub const SYS_mmap: ::c_long = 4000 + 90;
363pub const SYS_munmap: ::c_long = 4000 + 91;
364pub const SYS_truncate: ::c_long = 4000 + 92;
365pub const SYS_ftruncate: ::c_long = 4000 + 93;
366pub const SYS_fchmod: ::c_long = 4000 + 94;
367pub const SYS_fchown: ::c_long = 4000 + 95;
368pub const SYS_getpriority: ::c_long = 4000 + 96;
369pub const SYS_setpriority: ::c_long = 4000 + 97;
370pub const SYS_profil: ::c_long = 4000 + 98;
371pub const SYS_statfs: ::c_long = 4000 + 99;
372pub const SYS_fstatfs: ::c_long = 4000 + 100;
373pub const SYS_ioperm: ::c_long = 4000 + 101;
374pub const SYS_socketcall: ::c_long = 4000 + 102;
375pub const SYS_syslog: ::c_long = 4000 + 103;
376pub const SYS_setitimer: ::c_long = 4000 + 104;
377pub const SYS_getitimer: ::c_long = 4000 + 105;
378pub const SYS_stat: ::c_long = 4000 + 106;
379pub const SYS_lstat: ::c_long = 4000 + 107;
380pub const SYS_fstat: ::c_long = 4000 + 108;
381pub const SYS_unused109: ::c_long = 4000 + 109;
382pub const SYS_iopl: ::c_long = 4000 + 110;
383pub const SYS_vhangup: ::c_long = 4000 + 111;
384pub const SYS_idle: ::c_long = 4000 + 112;
385pub const SYS_vm86: ::c_long = 4000 + 113;
386pub const SYS_wait4: ::c_long = 4000 + 114;
387pub const SYS_swapoff: ::c_long = 4000 + 115;
388pub const SYS_sysinfo: ::c_long = 4000 + 116;
389pub const SYS_ipc: ::c_long = 4000 + 117;
390pub const SYS_fsync: ::c_long = 4000 + 118;
391pub const SYS_sigreturn: ::c_long = 4000 + 119;
392pub const SYS_clone: ::c_long = 4000 + 120;
393pub const SYS_setdomainname: ::c_long = 4000 + 121;
394pub const SYS_uname: ::c_long = 4000 + 122;
395pub const SYS_modify_ldt: ::c_long = 4000 + 123;
396pub const SYS_adjtimex: ::c_long = 4000 + 124;
397pub const SYS_mprotect: ::c_long = 4000 + 125;
398pub const SYS_sigprocmask: ::c_long = 4000 + 126;
399pub const SYS_create_module: ::c_long = 4000 + 127;
400pub const SYS_init_module: ::c_long = 4000 + 128;
401pub const SYS_delete_module: ::c_long = 4000 + 129;
402pub const SYS_get_kernel_syms: ::c_long = 4000 + 130;
403pub const SYS_quotactl: ::c_long = 4000 + 131;
404pub const SYS_getpgid: ::c_long = 4000 + 132;
405pub const SYS_fchdir: ::c_long = 4000 + 133;
406pub const SYS_bdflush: ::c_long = 4000 + 134;
407pub const SYS_sysfs: ::c_long = 4000 + 135;
408pub const SYS_personality: ::c_long = 4000 + 136;
409pub const SYS_afs_syscall: ::c_long = 4000 + 137;
410pub const SYS_setfsuid: ::c_long = 4000 + 138;
411pub const SYS_setfsgid: ::c_long = 4000 + 139;
412pub const SYS__llseek: ::c_long = 4000 + 140;
413pub const SYS_getdents: ::c_long = 4000 + 141;
414pub const SYS__newselect: ::c_long = 4000 + 142;
415pub const SYS_flock: ::c_long = 4000 + 143;
416pub const SYS_msync: ::c_long = 4000 + 144;
417pub const SYS_readv: ::c_long = 4000 + 145;
418pub const SYS_writev: ::c_long = 4000 + 146;
419pub const SYS_cacheflush: ::c_long = 4000 + 147;
420pub const SYS_cachectl: ::c_long = 4000 + 148;
421pub const SYS_sysmips: ::c_long = 4000 + 149;
422pub const SYS_unused150: ::c_long = 4000 + 150;
423pub const SYS_getsid: ::c_long = 4000 + 151;
424pub const SYS_fdatasync: ::c_long = 4000 + 152;
425pub const SYS__sysctl: ::c_long = 4000 + 153;
426pub const SYS_mlock: ::c_long = 4000 + 154;
427pub const SYS_munlock: ::c_long = 4000 + 155;
428pub const SYS_mlockall: ::c_long = 4000 + 156;
429pub const SYS_munlockall: ::c_long = 4000 + 157;
430pub const SYS_sched_setparam: ::c_long = 4000 + 158;
431pub const SYS_sched_getparam: ::c_long = 4000 + 159;
432pub const SYS_sched_setscheduler: ::c_long = 4000 + 160;
433pub const SYS_sched_getscheduler: ::c_long = 4000 + 161;
434pub const SYS_sched_yield: ::c_long = 4000 + 162;
435pub const SYS_sched_get_priority_max: ::c_long = 4000 + 163;
436pub const SYS_sched_get_priority_min: ::c_long = 4000 + 164;
437pub const SYS_sched_rr_get_interval: ::c_long = 4000 + 165;
438pub const SYS_nanosleep: ::c_long = 4000 + 166;
439pub const SYS_mremap: ::c_long = 4000 + 167;
440pub const SYS_accept: ::c_long = 4000 + 168;
441pub const SYS_bind: ::c_long = 4000 + 169;
442pub const SYS_connect: ::c_long = 4000 + 170;
443pub const SYS_getpeername: ::c_long = 4000 + 171;
444pub const SYS_getsockname: ::c_long = 4000 + 172;
445pub const SYS_getsockopt: ::c_long = 4000 + 173;
446pub const SYS_listen: ::c_long = 4000 + 174;
447pub const SYS_recv: ::c_long = 4000 + 175;
448pub const SYS_recvfrom: ::c_long = 4000 + 176;
449pub const SYS_recvmsg: ::c_long = 4000 + 177;
450pub const SYS_send: ::c_long = 4000 + 178;
451pub const SYS_sendmsg: ::c_long = 4000 + 179;
452pub const SYS_sendto: ::c_long = 4000 + 180;
453pub const SYS_setsockopt: ::c_long = 4000 + 181;
454pub const SYS_shutdown: ::c_long = 4000 + 182;
455pub const SYS_socket: ::c_long = 4000 + 183;
456pub const SYS_socketpair: ::c_long = 4000 + 184;
457pub const SYS_setresuid: ::c_long = 4000 + 185;
458pub const SYS_getresuid: ::c_long = 4000 + 186;
459pub const SYS_query_module: ::c_long = 4000 + 187;
460pub const SYS_poll: ::c_long = 4000 + 188;
461pub const SYS_nfsservctl: ::c_long = 4000 + 189;
462pub const SYS_setresgid: ::c_long = 4000 + 190;
463pub const SYS_getresgid: ::c_long = 4000 + 191;
464pub const SYS_prctl: ::c_long = 4000 + 192;
465pub const SYS_rt_sigreturn: ::c_long = 4000 + 193;
466pub const SYS_rt_sigaction: ::c_long = 4000 + 194;
467pub const SYS_rt_sigprocmask: ::c_long = 4000 + 195;
468pub const SYS_rt_sigpending: ::c_long = 4000 + 196;
469pub const SYS_rt_sigtimedwait: ::c_long = 4000 + 197;
470pub const SYS_rt_sigqueueinfo: ::c_long = 4000 + 198;
471pub const SYS_rt_sigsuspend: ::c_long = 4000 + 199;
472pub const SYS_pread64: ::c_long = 4000 + 200;
473pub const SYS_pwrite64: ::c_long = 4000 + 201;
474pub const SYS_chown: ::c_long = 4000 + 202;
475pub const SYS_getcwd: ::c_long = 4000 + 203;
476pub const SYS_capget: ::c_long = 4000 + 204;
477pub const SYS_capset: ::c_long = 4000 + 205;
478pub const SYS_sigaltstack: ::c_long = 4000 + 206;
479pub const SYS_sendfile: ::c_long = 4000 + 207;
480pub const SYS_getpmsg: ::c_long = 4000 + 208;
481pub const SYS_putpmsg: ::c_long = 4000 + 209;
482pub const SYS_mmap2: ::c_long = 4000 + 210;
483pub const SYS_truncate64: ::c_long = 4000 + 211;
484pub const SYS_ftruncate64: ::c_long = 4000 + 212;
485pub const SYS_stat64: ::c_long = 4000 + 213;
486pub const SYS_lstat64: ::c_long = 4000 + 214;
487pub const SYS_fstat64: ::c_long = 4000 + 215;
488pub const SYS_pivot_root: ::c_long = 4000 + 216;
489pub const SYS_mincore: ::c_long = 4000 + 217;
490pub const SYS_madvise: ::c_long = 4000 + 218;
491pub const SYS_getdents64: ::c_long = 4000 + 219;
492pub const SYS_fcntl64: ::c_long = 4000 + 220;
493pub const SYS_reserved221: ::c_long = 4000 + 221;
494pub const SYS_gettid: ::c_long = 4000 + 222;
495pub const SYS_readahead: ::c_long = 4000 + 223;
496pub const SYS_setxattr: ::c_long = 4000 + 224;
497pub const SYS_lsetxattr: ::c_long = 4000 + 225;
498pub const SYS_fsetxattr: ::c_long = 4000 + 226;
499pub const SYS_getxattr: ::c_long = 4000 + 227;
500pub const SYS_lgetxattr: ::c_long = 4000 + 228;
501pub const SYS_fgetxattr: ::c_long = 4000 + 229;
502pub const SYS_listxattr: ::c_long = 4000 + 230;
503pub const SYS_llistxattr: ::c_long = 4000 + 231;
504pub const SYS_flistxattr: ::c_long = 4000 + 232;
505pub const SYS_removexattr: ::c_long = 4000 + 233;
506pub const SYS_lremovexattr: ::c_long = 4000 + 234;
507pub const SYS_fremovexattr: ::c_long = 4000 + 235;
508pub const SYS_tkill: ::c_long = 4000 + 236;
509pub const SYS_sendfile64: ::c_long = 4000 + 237;
510pub const SYS_futex: ::c_long = 4000 + 238;
511pub const SYS_sched_setaffinity: ::c_long = 4000 + 239;
512pub const SYS_sched_getaffinity: ::c_long = 4000 + 240;
513pub const SYS_io_setup: ::c_long = 4000 + 241;
514pub const SYS_io_destroy: ::c_long = 4000 + 242;
515pub const SYS_io_getevents: ::c_long = 4000 + 243;
516pub const SYS_io_submit: ::c_long = 4000 + 244;
517pub const SYS_io_cancel: ::c_long = 4000 + 245;
518pub const SYS_exit_group: ::c_long = 4000 + 246;
519pub const SYS_lookup_dcookie: ::c_long = 4000 + 247;
520pub const SYS_epoll_create: ::c_long = 4000 + 248;
521pub const SYS_epoll_ctl: ::c_long = 4000 + 249;
522pub const SYS_epoll_wait: ::c_long = 4000 + 250;
523pub const SYS_remap_file_pages: ::c_long = 4000 + 251;
524pub const SYS_set_tid_address: ::c_long = 4000 + 252;
525pub const SYS_restart_syscall: ::c_long = 4000 + 253;
526pub const SYS_fadvise64: ::c_long = 4000 + 254;
527pub const SYS_statfs64: ::c_long = 4000 + 255;
528pub const SYS_fstatfs64: ::c_long = 4000 + 256;
529pub const SYS_timer_create: ::c_long = 4000 + 257;
530pub const SYS_timer_settime: ::c_long = 4000 + 258;
531pub const SYS_timer_gettime: ::c_long = 4000 + 259;
532pub const SYS_timer_getoverrun: ::c_long = 4000 + 260;
533pub const SYS_timer_delete: ::c_long = 4000 + 261;
534pub const SYS_clock_settime: ::c_long = 4000 + 262;
535pub const SYS_clock_gettime: ::c_long = 4000 + 263;
536pub const SYS_clock_getres: ::c_long = 4000 + 264;
537pub const SYS_clock_nanosleep: ::c_long = 4000 + 265;
538pub const SYS_tgkill: ::c_long = 4000 + 266;
539pub const SYS_utimes: ::c_long = 4000 + 267;
540pub const SYS_mbind: ::c_long = 4000 + 268;
541pub const SYS_get_mempolicy: ::c_long = 4000 + 269;
542pub const SYS_set_mempolicy: ::c_long = 4000 + 270;
543pub const SYS_mq_open: ::c_long = 4000 + 271;
544pub const SYS_mq_unlink: ::c_long = 4000 + 272;
545pub const SYS_mq_timedsend: ::c_long = 4000 + 273;
546pub const SYS_mq_timedreceive: ::c_long = 4000 + 274;
547pub const SYS_mq_notify: ::c_long = 4000 + 275;
548pub const SYS_mq_getsetattr: ::c_long = 4000 + 276;
549pub const SYS_vserver: ::c_long = 4000 + 277;
550pub const SYS_waitid: ::c_long = 4000 + 278;
551/* pub const SYS_sys_setaltroot: ::c_long = 4000 + 279; */
552pub const SYS_add_key: ::c_long = 4000 + 280;
553pub const SYS_request_key: ::c_long = 4000 + 281;
554pub const SYS_keyctl: ::c_long = 4000 + 282;
555pub const SYS_set_thread_area: ::c_long = 4000 + 283;
556pub const SYS_inotify_init: ::c_long = 4000 + 284;
557pub const SYS_inotify_add_watch: ::c_long = 4000 + 285;
558pub const SYS_inotify_rm_watch: ::c_long = 4000 + 286;
559pub const SYS_migrate_pages: ::c_long = 4000 + 287;
560pub const SYS_openat: ::c_long = 4000 + 288;
561pub const SYS_mkdirat: ::c_long = 4000 + 289;
562pub const SYS_mknodat: ::c_long = 4000 + 290;
563pub const SYS_fchownat: ::c_long = 4000 + 291;
564pub const SYS_futimesat: ::c_long = 4000 + 292;
565pub const SYS_fstatat64: ::c_long = 4000 + 293;
566pub const SYS_unlinkat: ::c_long = 4000 + 294;
567pub const SYS_renameat: ::c_long = 4000 + 295;
568pub const SYS_linkat: ::c_long = 4000 + 296;
569pub const SYS_symlinkat: ::c_long = 4000 + 297;
570pub const SYS_readlinkat: ::c_long = 4000 + 298;
571pub const SYS_fchmodat: ::c_long = 4000 + 299;
572pub const SYS_faccessat: ::c_long = 4000 + 300;
573pub const SYS_pselect6: ::c_long = 4000 + 301;
574pub const SYS_ppoll: ::c_long = 4000 + 302;
575pub const SYS_unshare: ::c_long = 4000 + 303;
576pub const SYS_splice: ::c_long = 4000 + 304;
577pub const SYS_sync_file_range: ::c_long = 4000 + 305;
578pub const SYS_tee: ::c_long = 4000 + 306;
579pub const SYS_vmsplice: ::c_long = 4000 + 307;
580pub const SYS_move_pages: ::c_long = 4000 + 308;
581pub const SYS_set_robust_list: ::c_long = 4000 + 309;
582pub const SYS_get_robust_list: ::c_long = 4000 + 310;
583pub const SYS_kexec_load: ::c_long = 4000 + 311;
584pub const SYS_getcpu: ::c_long = 4000 + 312;
585pub const SYS_epoll_pwait: ::c_long = 4000 + 313;
586pub const SYS_ioprio_set: ::c_long = 4000 + 314;
587pub const SYS_ioprio_get: ::c_long = 4000 + 315;
588pub const SYS_utimensat: ::c_long = 4000 + 316;
589pub const SYS_signalfd: ::c_long = 4000 + 317;
590pub const SYS_timerfd: ::c_long = 4000 + 318;
591pub const SYS_eventfd: ::c_long = 4000 + 319;
592pub const SYS_fallocate: ::c_long = 4000 + 320;
593pub const SYS_timerfd_create: ::c_long = 4000 + 321;
594pub const SYS_timerfd_gettime: ::c_long = 4000 + 322;
595pub const SYS_timerfd_settime: ::c_long = 4000 + 323;
596pub const SYS_signalfd4: ::c_long = 4000 + 324;
597pub const SYS_eventfd2: ::c_long = 4000 + 325;
598pub const SYS_epoll_create1: ::c_long = 4000 + 326;
599pub const SYS_dup3: ::c_long = 4000 + 327;
600pub const SYS_pipe2: ::c_long = 4000 + 328;
601pub const SYS_inotify_init1: ::c_long = 4000 + 329;
602pub const SYS_preadv: ::c_long = 4000 + 330;
603pub const SYS_pwritev: ::c_long = 4000 + 331;
604pub const SYS_rt_tgsigqueueinfo: ::c_long = 4000 + 332;
605pub const SYS_perf_event_open: ::c_long = 4000 + 333;
606pub const SYS_accept4: ::c_long = 4000 + 334;
607pub const SYS_recvmmsg: ::c_long = 4000 + 335;
608pub const SYS_fanotify_init: ::c_long = 4000 + 336;
609pub const SYS_fanotify_mark: ::c_long = 4000 + 337;
610pub const SYS_prlimit64: ::c_long = 4000 + 338;
611pub const SYS_name_to_handle_at: ::c_long = 4000 + 339;
612pub const SYS_open_by_handle_at: ::c_long = 4000 + 340;
613pub const SYS_clock_adjtime: ::c_long = 4000 + 341;
614pub const SYS_syncfs: ::c_long = 4000 + 342;
615pub const SYS_sendmmsg: ::c_long = 4000 + 343;
616pub const SYS_setns: ::c_long = 4000 + 344;
617pub const SYS_process_vm_readv: ::c_long = 4000 + 345;
618pub const SYS_process_vm_writev: ::c_long = 4000 + 346;
619pub const SYS_kcmp: ::c_long = 4000 + 347;
620pub const SYS_finit_module: ::c_long = 4000 + 348;
621pub const SYS_sched_setattr: ::c_long = 4000 + 349;
622pub const SYS_sched_getattr: ::c_long = 4000 + 350;
623pub const SYS_renameat2: ::c_long = 4000 + 351;
624pub const SYS_seccomp: ::c_long = 4000 + 352;
625pub const SYS_getrandom: ::c_long = 4000 + 353;
626pub const SYS_memfd_create: ::c_long = 4000 + 354;
627pub const SYS_bpf: ::c_long = 4000 + 355;
628pub const SYS_execveat: ::c_long = 4000 + 356;
629pub const SYS_userfaultfd: ::c_long = 4000 + 357;
630pub const SYS_membarrier: ::c_long = 4000 + 358;
631pub const SYS_mlock2: ::c_long = 4000 + 359;
632pub const SYS_copy_file_range: ::c_long = 4000 + 360;
633pub const SYS_preadv2: ::c_long = 4000 + 361;
634pub const SYS_pwritev2: ::c_long = 4000 + 362;
635pub const SYS_pkey_mprotect: ::c_long = 4000 + 363;
636pub const SYS_pkey_alloc: ::c_long = 4000 + 364;
637pub const SYS_pkey_free: ::c_long = 4000 + 365;