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