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