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