]> git.proxmox.com Git - rustc.git/blame - vendor/libc/src/fuchsia/mod.rs
New upstream version 1.38.0+dfsg1
[rustc.git] / vendor / libc / src / fuchsia / mod.rs
CommitLineData
ff7c6d11
XL
1//! Definitions found commonly among almost all Unix derivatives
2//!
3//! More functions and definitions can be found in the more specific modules
4//! according to the platform in question.
5
ff7c6d11
XL
6// PUB_TYPE
7
69743fb6
XL
8pub type c_schar = i8;
9pub type c_uchar = u8;
10pub type c_short = i16;
11pub type c_ushort = u16;
12pub type c_int = i32;
13pub type c_uint = u32;
14pub type c_float = f32;
15pub type c_double = f64;
16pub type c_longlong = i64;
17pub type c_ulonglong = u64;
18pub type intmax_t = i64;
19pub type uintmax_t = u64;
20
416331ca
XL
21pub type locale_t = *mut ::c_void;
22
69743fb6
XL
23pub type size_t = usize;
24pub type ptrdiff_t = isize;
25pub type intptr_t = isize;
26pub type uintptr_t = usize;
27pub type ssize_t = isize;
28
ff7c6d11
XL
29pub type pid_t = i32;
30pub type uid_t = u32;
31pub type gid_t = u32;
32pub type in_addr_t = u32;
33pub type in_port_t = u16;
34pub type sighandler_t = ::size_t;
35pub type cc_t = ::c_uchar;
36pub type sa_family_t = u16;
37pub type pthread_key_t = ::c_uint;
38pub type speed_t = ::c_uint;
39pub type tcflag_t = ::c_uint;
40pub type clockid_t = ::c_int;
41pub type key_t = ::c_int;
42pub type id_t = ::c_uint;
43pub type useconds_t = u32;
44pub type dev_t = u64;
45pub type socklen_t = u32;
46pub type pthread_t = c_ulong;
47pub type mode_t = u32;
48pub type ino64_t = u64;
49pub type off64_t = i64;
50pub type blkcnt64_t = i64;
51pub type rlim64_t = u64;
52pub type mqd_t = ::c_int;
53pub type nfds_t = ::c_ulong;
54pub type nl_item = ::c_int;
55pub type idtype_t = ::c_uint;
56pub type loff_t = ::c_longlong;
57
58pub type __u8 = ::c_uchar;
59pub type __u16 = ::c_ushort;
60pub type __s16 = ::c_short;
61pub type __u32 = ::c_uint;
62pub type __s32 = ::c_int;
63
64pub type Elf32_Half = u16;
65pub type Elf32_Word = u32;
66pub type Elf32_Off = u32;
67pub type Elf32_Addr = u32;
68
69pub type Elf64_Half = u16;
70pub type Elf64_Word = u32;
71pub type Elf64_Off = u64;
72pub type Elf64_Addr = u64;
73pub type Elf64_Xword = u64;
74
75pub type clock_t = c_long;
76pub type time_t = c_long;
77pub type suseconds_t = c_long;
78pub type ino_t = u64;
79pub type off_t = i64;
80pub type blkcnt_t = i64;
81
82pub type shmatt_t = ::c_ulong;
83pub type msgqnum_t = ::c_ulong;
84pub type msglen_t = ::c_ulong;
85pub type fsblkcnt_t = ::c_ulonglong;
86pub type fsfilcnt_t = ::c_ulonglong;
87pub type rlim_t = ::c_ulonglong;
88
89pub type c_long = i64;
90pub type c_ulong = u64;
91
92// FIXME: why are these uninhabited types? that seems... wrong?
93// Presumably these should be `()` or an `extern type` (when that stabilizes).
532ac7d7 94#[cfg_attr(feature = "extra_traits", derive(Debug))]
ff7c6d11 95pub enum timezone {}
532ac7d7
XL
96impl ::Copy for timezone {}
97impl ::Clone for timezone {
98 fn clone(&self) -> timezone { *self }
99}
100#[cfg_attr(feature = "extra_traits", derive(Debug))]
ff7c6d11 101pub enum DIR {}
532ac7d7
XL
102impl ::Copy for DIR {}
103impl ::Clone for DIR {
104 fn clone(&self) -> DIR { *self }
105}
416331ca 106
532ac7d7 107#[cfg_attr(feature = "extra_traits", derive(Debug))]
ff7c6d11 108pub enum fpos64_t {} // TODO: fill this out with a struct
532ac7d7
XL
109impl ::Copy for fpos64_t {}
110impl ::Clone for fpos64_t {
111 fn clone(&self) -> fpos64_t { *self }
112}
ff7c6d11
XL
113
114// PUB_STRUCT
115
116s! {
117 pub struct group {
118 pub gr_name: *mut ::c_char,
119 pub gr_passwd: *mut ::c_char,
120 pub gr_gid: ::gid_t,
121 pub gr_mem: *mut *mut ::c_char,
122 }
123
124 pub struct utimbuf {
125 pub actime: time_t,
126 pub modtime: time_t,
127 }
128
129 pub struct timeval {
130 pub tv_sec: time_t,
131 pub tv_usec: suseconds_t,
132 }
133
ff7c6d11
XL
134 pub struct timespec {
135 pub tv_sec: time_t,
ff7c6d11
XL
136 pub tv_nsec: ::c_long,
137 }
138
69743fb6
XL
139 // FIXME: the rlimit and rusage related functions and types don't exist
140 // within zircon. Are there reasons for keeping them around?
ff7c6d11
XL
141 pub struct rlimit {
142 pub rlim_cur: rlim_t,
143 pub rlim_max: rlim_t,
144 }
145
146 pub struct rusage {
147 pub ru_utime: timeval,
148 pub ru_stime: timeval,
149 pub ru_maxrss: c_long,
150 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
151 __pad1: u32,
152 pub ru_ixrss: c_long,
153 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
154 __pad2: u32,
155 pub ru_idrss: c_long,
156 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
157 __pad3: u32,
158 pub ru_isrss: c_long,
159 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
160 __pad4: u32,
161 pub ru_minflt: c_long,
162 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
163 __pad5: u32,
164 pub ru_majflt: c_long,
165 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
166 __pad6: u32,
167 pub ru_nswap: c_long,
168 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
169 __pad7: u32,
170 pub ru_inblock: c_long,
171 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
172 __pad8: u32,
173 pub ru_oublock: c_long,
174 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
175 __pad9: u32,
176 pub ru_msgsnd: c_long,
177 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
178 __pad10: u32,
179 pub ru_msgrcv: c_long,
180 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
181 __pad11: u32,
182 pub ru_nsignals: c_long,
183 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
184 __pad12: u32,
185 pub ru_nvcsw: c_long,
186 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
187 __pad13: u32,
188 pub ru_nivcsw: c_long,
189 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
190 __pad14: u32,
ff7c6d11
XL
191 }
192
193 pub struct in_addr {
194 pub s_addr: in_addr_t,
195 }
196
197 pub struct in6_addr {
198 pub s6_addr: [u8; 16],
ff7c6d11
XL
199 }
200
201 pub struct ip_mreq {
202 pub imr_multiaddr: in_addr,
203 pub imr_interface: in_addr,
204 }
205
206 pub struct ipv6_mreq {
207 pub ipv6mr_multiaddr: in6_addr,
ff7c6d11
XL
208 pub ipv6mr_interface: ::c_uint,
209 }
210
211 pub struct hostent {
212 pub h_name: *mut ::c_char,
213 pub h_aliases: *mut *mut ::c_char,
214 pub h_addrtype: ::c_int,
215 pub h_length: ::c_int,
216 pub h_addr_list: *mut *mut ::c_char,
217 }
218
219 pub struct iovec {
220 pub iov_base: *mut ::c_void,
221 pub iov_len: ::size_t,
222 }
223
224 pub struct pollfd {
225 pub fd: ::c_int,
226 pub events: ::c_short,
227 pub revents: ::c_short,
228 }
229
230 pub struct winsize {
231 pub ws_row: ::c_ushort,
232 pub ws_col: ::c_ushort,
233 pub ws_xpixel: ::c_ushort,
234 pub ws_ypixel: ::c_ushort,
235 }
236
237 pub struct linger {
238 pub l_onoff: ::c_int,
239 pub l_linger: ::c_int,
240 }
241
242 pub struct sigval {
243 // Actually a union of an int and a void*
244 pub sival_ptr: *mut ::c_void
245 }
246
247 // <sys/time.h>
248 pub struct itimerval {
249 pub it_interval: ::timeval,
250 pub it_value: ::timeval,
251 }
252
253 // <sys/times.h>
254 pub struct tms {
255 pub tms_utime: ::clock_t,
256 pub tms_stime: ::clock_t,
257 pub tms_cutime: ::clock_t,
258 pub tms_cstime: ::clock_t,
259 }
260
261 pub struct servent {
262 pub s_name: *mut ::c_char,
263 pub s_aliases: *mut *mut ::c_char,
264 pub s_port: ::c_int,
265 pub s_proto: *mut ::c_char,
266 }
267
268 pub struct protoent {
269 pub p_name: *mut ::c_char,
270 pub p_aliases: *mut *mut ::c_char,
271 pub p_proto: ::c_int,
272 }
273
274 pub struct aiocb {
275 pub aio_fildes: ::c_int,
276 pub aio_lio_opcode: ::c_int,
277 pub aio_reqprio: ::c_int,
278 pub aio_buf: *mut ::c_void,
279 pub aio_nbytes: ::size_t,
280 pub aio_sigevent: ::sigevent,
281 __td: *mut ::c_void,
282 __lock: [::c_int; 2],
283 __err: ::c_int,
284 __ret: ::ssize_t,
285 pub aio_offset: off_t,
286 __next: *mut ::c_void,
287 __prev: *mut ::c_void,
288 #[cfg(target_pointer_width = "32")]
289 __dummy4: [::c_char; 24],
290 #[cfg(target_pointer_width = "64")]
291 __dummy4: [::c_char; 16],
292 }
293
294 pub struct sigaction {
295 pub sa_sigaction: ::sighandler_t,
296 pub sa_mask: ::sigset_t,
297 pub sa_flags: ::c_int,
532ac7d7 298 pub sa_restorer: ::Option<extern fn()>,
ff7c6d11
XL
299 }
300
301 pub struct termios {
302 pub c_iflag: ::tcflag_t,
303 pub c_oflag: ::tcflag_t,
304 pub c_cflag: ::tcflag_t,
305 pub c_lflag: ::tcflag_t,
306 pub c_line: ::cc_t,
307 pub c_cc: [::cc_t; ::NCCS],
308 pub __c_ispeed: ::speed_t,
309 pub __c_ospeed: ::speed_t,
310 }
311
312 pub struct flock {
313 pub l_type: ::c_short,
314 pub l_whence: ::c_short,
315 pub l_start: ::off_t,
316 pub l_len: ::off_t,
317 pub l_pid: ::pid_t,
318 }
319
ff7c6d11
XL
320 pub struct ucred {
321 pub pid: ::pid_t,
322 pub uid: ::uid_t,
323 pub gid: ::gid_t,
324 }
325
326 pub struct sockaddr {
327 pub sa_family: sa_family_t,
328 pub sa_data: [::c_char; 14],
329 }
330
331 pub struct sockaddr_in {
332 pub sin_family: sa_family_t,
333 pub sin_port: ::in_port_t,
334 pub sin_addr: ::in_addr,
335 pub sin_zero: [u8; 8],
336 }
337
338 pub struct sockaddr_in6 {
339 pub sin6_family: sa_family_t,
340 pub sin6_port: ::in_port_t,
341 pub sin6_flowinfo: u32,
342 pub sin6_addr: ::in6_addr,
343 pub sin6_scope_id: u32,
344 }
345
ff7c6d11
XL
346 pub struct addrinfo {
347 pub ai_flags: ::c_int,
348 pub ai_family: ::c_int,
349 pub ai_socktype: ::c_int,
350 pub ai_protocol: ::c_int,
351 pub ai_addrlen: socklen_t,
352
353 pub ai_addr: *mut ::sockaddr,
354
355 pub ai_canonname: *mut c_char,
356
357 pub ai_next: *mut addrinfo,
358 }
359
ff7c6d11
XL
360 pub struct sockaddr_ll {
361 pub sll_family: ::c_ushort,
362 pub sll_protocol: ::c_ushort,
363 pub sll_ifindex: ::c_int,
364 pub sll_hatype: ::c_ushort,
365 pub sll_pkttype: ::c_uchar,
366 pub sll_halen: ::c_uchar,
367 pub sll_addr: [::c_uchar; 8]
368 }
369
370 pub struct fd_set {
371 fds_bits: [::c_ulong; FD_SETSIZE / ULONG_SIZE],
372 }
373
374 pub struct tm {
375 pub tm_sec: ::c_int,
376 pub tm_min: ::c_int,
377 pub tm_hour: ::c_int,
378 pub tm_mday: ::c_int,
379 pub tm_mon: ::c_int,
380 pub tm_year: ::c_int,
381 pub tm_wday: ::c_int,
382 pub tm_yday: ::c_int,
383 pub tm_isdst: ::c_int,
384 pub tm_gmtoff: ::c_long,
385 pub tm_zone: *const ::c_char,
386 }
387
388 pub struct sched_param {
389 pub sched_priority: ::c_int,
ff7c6d11 390 pub sched_ss_low_priority: ::c_int,
ff7c6d11 391 pub sched_ss_repl_period: ::timespec,
ff7c6d11 392 pub sched_ss_init_budget: ::timespec,
ff7c6d11
XL
393 pub sched_ss_max_repl: ::c_int,
394 }
395
396 pub struct Dl_info {
397 pub dli_fname: *const ::c_char,
398 pub dli_fbase: *mut ::c_void,
399 pub dli_sname: *const ::c_char,
400 pub dli_saddr: *mut ::c_void,
401 }
402
ff7c6d11 403 pub struct epoll_event {
416331ca
XL
404 pub events: u32,
405 pub u64: u64,
ff7c6d11
XL
406 }
407
ff7c6d11
XL
408 pub struct lconv {
409 pub decimal_point: *mut ::c_char,
410 pub thousands_sep: *mut ::c_char,
411 pub grouping: *mut ::c_char,
412 pub int_curr_symbol: *mut ::c_char,
413 pub currency_symbol: *mut ::c_char,
414 pub mon_decimal_point: *mut ::c_char,
415 pub mon_thousands_sep: *mut ::c_char,
416 pub mon_grouping: *mut ::c_char,
417 pub positive_sign: *mut ::c_char,
418 pub negative_sign: *mut ::c_char,
419 pub int_frac_digits: ::c_char,
420 pub frac_digits: ::c_char,
421 pub p_cs_precedes: ::c_char,
422 pub p_sep_by_space: ::c_char,
423 pub n_cs_precedes: ::c_char,
424 pub n_sep_by_space: ::c_char,
425 pub p_sign_posn: ::c_char,
426 pub n_sign_posn: ::c_char,
427 pub int_p_cs_precedes: ::c_char,
428 pub int_p_sep_by_space: ::c_char,
429 pub int_n_cs_precedes: ::c_char,
430 pub int_n_sep_by_space: ::c_char,
431 pub int_p_sign_posn: ::c_char,
432 pub int_n_sign_posn: ::c_char,
433 }
434
ff7c6d11
XL
435 pub struct rlimit64 {
436 pub rlim_cur: rlim64_t,
437 pub rlim_max: rlim64_t,
438 }
439
440 pub struct glob_t {
441 pub gl_pathc: ::size_t,
442 pub gl_pathv: *mut *mut c_char,
443 pub gl_offs: ::size_t,
444 pub gl_flags: ::c_int,
445
446 __unused1: *mut ::c_void,
447 __unused2: *mut ::c_void,
448 __unused3: *mut ::c_void,
449 __unused4: *mut ::c_void,
450 __unused5: *mut ::c_void,
451 }
452
453 pub struct ifaddrs {
454 pub ifa_next: *mut ifaddrs,
455 pub ifa_name: *mut c_char,
456 pub ifa_flags: ::c_uint,
457 pub ifa_addr: *mut ::sockaddr,
458 pub ifa_netmask: *mut ::sockaddr,
459 pub ifa_ifu: *mut ::sockaddr, // FIXME This should be a union
460 pub ifa_data: *mut ::c_void
461 }
462
ff7c6d11
XL
463 pub struct passwd {
464 pub pw_name: *mut ::c_char,
465 pub pw_passwd: *mut ::c_char,
466 pub pw_uid: ::uid_t,
467 pub pw_gid: ::gid_t,
468 pub pw_gecos: *mut ::c_char,
469 pub pw_dir: *mut ::c_char,
470 pub pw_shell: *mut ::c_char,
471 }
472
473 pub struct spwd {
474 pub sp_namp: *mut ::c_char,
475 pub sp_pwdp: *mut ::c_char,
476 pub sp_lstchg: ::c_long,
477 pub sp_min: ::c_long,
478 pub sp_max: ::c_long,
479 pub sp_warn: ::c_long,
480 pub sp_inact: ::c_long,
481 pub sp_expire: ::c_long,
482 pub sp_flag: ::c_ulong,
483 }
484
485 pub struct statvfs {
486 pub f_bsize: ::c_ulong,
487 pub f_frsize: ::c_ulong,
488 pub f_blocks: ::fsblkcnt_t,
489 pub f_bfree: ::fsblkcnt_t,
490 pub f_bavail: ::fsblkcnt_t,
491 pub f_files: ::fsfilcnt_t,
492 pub f_ffree: ::fsfilcnt_t,
493 pub f_favail: ::fsfilcnt_t,
494 #[cfg(target_endian = "little")]
495 pub f_fsid: ::c_ulong,
496 #[cfg(all(target_pointer_width = "32", not(target_arch = "x86_64")))]
497 __f_unused: ::c_int,
498 #[cfg(target_endian = "big")]
499 pub f_fsid: ::c_ulong,
500 pub f_flag: ::c_ulong,
501 pub f_namemax: ::c_ulong,
502 __f_spare: [::c_int; 6],
503 }
504
505 pub struct dqblk {
416331ca
XL
506 pub dqb_bhardlimit: u64,
507 pub dqb_bsoftlimit: u64,
508 pub dqb_curspace: u64,
509 pub dqb_ihardlimit: u64,
510 pub dqb_isoftlimit: u64,
511 pub dqb_curinodes: u64,
512 pub dqb_btime: u64,
513 pub dqb_itime: u64,
514 pub dqb_valid: u32,
ff7c6d11
XL
515 }
516
517 pub struct signalfd_siginfo {
416331ca
XL
518 pub ssi_signo: u32,
519 pub ssi_errno: i32,
520 pub ssi_code: i32,
521 pub ssi_pid: u32,
522 pub ssi_uid: u32,
523 pub ssi_fd: i32,
524 pub ssi_tid: u32,
525 pub ssi_band: u32,
526 pub ssi_overrun: u32,
527 pub ssi_trapno: u32,
528 pub ssi_status: i32,
529 pub ssi_int: i32,
530 pub ssi_ptr: u64,
531 pub ssi_utime: u64,
532 pub ssi_stime: u64,
533 pub ssi_addr: u64,
534 pub ssi_addr_lsb: u16,
535 _pad2: u16,
536 pub ssi_syscall: i32,
537 pub ssi_call_addr: u64,
538 pub ssi_arch: u32,
539 _pad: [u8; 28],
ff7c6d11
XL
540 }
541
542 pub struct itimerspec {
543 pub it_interval: ::timespec,
544 pub it_value: ::timespec,
545 }
546
547 pub struct fsid_t {
548 __val: [::c_int; 2],
549 }
550
ff7c6d11
XL
551 pub struct cpu_set_t {
552 #[cfg(all(target_pointer_width = "32",
553 not(target_arch = "x86_64")))]
554 bits: [u32; 32],
555 #[cfg(not(all(target_pointer_width = "32",
556 not(target_arch = "x86_64"))))]
557 bits: [u64; 16],
558 }
559
560 pub struct if_nameindex {
561 pub if_index: ::c_uint,
562 pub if_name: *mut ::c_char,
563 }
564
565 // System V IPC
566 pub struct msginfo {
567 pub msgpool: ::c_int,
568 pub msgmap: ::c_int,
569 pub msgmax: ::c_int,
570 pub msgmnb: ::c_int,
571 pub msgmni: ::c_int,
572 pub msgssz: ::c_int,
573 pub msgtql: ::c_int,
574 pub msgseg: ::c_ushort,
575 }
576
577 pub struct mmsghdr {
578 pub msg_hdr: ::msghdr,
579 pub msg_len: ::c_uint,
580 }
581
582 pub struct sembuf {
583 pub sem_num: ::c_ushort,
584 pub sem_op: ::c_short,
585 pub sem_flg: ::c_short,
586 }
587
588 pub struct input_event {
589 pub time: ::timeval,
590 pub type_: ::__u16,
591 pub code: ::__u16,
592 pub value: ::__s32,
593 }
594
595 pub struct input_id {
596 pub bustype: ::__u16,
597 pub vendor: ::__u16,
598 pub product: ::__u16,
599 pub version: ::__u16,
600 }
601
602 pub struct input_absinfo {
603 pub value: ::__s32,
604 pub minimum: ::__s32,
605 pub maximum: ::__s32,
606 pub fuzz: ::__s32,
607 pub flat: ::__s32,
608 pub resolution: ::__s32,
609 }
610
611 pub struct input_keymap_entry {
612 pub flags: ::__u8,
613 pub len: ::__u8,
614 pub index: ::__u16,
615 pub keycode: ::__u32,
616 pub scancode: [::__u8; 32],
617 }
618
619 pub struct input_mask {
620 pub type_: ::__u32,
621 pub codes_size: ::__u32,
622 pub codes_ptr: ::__u64,
623 }
624
625 pub struct ff_replay {
626 pub length: ::__u16,
627 pub delay: ::__u16,
628 }
629
630 pub struct ff_trigger {
631 pub button: ::__u16,
632 pub interval: ::__u16,
633 }
634
635 pub struct ff_envelope {
636 pub attack_length: ::__u16,
637 pub attack_level: ::__u16,
638 pub fade_length: ::__u16,
639 pub fade_level: ::__u16,
640 }
641
642 pub struct ff_constant_effect {
643 pub level: ::__s16,
644 pub envelope: ff_envelope,
645 }
646
647 pub struct ff_ramp_effect {
648 pub start_level: ::__s16,
649 pub end_level: ::__s16,
650 pub envelope: ff_envelope,
651 }
652
653 pub struct ff_condition_effect {
654 pub right_saturation: ::__u16,
655 pub left_saturation: ::__u16,
656
657 pub right_coeff: ::__s16,
658 pub left_coeff: ::__s16,
659
660 pub deadband: ::__u16,
661 pub center: ::__s16,
662 }
663
664 pub struct ff_periodic_effect {
665 pub waveform: ::__u16,
666 pub period: ::__u16,
667 pub magnitude: ::__s16,
668 pub offset: ::__s16,
669 pub phase: ::__u16,
670
671 pub envelope: ff_envelope,
672
673 pub custom_len: ::__u32,
674 pub custom_data: *mut ::__s16,
675 }
676
677 pub struct ff_rumble_effect {
678 pub strong_magnitude: ::__u16,
679 pub weak_magnitude: ::__u16,
680 }
681
682 pub struct ff_effect {
683 pub type_: ::__u16,
684 pub id: ::__s16,
685 pub direction: ::__u16,
686 pub trigger: ff_trigger,
687 pub replay: ff_replay,
688 // FIXME this is actually a union
689 #[cfg(target_pointer_width = "64")]
690 pub u: [u64; 4],
691 #[cfg(target_pointer_width = "32")]
692 pub u: [u32; 7],
693 }
694
695 pub struct dl_phdr_info {
696 #[cfg(target_pointer_width = "64")]
697 pub dlpi_addr: Elf64_Addr,
698 #[cfg(target_pointer_width = "32")]
699 pub dlpi_addr: Elf32_Addr,
700
701 pub dlpi_name: *const ::c_char,
702
703 #[cfg(target_pointer_width = "64")]
704 pub dlpi_phdr: *const Elf64_Phdr,
705 #[cfg(target_pointer_width = "32")]
706 pub dlpi_phdr: *const Elf32_Phdr,
707
708 #[cfg(target_pointer_width = "64")]
709 pub dlpi_phnum: Elf64_Half,
710 #[cfg(target_pointer_width = "32")]
711 pub dlpi_phnum: Elf32_Half,
712
713 pub dlpi_adds: ::c_ulonglong,
714 pub dlpi_subs: ::c_ulonglong,
715 pub dlpi_tls_modid: ::size_t,
716 pub dlpi_tls_data: *mut ::c_void,
717 }
718
719 pub struct Elf32_Phdr {
720 pub p_type: Elf32_Word,
721 pub p_offset: Elf32_Off,
722 pub p_vaddr: Elf32_Addr,
723 pub p_paddr: Elf32_Addr,
724 pub p_filesz: Elf32_Word,
725 pub p_memsz: Elf32_Word,
726 pub p_flags: Elf32_Word,
727 pub p_align: Elf32_Word,
728 }
729
730 pub struct Elf64_Phdr {
731 pub p_type: Elf64_Word,
732 pub p_flags: Elf64_Word,
733 pub p_offset: Elf64_Off,
734 pub p_vaddr: Elf64_Addr,
735 pub p_paddr: Elf64_Addr,
736 pub p_filesz: Elf64_Xword,
737 pub p_memsz: Elf64_Xword,
738 pub p_align: Elf64_Xword,
739 }
740
741 pub struct statfs64 {
742 pub f_type: ::c_ulong,
743 pub f_bsize: ::c_ulong,
744 pub f_blocks: ::fsblkcnt_t,
745 pub f_bfree: ::fsblkcnt_t,
746 pub f_bavail: ::fsblkcnt_t,
747 pub f_files: ::fsfilcnt_t,
748 pub f_ffree: ::fsfilcnt_t,
749 pub f_fsid: ::fsid_t,
750 pub f_namelen: ::c_ulong,
751 pub f_frsize: ::c_ulong,
752 pub f_flags: ::c_ulong,
753 pub f_spare: [::c_ulong; 4],
754 }
755
756 pub struct statvfs64 {
757 pub f_bsize: ::c_ulong,
758 pub f_frsize: ::c_ulong,
759 pub f_blocks: u64,
760 pub f_bfree: u64,
761 pub f_bavail: u64,
762 pub f_files: u64,
763 pub f_ffree: u64,
764 pub f_favail: u64,
765 pub f_fsid: ::c_ulong,
766 pub f_flag: ::c_ulong,
767 pub f_namemax: ::c_ulong,
768 __f_spare: [::c_int; 6],
769 }
770
771 pub struct stack_t {
772 pub ss_sp: *mut ::c_void,
773 pub ss_flags: ::c_int,
774 pub ss_size: ::size_t
775 }
776
777 pub struct pthread_attr_t {
778 __size: [u64; 7]
779 }
780
781 pub struct sigset_t {
782 __val: [::c_ulong; 16],
783 }
784
785 pub struct shmid_ds {
786 pub shm_perm: ::ipc_perm,
787 pub shm_segsz: ::size_t,
788 pub shm_atime: ::time_t,
789 pub shm_dtime: ::time_t,
790 pub shm_ctime: ::time_t,
791 pub shm_cpid: ::pid_t,
792 pub shm_lpid: ::pid_t,
793 pub shm_nattch: ::c_ulong,
794 __pad1: ::c_ulong,
795 __pad2: ::c_ulong,
796 }
797
798 pub struct msqid_ds {
799 pub msg_perm: ::ipc_perm,
800 pub msg_stime: ::time_t,
801 pub msg_rtime: ::time_t,
802 pub msg_ctime: ::time_t,
803 __msg_cbytes: ::c_ulong,
804 pub msg_qnum: ::msgqnum_t,
805 pub msg_qbytes: ::msglen_t,
806 pub msg_lspid: ::pid_t,
807 pub msg_lrpid: ::pid_t,
808 __pad1: ::c_ulong,
809 __pad2: ::c_ulong,
810 }
811
812 pub struct statfs {
813 pub f_type: ::c_ulong,
814 pub f_bsize: ::c_ulong,
815 pub f_blocks: ::fsblkcnt_t,
816 pub f_bfree: ::fsblkcnt_t,
817 pub f_bavail: ::fsblkcnt_t,
818 pub f_files: ::fsfilcnt_t,
819 pub f_ffree: ::fsfilcnt_t,
820 pub f_fsid: ::fsid_t,
821 pub f_namelen: ::c_ulong,
822 pub f_frsize: ::c_ulong,
823 pub f_flags: ::c_ulong,
824 pub f_spare: [::c_ulong; 4],
825 }
826
827 pub struct msghdr {
828 pub msg_name: *mut ::c_void,
829 pub msg_namelen: ::socklen_t,
830 pub msg_iov: *mut ::iovec,
831 pub msg_iovlen: ::c_int,
832 __pad1: ::c_int,
833 pub msg_control: *mut ::c_void,
834 pub msg_controllen: ::socklen_t,
835 __pad2: ::socklen_t,
836 pub msg_flags: ::c_int,
837 }
838
839 pub struct cmsghdr {
840 pub cmsg_len: ::socklen_t,
841 pub __pad1: ::c_int,
842 pub cmsg_level: ::c_int,
843 pub cmsg_type: ::c_int,
844 }
845
846 pub struct sem_t {
847 __val: [::c_int; 8],
848 }
849
850 pub struct siginfo_t {
851 pub si_signo: ::c_int,
852 pub si_errno: ::c_int,
853 pub si_code: ::c_int,
854 pub _pad: [::c_int; 29],
855 _align: [usize; 0],
856 }
857
858 pub struct termios2 {
859 pub c_iflag: ::tcflag_t,
860 pub c_oflag: ::tcflag_t,
861 pub c_cflag: ::tcflag_t,
862 pub c_lflag: ::tcflag_t,
863 pub c_line: ::cc_t,
864 pub c_cc: [::cc_t; 19],
865 pub c_ispeed: ::speed_t,
866 pub c_ospeed: ::speed_t,
867 }
868}
869
532ac7d7
XL
870s_no_extra_traits! {
871 pub struct sysinfo {
872 pub uptime: ::c_ulong,
873 pub loads: [::c_ulong; 3],
874 pub totalram: ::c_ulong,
875 pub freeram: ::c_ulong,
876 pub sharedram: ::c_ulong,
877 pub bufferram: ::c_ulong,
878 pub totalswap: ::c_ulong,
879 pub freeswap: ::c_ulong,
880 pub procs: ::c_ushort,
881 pub pad: ::c_ushort,
882 pub totalhigh: ::c_ulong,
883 pub freehigh: ::c_ulong,
884 pub mem_unit: ::c_uint,
885 pub __reserved: [::c_char; 256],
886 }
887
888 pub struct sockaddr_un {
889 pub sun_family: sa_family_t,
890 pub sun_path: [::c_char; 108]
891 }
892
893 pub struct sockaddr_storage {
894 pub ss_family: sa_family_t,
895 __ss_align: ::size_t,
896 __ss_pad2: [u8; 128 - 2 * 8],
897 }
898
899 pub struct utsname {
900 pub sysname: [::c_char; 65],
901 pub nodename: [::c_char; 65],
902 pub release: [::c_char; 65],
903 pub version: [::c_char; 65],
904 pub machine: [::c_char; 65],
905 pub domainname: [::c_char; 65]
906 }
907
908 pub struct dirent {
909 pub d_ino: ::ino_t,
910 pub d_off: ::off_t,
911 pub d_reclen: ::c_ushort,
912 pub d_type: ::c_uchar,
913 pub d_name: [::c_char; 256],
914 }
915
916 pub struct dirent64 {
917 pub d_ino: ::ino64_t,
918 pub d_off: ::off64_t,
919 pub d_reclen: ::c_ushort,
920 pub d_type: ::c_uchar,
921 pub d_name: [::c_char; 256],
922 }
416331ca
XL
923
924 // x32 compatibility
925 // See https://sourceware.org/bugzilla/show_bug.cgi?id=21279
926 pub struct mq_attr {
927 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
928 pub mq_flags: i64,
929 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
930 pub mq_maxmsg: i64,
931 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
932 pub mq_msgsize: i64,
933 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
934 pub mq_curmsgs: i64,
935 #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
936 pad: [i64; 4],
937
938 #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
939 pub mq_flags: ::c_long,
940 #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
941 pub mq_maxmsg: ::c_long,
942 #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
943 pub mq_msgsize: ::c_long,
944 #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
945 pub mq_curmsgs: ::c_long,
946 #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
947 pad: [::c_long; 4],
948 }
949
950 pub struct sockaddr_nl {
951 pub nl_family: ::sa_family_t,
952 nl_pad: ::c_ushort,
953 pub nl_pid: u32,
954 pub nl_groups: u32
955 }
956
957 pub struct sigevent {
958 pub sigev_value: ::sigval,
959 pub sigev_signo: ::c_int,
960 pub sigev_notify: ::c_int,
961 pub sigev_notify_function: fn(::sigval),
962 pub sigev_notify_attributes: *mut pthread_attr_t,
963 pub __pad: [::c_char; 56 - 3 * 8 /* 8 == sizeof(long) */],
964 }
532ac7d7
XL
965}
966
967cfg_if! {
968 if #[cfg(feature = "extra_traits")] {
969 impl PartialEq for sysinfo {
970 fn eq(&self, other: &sysinfo) -> bool {
971 self.uptime == other.uptime
972 && self.loads == other.loads
973 && self.totalram == other.totalram
974 && self.freeram == other.freeram
975 && self.sharedram == other.sharedram
976 && self.bufferram == other.bufferram
977 && self.totalswap == other.totalswap
978 && self.freeswap == other.freeswap
979 && self.procs == other.procs
980 && self.pad == other.pad
981 && self.totalhigh == other.totalhigh
982 && self.freehigh == other.freehigh
983 && self.mem_unit == other.mem_unit
984 && self
985 .__reserved
986 .iter()
987 .zip(other.__reserved.iter())
988 .all(|(a,b)| a == b)
989 }
990 }
991 impl Eq for sysinfo {}
992 impl ::fmt::Debug for sysinfo {
993 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
994 f.debug_struct("sysinfo")
995 .field("uptime", &self.uptime)
996 .field("loads", &self.loads)
997 .field("totalram", &self.totalram)
998 .field("freeram", &self.freeram)
999 .field("sharedram", &self.sharedram)
1000 .field("bufferram", &self.bufferram)
1001 .field("totalswap", &self.totalswap)
1002 .field("freeswap", &self.freeswap)
1003 .field("procs", &self.procs)
1004 .field("pad", &self.pad)
1005 .field("totalhigh", &self.totalhigh)
1006 .field("freehigh", &self.freehigh)
1007 .field("mem_unit", &self.mem_unit)
1008 // FIXME: .field("__reserved", &self.__reserved)
1009 .finish()
1010 }
1011 }
1012 impl ::hash::Hash for sysinfo {
1013 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1014 self.uptime.hash(state);
1015 self.loads.hash(state);
1016 self.totalram.hash(state);
1017 self.freeram.hash(state);
1018 self.sharedram.hash(state);
1019 self.bufferram.hash(state);
1020 self.totalswap.hash(state);
1021 self.freeswap.hash(state);
1022 self.procs.hash(state);
1023 self.pad.hash(state);
1024 self.totalhigh.hash(state);
1025 self.freehigh.hash(state);
1026 self.mem_unit.hash(state);
1027 self.__reserved.hash(state);
1028 }
1029 }
1030
1031 impl PartialEq for sockaddr_un {
1032 fn eq(&self, other: &sockaddr_un) -> bool {
1033 self.sun_family == other.sun_family
1034 && self
1035 .sun_path
1036 .iter()
1037 .zip(other.sun_path.iter())
1038 .all(|(a,b)| a == b)
1039 }
1040 }
1041 impl Eq for sockaddr_un {}
1042 impl ::fmt::Debug for sockaddr_un {
1043 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1044 f.debug_struct("sockaddr_un")
1045 .field("sun_family", &self.sun_family)
1046 // FIXME: .field("sun_path", &self.sun_path)
1047 .finish()
1048 }
1049 }
1050 impl ::hash::Hash for sockaddr_un {
1051 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1052 self.sun_family.hash(state);
1053 self.sun_path.hash(state);
1054 }
1055 }
1056
1057 impl PartialEq for sockaddr_storage {
1058 fn eq(&self, other: &sockaddr_storage) -> bool {
1059 self.ss_family == other.ss_family
1060 && self.__ss_align == other.__ss_align
1061 && self
1062 .__ss_pad2
1063 .iter()
1064 .zip(other.__ss_pad2.iter())
1065 .all(|(a, b)| a == b)
1066 }
1067 }
1068 impl Eq for sockaddr_storage {}
1069 impl ::fmt::Debug for sockaddr_storage {
1070 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1071 f.debug_struct("sockaddr_storage")
1072 .field("ss_family", &self.ss_family)
1073 .field("__ss_align", &self.__ss_align)
1074 // FIXME: .field("__ss_pad2", &self.__ss_pad2)
1075 .finish()
1076 }
1077 }
1078 impl ::hash::Hash for sockaddr_storage {
1079 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1080 self.ss_family.hash(state);
1081 self.__ss_align.hash(state);
1082 self.__ss_pad2.hash(state);
1083 }
1084 }
1085
1086 impl PartialEq for utsname {
1087 fn eq(&self, other: &utsname) -> bool {
1088 self.sysname
1089 .iter()
1090 .zip(other.sysname.iter())
1091 .all(|(a,b)| a == b)
1092 && self
1093 .nodename
1094 .iter()
1095 .zip(other.nodename.iter())
1096 .all(|(a,b)| a == b)
1097 && self
1098 .release
1099 .iter()
1100 .zip(other.release.iter())
1101 .all(|(a,b)| a == b)
1102 && self
1103 .version
1104 .iter()
1105 .zip(other.version.iter())
1106 .all(|(a,b)| a == b)
1107 && self
1108 .machine
1109 .iter()
1110 .zip(other.machine.iter())
1111 .all(|(a,b)| a == b)
1112 }
1113 }
1114 impl Eq for utsname {}
1115 impl ::fmt::Debug for utsname {
1116 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1117 f.debug_struct("utsname")
1118 // FIXME: .field("sysname", &self.sysname)
1119 // FIXME: .field("nodename", &self.nodename)
1120 // FIXME: .field("release", &self.release)
1121 // FIXME: .field("version", &self.version)
1122 // FIXME: .field("machine", &self.machine)
1123 .finish()
1124 }
1125 }
1126 impl ::hash::Hash for utsname {
1127 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1128 self.sysname.hash(state);
1129 self.nodename.hash(state);
1130 self.release.hash(state);
1131 self.version.hash(state);
1132 self.machine.hash(state);
1133 }
1134 }
1135
1136 impl PartialEq for dirent {
1137 fn eq(&self, other: &dirent) -> bool {
1138 self.d_ino == other.d_ino
1139 && self.d_off == other.d_off
1140 && self.d_reclen == other.d_reclen
1141 && self.d_type == other.d_type
1142 && self
1143 .d_name
1144 .iter()
1145 .zip(other.d_name.iter())
1146 .all(|(a,b)| a == b)
1147 }
1148 }
1149 impl Eq for dirent {}
1150 impl ::fmt::Debug for dirent {
1151 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1152 f.debug_struct("dirent")
1153 .field("d_ino", &self.d_ino)
1154 .field("d_off", &self.d_off)
1155 .field("d_reclen", &self.d_reclen)
1156 .field("d_type", &self.d_type)
1157 // FIXME: .field("d_name", &self.d_name)
1158 .finish()
1159 }
1160 }
1161 impl ::hash::Hash for dirent {
1162 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1163 self.d_ino.hash(state);
1164 self.d_off.hash(state);
1165 self.d_reclen.hash(state);
1166 self.d_type.hash(state);
1167 self.d_name.hash(state);
1168 }
1169 }
1170
1171 impl PartialEq for dirent64 {
1172 fn eq(&self, other: &dirent64) -> bool {
1173 self.d_ino == other.d_ino
1174 && self.d_off == other.d_off
1175 && self.d_reclen == other.d_reclen
1176 && self.d_type == other.d_type
1177 && self
1178 .d_name
1179 .iter()
1180 .zip(other.d_name.iter())
1181 .all(|(a,b)| a == b)
1182 }
1183 }
1184 impl Eq for dirent64 {}
1185 impl ::fmt::Debug for dirent64 {
1186 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1187 f.debug_struct("dirent64")
1188 .field("d_ino", &self.d_ino)
1189 .field("d_off", &self.d_off)
1190 .field("d_reclen", &self.d_reclen)
1191 .field("d_type", &self.d_type)
1192 // FIXME: .field("d_name", &self.d_name)
1193 .finish()
1194 }
1195 }
1196 impl ::hash::Hash for dirent64 {
1197 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1198 self.d_ino.hash(state);
1199 self.d_off.hash(state);
1200 self.d_reclen.hash(state);
1201 self.d_type.hash(state);
1202 self.d_name.hash(state);
1203 }
1204 }
416331ca
XL
1205
1206 impl PartialEq for mq_attr {
1207 fn eq(&self, other: &mq_attr) -> bool {
1208 self.mq_flags == other.mq_flags &&
1209 self.mq_maxmsg == other.mq_maxmsg &&
1210 self.mq_msgsize == other.mq_msgsize &&
1211 self.mq_curmsgs == other.mq_curmsgs
1212 }
1213 }
1214 impl Eq for mq_attr {}
1215 impl ::fmt::Debug for mq_attr {
1216 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1217 f.debug_struct("mq_attr")
1218 .field("mq_flags", &self.mq_flags)
1219 .field("mq_maxmsg", &self.mq_maxmsg)
1220 .field("mq_msgsize", &self.mq_msgsize)
1221 .field("mq_curmsgs", &self.mq_curmsgs)
1222 .finish()
1223 }
1224 }
1225 impl ::hash::Hash for mq_attr {
1226 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1227 self.mq_flags.hash(state);
1228 self.mq_maxmsg.hash(state);
1229 self.mq_msgsize.hash(state);
1230 self.mq_curmsgs.hash(state);
1231 }
1232 }
1233
1234 impl PartialEq for sockaddr_nl {
1235 fn eq(&self, other: &sockaddr_nl) -> bool {
1236 self.nl_family == other.nl_family &&
1237 self.nl_pid == other.nl_pid &&
1238 self.nl_groups == other.nl_groups
1239 }
1240 }
1241 impl Eq for sockaddr_nl {}
1242 impl ::fmt::Debug for sockaddr_nl {
1243 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1244 f.debug_struct("sockaddr_nl")
1245 .field("nl_family", &self.nl_family)
1246 .field("nl_pid", &self.nl_pid)
1247 .field("nl_groups", &self.nl_groups)
1248 .finish()
1249 }
1250 }
1251 impl ::hash::Hash for sockaddr_nl {
1252 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1253 self.nl_family.hash(state);
1254 self.nl_pid.hash(state);
1255 self.nl_groups.hash(state);
1256 }
1257 }
1258
1259 impl PartialEq for sigevent {
1260 fn eq(&self, other: &sigevent) -> bool {
1261 self.sigev_value == other.sigev_value
1262 && self.sigev_signo == other.sigev_signo
1263 && self.sigev_notify == other.sigev_notify
1264 && self.sigev_notify_function == other.sigev_notify_function
1265 && self.sigev_notify_attributes
1266 == other.sigev_notify_attributes
1267 }
1268 }
1269 impl Eq for sigevent {}
1270 impl ::fmt::Debug for sigevent {
1271 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1272 f.debug_struct("sigevent")
1273 .field("sigev_value", &self.sigev_value)
1274 .field("sigev_signo", &self.sigev_signo)
1275 .field("sigev_notify", &self.sigev_notify)
1276 .field("sigev_notify_function", &self.sigev_notify_function)
1277 .field("sigev_notify_attributes",
1278 &self.sigev_notify_attributes)
1279 .finish()
1280 }
1281 }
1282 impl ::hash::Hash for sigevent {
1283 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1284 self.sigev_value.hash(state);
1285 self.sigev_signo.hash(state);
1286 self.sigev_notify.hash(state);
1287 self.sigev_notify_function.hash(state);
1288 self.sigev_notify_attributes.hash(state);
1289 }
1290 }
532ac7d7
XL
1291 }
1292}
1293
ff7c6d11
XL
1294// PUB_CONST
1295
69743fb6
XL
1296pub const INT_MIN: c_int = -2147483648;
1297pub const INT_MAX: c_int = 2147483647;
1298
ff7c6d11
XL
1299pub const SIG_DFL: sighandler_t = 0 as sighandler_t;
1300pub const SIG_IGN: sighandler_t = 1 as sighandler_t;
1301pub const SIG_ERR: sighandler_t = !0 as sighandler_t;
1302
1303pub const DT_FIFO: u8 = 1;
1304pub const DT_CHR: u8 = 2;
1305pub const DT_DIR: u8 = 4;
1306pub const DT_BLK: u8 = 6;
1307pub const DT_REG: u8 = 8;
1308pub const DT_LNK: u8 = 10;
1309pub const DT_SOCK: u8 = 12;
1310
1311pub const FD_CLOEXEC: ::c_int = 0x1;
1312
1313pub const USRQUOTA: ::c_int = 0;
1314pub const GRPQUOTA: ::c_int = 1;
1315
1316pub const SIGIOT: ::c_int = 6;
1317
1318pub const S_ISUID: ::c_int = 0x800;
1319pub const S_ISGID: ::c_int = 0x400;
1320pub const S_ISVTX: ::c_int = 0x200;
1321
1322pub const IF_NAMESIZE: ::size_t = 16;
1323
1324pub const LOG_EMERG: ::c_int = 0;
1325pub const LOG_ALERT: ::c_int = 1;
1326pub const LOG_CRIT: ::c_int = 2;
1327pub const LOG_ERR: ::c_int = 3;
1328pub const LOG_WARNING: ::c_int = 4;
1329pub const LOG_NOTICE: ::c_int = 5;
1330pub const LOG_INFO: ::c_int = 6;
1331pub const LOG_DEBUG: ::c_int = 7;
1332
1333pub const LOG_KERN: ::c_int = 0;
1334pub const LOG_USER: ::c_int = 1 << 3;
1335pub const LOG_MAIL: ::c_int = 2 << 3;
1336pub const LOG_DAEMON: ::c_int = 3 << 3;
1337pub const LOG_AUTH: ::c_int = 4 << 3;
1338pub const LOG_SYSLOG: ::c_int = 5 << 3;
1339pub const LOG_LPR: ::c_int = 6 << 3;
1340pub const LOG_NEWS: ::c_int = 7 << 3;
1341pub const LOG_UUCP: ::c_int = 8 << 3;
1342pub const LOG_LOCAL0: ::c_int = 16 << 3;
1343pub const LOG_LOCAL1: ::c_int = 17 << 3;
1344pub const LOG_LOCAL2: ::c_int = 18 << 3;
1345pub const LOG_LOCAL3: ::c_int = 19 << 3;
1346pub const LOG_LOCAL4: ::c_int = 20 << 3;
1347pub const LOG_LOCAL5: ::c_int = 21 << 3;
1348pub const LOG_LOCAL6: ::c_int = 22 << 3;
1349pub const LOG_LOCAL7: ::c_int = 23 << 3;
1350
1351pub const LOG_PID: ::c_int = 0x01;
1352pub const LOG_CONS: ::c_int = 0x02;
1353pub const LOG_ODELAY: ::c_int = 0x04;
1354pub const LOG_NDELAY: ::c_int = 0x08;
1355pub const LOG_NOWAIT: ::c_int = 0x10;
1356
1357pub const LOG_PRIMASK: ::c_int = 7;
1358pub const LOG_FACMASK: ::c_int = 0x3f8;
1359
1360pub const PRIO_PROCESS: ::c_int = 0;
1361pub const PRIO_PGRP: ::c_int = 1;
1362pub const PRIO_USER: ::c_int = 2;
1363
1364pub const PRIO_MIN: ::c_int = -20;
1365pub const PRIO_MAX: ::c_int = 20;
1366
1367pub const IPPROTO_ICMP: ::c_int = 1;
1368pub const IPPROTO_ICMPV6: ::c_int = 58;
1369pub const IPPROTO_TCP: ::c_int = 6;
1370pub const IPPROTO_UDP: ::c_int = 17;
1371pub const IPPROTO_IP: ::c_int = 0;
1372pub const IPPROTO_IPV6: ::c_int = 41;
1373
1374pub const INADDR_LOOPBACK: in_addr_t = 2130706433;
1375pub const INADDR_ANY: in_addr_t = 0;
1376pub const INADDR_BROADCAST: in_addr_t = 4294967295;
1377pub const INADDR_NONE: in_addr_t = 4294967295;
1378
1379pub const EXIT_FAILURE: ::c_int = 1;
1380pub const EXIT_SUCCESS: ::c_int = 0;
1381pub const RAND_MAX: ::c_int = 2147483647;
1382pub const EOF: ::c_int = -1;
1383pub const SEEK_SET: ::c_int = 0;
1384pub const SEEK_CUR: ::c_int = 1;
1385pub const SEEK_END: ::c_int = 2;
1386pub const _IOFBF: ::c_int = 0;
1387pub const _IONBF: ::c_int = 2;
1388pub const _IOLBF: ::c_int = 1;
1389
1390pub const F_DUPFD: ::c_int = 0;
1391pub const F_GETFD: ::c_int = 1;
1392pub const F_SETFD: ::c_int = 2;
1393pub const F_GETFL: ::c_int = 3;
1394pub const F_SETFL: ::c_int = 4;
1395
1396// Linux-specific fcntls
1397pub const F_SETLEASE: ::c_int = 1024;
1398pub const F_GETLEASE: ::c_int = 1025;
1399pub const F_NOTIFY: ::c_int = 1026;
1400pub const F_CANCELLK: ::c_int = 1029;
1401pub const F_DUPFD_CLOEXEC: ::c_int = 1030;
1402pub const F_SETPIPE_SZ: ::c_int = 1031;
1403pub const F_GETPIPE_SZ: ::c_int = 1032;
1404pub const F_ADD_SEALS: ::c_int = 1033;
1405pub const F_GET_SEALS: ::c_int = 1034;
1406
1407pub const F_SEAL_SEAL: ::c_int = 0x0001;
1408pub const F_SEAL_SHRINK: ::c_int = 0x0002;
1409pub const F_SEAL_GROW: ::c_int = 0x0004;
1410pub const F_SEAL_WRITE: ::c_int = 0x0008;
1411
1412// TODO(#235): Include file sealing fcntls once we have a way to verify them.
1413
1414pub const SIGTRAP: ::c_int = 5;
1415
1416pub const PTHREAD_CREATE_JOINABLE: ::c_int = 0;
1417pub const PTHREAD_CREATE_DETACHED: ::c_int = 1;
1418
1419pub const CLOCK_REALTIME: ::clockid_t = 0;
1420pub const CLOCK_MONOTONIC: ::clockid_t = 1;
1421pub const CLOCK_PROCESS_CPUTIME_ID: ::clockid_t = 2;
1422pub const CLOCK_THREAD_CPUTIME_ID: ::clockid_t = 3;
1423pub const CLOCK_MONOTONIC_RAW: ::clockid_t = 4;
1424pub const CLOCK_REALTIME_COARSE: ::clockid_t = 5;
1425pub const CLOCK_MONOTONIC_COARSE: ::clockid_t = 6;
1426pub const CLOCK_BOOTTIME: ::clockid_t = 7;
1427pub const CLOCK_REALTIME_ALARM: ::clockid_t = 8;
1428pub const CLOCK_BOOTTIME_ALARM: ::clockid_t = 9;
1429// TODO(#247) Someday our Travis shall have glibc 2.21 (released in Sep
1430// 2014.) See also musl/mod.rs
1431// pub const CLOCK_SGI_CYCLE: ::clockid_t = 10;
1432// pub const CLOCK_TAI: ::clockid_t = 11;
1433pub const TIMER_ABSTIME: ::c_int = 1;
1434
1435pub const RLIMIT_CPU: ::c_int = 0;
1436pub const RLIMIT_FSIZE: ::c_int = 1;
1437pub const RLIMIT_DATA: ::c_int = 2;
1438pub const RLIMIT_STACK: ::c_int = 3;
1439pub const RLIMIT_CORE: ::c_int = 4;
1440pub const RLIMIT_LOCKS: ::c_int = 10;
1441pub const RLIMIT_SIGPENDING: ::c_int = 11;
1442pub const RLIMIT_MSGQUEUE: ::c_int = 12;
1443pub const RLIMIT_NICE: ::c_int = 13;
1444pub const RLIMIT_RTPRIO: ::c_int = 14;
1445
1446pub const RUSAGE_SELF: ::c_int = 0;
1447
1448pub const O_RDONLY: ::c_int = 0;
1449pub const O_WRONLY: ::c_int = 1;
1450pub const O_RDWR: ::c_int = 2;
1451
1452pub const SOCK_CLOEXEC: ::c_int = O_CLOEXEC;
1453
1454pub const S_IFIFO: ::mode_t = 4096;
1455pub const S_IFCHR: ::mode_t = 8192;
1456pub const S_IFBLK: ::mode_t = 24576;
1457pub const S_IFDIR: ::mode_t = 16384;
1458pub const S_IFREG: ::mode_t = 32768;
1459pub const S_IFLNK: ::mode_t = 40960;
1460pub const S_IFSOCK: ::mode_t = 49152;
1461pub const S_IFMT: ::mode_t = 61440;
1462pub const S_IRWXU: ::mode_t = 448;
1463pub const S_IXUSR: ::mode_t = 64;
1464pub const S_IWUSR: ::mode_t = 128;
1465pub const S_IRUSR: ::mode_t = 256;
1466pub const S_IRWXG: ::mode_t = 56;
1467pub const S_IXGRP: ::mode_t = 8;
1468pub const S_IWGRP: ::mode_t = 16;
1469pub const S_IRGRP: ::mode_t = 32;
1470pub const S_IRWXO: ::mode_t = 7;
1471pub const S_IXOTH: ::mode_t = 1;
1472pub const S_IWOTH: ::mode_t = 2;
1473pub const S_IROTH: ::mode_t = 4;
1474pub const F_OK: ::c_int = 0;
1475pub const R_OK: ::c_int = 4;
1476pub const W_OK: ::c_int = 2;
1477pub const X_OK: ::c_int = 1;
1478pub const STDIN_FILENO: ::c_int = 0;
1479pub const STDOUT_FILENO: ::c_int = 1;
1480pub const STDERR_FILENO: ::c_int = 2;
1481pub const SIGHUP: ::c_int = 1;
1482pub const SIGINT: ::c_int = 2;
1483pub const SIGQUIT: ::c_int = 3;
1484pub const SIGILL: ::c_int = 4;
1485pub const SIGABRT: ::c_int = 6;
1486pub const SIGFPE: ::c_int = 8;
1487pub const SIGKILL: ::c_int = 9;
1488pub const SIGSEGV: ::c_int = 11;
1489pub const SIGPIPE: ::c_int = 13;
1490pub const SIGALRM: ::c_int = 14;
1491pub const SIGTERM: ::c_int = 15;
1492
1493pub const PROT_NONE: ::c_int = 0;
1494pub const PROT_READ: ::c_int = 1;
1495pub const PROT_WRITE: ::c_int = 2;
1496pub const PROT_EXEC: ::c_int = 4;
1497
1498pub const LC_CTYPE: ::c_int = 0;
1499pub const LC_NUMERIC: ::c_int = 1;
1500pub const LC_TIME: ::c_int = 2;
1501pub const LC_COLLATE: ::c_int = 3;
1502pub const LC_MONETARY: ::c_int = 4;
1503pub const LC_MESSAGES: ::c_int = 5;
1504pub const LC_ALL: ::c_int = 6;
1505pub const LC_CTYPE_MASK: ::c_int = (1 << LC_CTYPE);
1506pub const LC_NUMERIC_MASK: ::c_int = (1 << LC_NUMERIC);
1507pub const LC_TIME_MASK: ::c_int = (1 << LC_TIME);
1508pub const LC_COLLATE_MASK: ::c_int = (1 << LC_COLLATE);
1509pub const LC_MONETARY_MASK: ::c_int = (1 << LC_MONETARY);
1510pub const LC_MESSAGES_MASK: ::c_int = (1 << LC_MESSAGES);
1511// LC_ALL_MASK defined per platform
1512
1513pub const MAP_FILE: ::c_int = 0x0000;
1514pub const MAP_SHARED: ::c_int = 0x0001;
1515pub const MAP_PRIVATE: ::c_int = 0x0002;
1516pub const MAP_FIXED: ::c_int = 0x0010;
1517
1518pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void;
1519
1520// MS_ flags for msync(2)
1521pub const MS_ASYNC: ::c_int = 0x0001;
1522pub const MS_INVALIDATE: ::c_int = 0x0002;
1523pub const MS_SYNC: ::c_int = 0x0004;
1524
1525// MS_ flags for mount(2)
1526pub const MS_RDONLY: ::c_ulong = 0x01;
1527pub const MS_NOSUID: ::c_ulong = 0x02;
1528pub const MS_NODEV: ::c_ulong = 0x04;
1529pub const MS_NOEXEC: ::c_ulong = 0x08;
1530pub const MS_SYNCHRONOUS: ::c_ulong = 0x10;
1531pub const MS_REMOUNT: ::c_ulong = 0x20;
1532pub const MS_MANDLOCK: ::c_ulong = 0x40;
1533pub const MS_DIRSYNC: ::c_ulong = 0x80;
1534pub const MS_NOATIME: ::c_ulong = 0x0400;
1535pub const MS_NODIRATIME: ::c_ulong = 0x0800;
1536pub const MS_BIND: ::c_ulong = 0x1000;
1537pub const MS_MOVE: ::c_ulong = 0x2000;
1538pub const MS_REC: ::c_ulong = 0x4000;
1539pub const MS_SILENT: ::c_ulong = 0x8000;
1540pub const MS_POSIXACL: ::c_ulong = 0x010000;
1541pub const MS_UNBINDABLE: ::c_ulong = 0x020000;
1542pub const MS_PRIVATE: ::c_ulong = 0x040000;
1543pub const MS_SLAVE: ::c_ulong = 0x080000;
1544pub const MS_SHARED: ::c_ulong = 0x100000;
1545pub const MS_RELATIME: ::c_ulong = 0x200000;
1546pub const MS_KERNMOUNT: ::c_ulong = 0x400000;
1547pub const MS_I_VERSION: ::c_ulong = 0x800000;
1548pub const MS_STRICTATIME: ::c_ulong = 0x1000000;
1549pub const MS_ACTIVE: ::c_ulong = 0x40000000;
1550pub const MS_NOUSER: ::c_ulong = 0x80000000;
1551pub const MS_MGC_VAL: ::c_ulong = 0xc0ed0000;
1552pub const MS_MGC_MSK: ::c_ulong = 0xffff0000;
1553pub const MS_RMT_MASK: ::c_ulong = 0x800051;
1554
1555pub const EPERM: ::c_int = 1;
1556pub const ENOENT: ::c_int = 2;
1557pub const ESRCH: ::c_int = 3;
1558pub const EINTR: ::c_int = 4;
1559pub const EIO: ::c_int = 5;
1560pub const ENXIO: ::c_int = 6;
1561pub const E2BIG: ::c_int = 7;
1562pub const ENOEXEC: ::c_int = 8;
1563pub const EBADF: ::c_int = 9;
1564pub const ECHILD: ::c_int = 10;
1565pub const EAGAIN: ::c_int = 11;
1566pub const ENOMEM: ::c_int = 12;
1567pub const EACCES: ::c_int = 13;
1568pub const EFAULT: ::c_int = 14;
1569pub const ENOTBLK: ::c_int = 15;
1570pub const EBUSY: ::c_int = 16;
1571pub const EEXIST: ::c_int = 17;
1572pub const EXDEV: ::c_int = 18;
1573pub const ENODEV: ::c_int = 19;
1574pub const ENOTDIR: ::c_int = 20;
1575pub const EISDIR: ::c_int = 21;
1576pub const EINVAL: ::c_int = 22;
1577pub const ENFILE: ::c_int = 23;
1578pub const EMFILE: ::c_int = 24;
1579pub const ENOTTY: ::c_int = 25;
1580pub const ETXTBSY: ::c_int = 26;
1581pub const EFBIG: ::c_int = 27;
1582pub const ENOSPC: ::c_int = 28;
1583pub const ESPIPE: ::c_int = 29;
1584pub const EROFS: ::c_int = 30;
1585pub const EMLINK: ::c_int = 31;
1586pub const EPIPE: ::c_int = 32;
1587pub const EDOM: ::c_int = 33;
1588pub const ERANGE: ::c_int = 34;
1589pub const EWOULDBLOCK: ::c_int = EAGAIN;
1590
1591pub const SCM_RIGHTS: ::c_int = 0x01;
1592pub const SCM_CREDENTIALS: ::c_int = 0x02;
1593
1594pub const PROT_GROWSDOWN: ::c_int = 0x1000000;
1595pub const PROT_GROWSUP: ::c_int = 0x2000000;
1596
1597pub const MAP_TYPE: ::c_int = 0x000f;
1598
1599pub const MADV_NORMAL: ::c_int = 0;
1600pub const MADV_RANDOM: ::c_int = 1;
1601pub const MADV_SEQUENTIAL: ::c_int = 2;
1602pub const MADV_WILLNEED: ::c_int = 3;
1603pub const MADV_DONTNEED: ::c_int = 4;
1604pub const MADV_FREE: ::c_int = 8;
1605pub const MADV_REMOVE: ::c_int = 9;
1606pub const MADV_DONTFORK: ::c_int = 10;
1607pub const MADV_DOFORK: ::c_int = 11;
1608pub const MADV_MERGEABLE: ::c_int = 12;
1609pub const MADV_UNMERGEABLE: ::c_int = 13;
1610pub const MADV_HUGEPAGE: ::c_int = 14;
1611pub const MADV_NOHUGEPAGE: ::c_int = 15;
1612pub const MADV_DONTDUMP: ::c_int = 16;
1613pub const MADV_DODUMP: ::c_int = 17;
1614pub const MADV_HWPOISON: ::c_int = 100;
1615pub const MADV_SOFT_OFFLINE: ::c_int = 101;
1616
1617pub const IFF_UP: ::c_int = 0x1;
1618pub const IFF_BROADCAST: ::c_int = 0x2;
1619pub const IFF_DEBUG: ::c_int = 0x4;
1620pub const IFF_LOOPBACK: ::c_int = 0x8;
1621pub const IFF_POINTOPOINT: ::c_int = 0x10;
1622pub const IFF_NOTRAILERS: ::c_int = 0x20;
1623pub const IFF_RUNNING: ::c_int = 0x40;
1624pub const IFF_NOARP: ::c_int = 0x80;
1625pub const IFF_PROMISC: ::c_int = 0x100;
1626pub const IFF_ALLMULTI: ::c_int = 0x200;
1627pub const IFF_MASTER: ::c_int = 0x400;
1628pub const IFF_SLAVE: ::c_int = 0x800;
1629pub const IFF_MULTICAST: ::c_int = 0x1000;
1630pub const IFF_PORTSEL: ::c_int = 0x2000;
1631pub const IFF_AUTOMEDIA: ::c_int = 0x4000;
1632pub const IFF_DYNAMIC: ::c_int = 0x8000;
2c00a5a8
XL
1633pub const IFF_TUN: ::c_int = 0x0001;
1634pub const IFF_TAP: ::c_int = 0x0002;
1635pub const IFF_NO_PI: ::c_int = 0x1000;
ff7c6d11
XL
1636
1637pub const SOL_IP: ::c_int = 0;
1638pub const SOL_TCP: ::c_int = 6;
1639pub const SOL_UDP: ::c_int = 17;
1640pub const SOL_IPV6: ::c_int = 41;
1641pub const SOL_ICMPV6: ::c_int = 58;
1642pub const SOL_RAW: ::c_int = 255;
1643pub const SOL_DECNET: ::c_int = 261;
1644pub const SOL_X25: ::c_int = 262;
1645pub const SOL_PACKET: ::c_int = 263;
1646pub const SOL_ATM: ::c_int = 264;
1647pub const SOL_AAL: ::c_int = 265;
1648pub const SOL_IRDA: ::c_int = 266;
1649pub const SOL_NETBEUI: ::c_int = 267;
1650pub const SOL_LLC: ::c_int = 268;
1651pub const SOL_DCCP: ::c_int = 269;
1652pub const SOL_NETLINK: ::c_int = 270;
1653pub const SOL_TIPC: ::c_int = 271;
1654
1655pub const AF_UNSPEC: ::c_int = 0;
1656pub const AF_UNIX: ::c_int = 1;
1657pub const AF_LOCAL: ::c_int = 1;
1658pub const AF_INET: ::c_int = 2;
1659pub const AF_AX25: ::c_int = 3;
1660pub const AF_IPX: ::c_int = 4;
1661pub const AF_APPLETALK: ::c_int = 5;
1662pub const AF_NETROM: ::c_int = 6;
1663pub const AF_BRIDGE: ::c_int = 7;
1664pub const AF_ATMPVC: ::c_int = 8;
1665pub const AF_X25: ::c_int = 9;
1666pub const AF_INET6: ::c_int = 10;
1667pub const AF_ROSE: ::c_int = 11;
1668pub const AF_DECnet: ::c_int = 12;
1669pub const AF_NETBEUI: ::c_int = 13;
1670pub const AF_SECURITY: ::c_int = 14;
1671pub const AF_KEY: ::c_int = 15;
1672pub const AF_NETLINK: ::c_int = 16;
1673pub const AF_ROUTE: ::c_int = AF_NETLINK;
1674pub const AF_PACKET: ::c_int = 17;
1675pub const AF_ASH: ::c_int = 18;
1676pub const AF_ECONET: ::c_int = 19;
1677pub const AF_ATMSVC: ::c_int = 20;
1678pub const AF_RDS: ::c_int = 21;
1679pub const AF_SNA: ::c_int = 22;
1680pub const AF_IRDA: ::c_int = 23;
1681pub const AF_PPPOX: ::c_int = 24;
1682pub const AF_WANPIPE: ::c_int = 25;
1683pub const AF_LLC: ::c_int = 26;
1684pub const AF_CAN: ::c_int = 29;
1685pub const AF_TIPC: ::c_int = 30;
1686pub const AF_BLUETOOTH: ::c_int = 31;
1687pub const AF_IUCV: ::c_int = 32;
1688pub const AF_RXRPC: ::c_int = 33;
1689pub const AF_ISDN: ::c_int = 34;
1690pub const AF_PHONET: ::c_int = 35;
1691pub const AF_IEEE802154: ::c_int = 36;
1692pub const AF_CAIF: ::c_int = 37;
1693pub const AF_ALG: ::c_int = 38;
1694
1695pub const PF_UNSPEC: ::c_int = AF_UNSPEC;
1696pub const PF_UNIX: ::c_int = AF_UNIX;
1697pub const PF_LOCAL: ::c_int = AF_LOCAL;
1698pub const PF_INET: ::c_int = AF_INET;
1699pub const PF_AX25: ::c_int = AF_AX25;
1700pub const PF_IPX: ::c_int = AF_IPX;
1701pub const PF_APPLETALK: ::c_int = AF_APPLETALK;
1702pub const PF_NETROM: ::c_int = AF_NETROM;
1703pub const PF_BRIDGE: ::c_int = AF_BRIDGE;
1704pub const PF_ATMPVC: ::c_int = AF_ATMPVC;
1705pub const PF_X25: ::c_int = AF_X25;
1706pub const PF_INET6: ::c_int = AF_INET6;
1707pub const PF_ROSE: ::c_int = AF_ROSE;
1708pub const PF_DECnet: ::c_int = AF_DECnet;
1709pub const PF_NETBEUI: ::c_int = AF_NETBEUI;
1710pub const PF_SECURITY: ::c_int = AF_SECURITY;
1711pub const PF_KEY: ::c_int = AF_KEY;
1712pub const PF_NETLINK: ::c_int = AF_NETLINK;
1713pub const PF_ROUTE: ::c_int = AF_ROUTE;
1714pub const PF_PACKET: ::c_int = AF_PACKET;
1715pub const PF_ASH: ::c_int = AF_ASH;
1716pub const PF_ECONET: ::c_int = AF_ECONET;
1717pub const PF_ATMSVC: ::c_int = AF_ATMSVC;
1718pub const PF_RDS: ::c_int = AF_RDS;
1719pub const PF_SNA: ::c_int = AF_SNA;
1720pub const PF_IRDA: ::c_int = AF_IRDA;
1721pub const PF_PPPOX: ::c_int = AF_PPPOX;
1722pub const PF_WANPIPE: ::c_int = AF_WANPIPE;
1723pub const PF_LLC: ::c_int = AF_LLC;
1724pub const PF_CAN: ::c_int = AF_CAN;
1725pub const PF_TIPC: ::c_int = AF_TIPC;
1726pub const PF_BLUETOOTH: ::c_int = AF_BLUETOOTH;
1727pub const PF_IUCV: ::c_int = AF_IUCV;
1728pub const PF_RXRPC: ::c_int = AF_RXRPC;
1729pub const PF_ISDN: ::c_int = AF_ISDN;
1730pub const PF_PHONET: ::c_int = AF_PHONET;
1731pub const PF_IEEE802154: ::c_int = AF_IEEE802154;
1732pub const PF_CAIF: ::c_int = AF_CAIF;
1733pub const PF_ALG: ::c_int = AF_ALG;
1734
1735pub const SOMAXCONN: ::c_int = 128;
1736
1737pub const MSG_OOB: ::c_int = 1;
1738pub const MSG_PEEK: ::c_int = 2;
1739pub const MSG_DONTROUTE: ::c_int = 4;
1740pub const MSG_CTRUNC: ::c_int = 8;
1741pub const MSG_TRUNC: ::c_int = 0x20;
1742pub const MSG_DONTWAIT: ::c_int = 0x40;
1743pub const MSG_EOR: ::c_int = 0x80;
1744pub const MSG_WAITALL: ::c_int = 0x100;
1745pub const MSG_FIN: ::c_int = 0x200;
1746pub const MSG_SYN: ::c_int = 0x400;
1747pub const MSG_CONFIRM: ::c_int = 0x800;
1748pub const MSG_RST: ::c_int = 0x1000;
1749pub const MSG_ERRQUEUE: ::c_int = 0x2000;
1750pub const MSG_NOSIGNAL: ::c_int = 0x4000;
1751pub const MSG_MORE: ::c_int = 0x8000;
1752pub const MSG_WAITFORONE: ::c_int = 0x10000;
1753pub const MSG_FASTOPEN: ::c_int = 0x20000000;
1754pub const MSG_CMSG_CLOEXEC: ::c_int = 0x40000000;
1755
1756pub const SCM_TIMESTAMP: ::c_int = SO_TIMESTAMP;
1757
1758pub const SOCK_RAW: ::c_int = 3;
1759pub const SOCK_RDM: ::c_int = 4;
1760pub const IP_MULTICAST_IF: ::c_int = 32;
1761pub const IP_MULTICAST_TTL: ::c_int = 33;
1762pub const IP_MULTICAST_LOOP: ::c_int = 34;
1763pub const IP_TTL: ::c_int = 2;
1764pub const IP_HDRINCL: ::c_int = 3;
1765pub const IP_ADD_MEMBERSHIP: ::c_int = 35;
1766pub const IP_DROP_MEMBERSHIP: ::c_int = 36;
1767pub const IP_TRANSPARENT: ::c_int = 19;
2c00a5a8
XL
1768pub const IPV6_UNICAST_HOPS: ::c_int = 16;
1769pub const IPV6_MULTICAST_IF: ::c_int = 17;
1770pub const IPV6_MULTICAST_HOPS: ::c_int = 18;
1771pub const IPV6_MULTICAST_LOOP: ::c_int = 19;
ff7c6d11
XL
1772pub const IPV6_ADD_MEMBERSHIP: ::c_int = 20;
1773pub const IPV6_DROP_MEMBERSHIP: ::c_int = 21;
2c00a5a8 1774pub const IPV6_V6ONLY: ::c_int = 26;
ff7c6d11
XL
1775
1776pub const TCP_NODELAY: ::c_int = 1;
1777pub const TCP_MAXSEG: ::c_int = 2;
1778pub const TCP_CORK: ::c_int = 3;
1779pub const TCP_KEEPIDLE: ::c_int = 4;
1780pub const TCP_KEEPINTVL: ::c_int = 5;
1781pub const TCP_KEEPCNT: ::c_int = 6;
1782pub const TCP_SYNCNT: ::c_int = 7;
1783pub const TCP_LINGER2: ::c_int = 8;
1784pub const TCP_DEFER_ACCEPT: ::c_int = 9;
1785pub const TCP_WINDOW_CLAMP: ::c_int = 10;
1786pub const TCP_INFO: ::c_int = 11;
1787pub const TCP_QUICKACK: ::c_int = 12;
1788pub const TCP_CONGESTION: ::c_int = 13;
1789
ff7c6d11
XL
1790pub const SO_DEBUG: ::c_int = 1;
1791
1792pub const SHUT_RD: ::c_int = 0;
1793pub const SHUT_WR: ::c_int = 1;
1794pub const SHUT_RDWR: ::c_int = 2;
1795
1796pub const LOCK_SH: ::c_int = 1;
1797pub const LOCK_EX: ::c_int = 2;
1798pub const LOCK_NB: ::c_int = 4;
1799pub const LOCK_UN: ::c_int = 8;
1800
1801pub const SS_ONSTACK: ::c_int = 1;
1802pub const SS_DISABLE: ::c_int = 2;
1803
1804pub const PATH_MAX: ::c_int = 4096;
1805
1806pub const FD_SETSIZE: usize = 1024;
1807
1808pub const EPOLLIN: ::c_int = 0x1;
1809pub const EPOLLPRI: ::c_int = 0x2;
1810pub const EPOLLOUT: ::c_int = 0x4;
1811pub const EPOLLRDNORM: ::c_int = 0x40;
1812pub const EPOLLRDBAND: ::c_int = 0x80;
1813pub const EPOLLWRNORM: ::c_int = 0x100;
1814pub const EPOLLWRBAND: ::c_int = 0x200;
1815pub const EPOLLMSG: ::c_int = 0x400;
1816pub const EPOLLERR: ::c_int = 0x8;
1817pub const EPOLLHUP: ::c_int = 0x10;
1818pub const EPOLLET: ::c_int = 0x80000000;
1819
1820pub const EPOLL_CTL_ADD: ::c_int = 1;
1821pub const EPOLL_CTL_MOD: ::c_int = 3;
1822pub const EPOLL_CTL_DEL: ::c_int = 2;
1823
1824pub const MNT_DETACH: ::c_int = 0x2;
1825pub const MNT_EXPIRE: ::c_int = 0x4;
1826
1827pub const Q_GETFMT: ::c_int = 0x800004;
1828pub const Q_GETINFO: ::c_int = 0x800005;
1829pub const Q_SETINFO: ::c_int = 0x800006;
416331ca
XL
1830pub const QIF_BLIMITS: u32 = 1;
1831pub const QIF_SPACE: u32 = 2;
1832pub const QIF_ILIMITS: u32 = 4;
1833pub const QIF_INODES: u32 = 8;
1834pub const QIF_BTIME: u32 = 16;
1835pub const QIF_ITIME: u32 = 32;
1836pub const QIF_LIMITS: u32 = 5;
1837pub const QIF_USAGE: u32 = 10;
1838pub const QIF_TIMES: u32 = 48;
1839pub const QIF_ALL: u32 = 63;
ff7c6d11
XL
1840
1841pub const MNT_FORCE: ::c_int = 0x1;
1842
1843pub const Q_SYNC: ::c_int = 0x800001;
1844pub const Q_QUOTAON: ::c_int = 0x800002;
1845pub const Q_QUOTAOFF: ::c_int = 0x800003;
1846pub const Q_GETQUOTA: ::c_int = 0x800007;
1847pub const Q_SETQUOTA: ::c_int = 0x800008;
1848
1849pub const TCIOFF: ::c_int = 2;
1850pub const TCION: ::c_int = 3;
1851pub const TCOOFF: ::c_int = 0;
1852pub const TCOON: ::c_int = 1;
1853pub const TCIFLUSH: ::c_int = 0;
1854pub const TCOFLUSH: ::c_int = 1;
1855pub const TCIOFLUSH: ::c_int = 2;
1856pub const NL0: ::c_int = 0x00000000;
1857pub const NL1: ::c_int = 0x00000100;
1858pub const TAB0: ::c_int = 0x00000000;
1859pub const CR0: ::c_int = 0x00000000;
1860pub const FF0: ::c_int = 0x00000000;
1861pub const BS0: ::c_int = 0x00000000;
1862pub const VT0: ::c_int = 0x00000000;
1863pub const VERASE: usize = 2;
1864pub const VKILL: usize = 3;
1865pub const VINTR: usize = 0;
1866pub const VQUIT: usize = 1;
1867pub const VLNEXT: usize = 15;
1868pub const IGNBRK: ::tcflag_t = 0x00000001;
1869pub const BRKINT: ::tcflag_t = 0x00000002;
1870pub const IGNPAR: ::tcflag_t = 0x00000004;
1871pub const PARMRK: ::tcflag_t = 0x00000008;
1872pub const INPCK: ::tcflag_t = 0x00000010;
1873pub const ISTRIP: ::tcflag_t = 0x00000020;
1874pub const INLCR: ::tcflag_t = 0x00000040;
1875pub const IGNCR: ::tcflag_t = 0x00000080;
1876pub const ICRNL: ::tcflag_t = 0x00000100;
1877pub const IXANY: ::tcflag_t = 0x00000800;
1878pub const IMAXBEL: ::tcflag_t = 0x00002000;
1879pub const OPOST: ::tcflag_t = 0x1;
1880pub const CS5: ::tcflag_t = 0x00000000;
1881pub const CRTSCTS: ::tcflag_t = 0x80000000;
1882pub const ECHO: ::tcflag_t = 0x00000008;
1883pub const OCRNL: ::tcflag_t = 0o000010;
1884pub const ONOCR: ::tcflag_t = 0o000020;
1885pub const ONLRET: ::tcflag_t = 0o000040;
1886pub const OFILL: ::tcflag_t = 0o000100;
1887pub const OFDEL: ::tcflag_t = 0o000200;
1888
1889pub const CLONE_VM: ::c_int = 0x100;
1890pub const CLONE_FS: ::c_int = 0x200;
1891pub const CLONE_FILES: ::c_int = 0x400;
1892pub const CLONE_SIGHAND: ::c_int = 0x800;
1893pub const CLONE_PTRACE: ::c_int = 0x2000;
1894pub const CLONE_VFORK: ::c_int = 0x4000;
1895pub const CLONE_PARENT: ::c_int = 0x8000;
1896pub const CLONE_THREAD: ::c_int = 0x10000;
1897pub const CLONE_NEWNS: ::c_int = 0x20000;
1898pub const CLONE_SYSVSEM: ::c_int = 0x40000;
1899pub const CLONE_SETTLS: ::c_int = 0x80000;
1900pub const CLONE_PARENT_SETTID: ::c_int = 0x100000;
1901pub const CLONE_CHILD_CLEARTID: ::c_int = 0x200000;
1902pub const CLONE_DETACHED: ::c_int = 0x400000;
1903pub const CLONE_UNTRACED: ::c_int = 0x800000;
1904pub const CLONE_CHILD_SETTID: ::c_int = 0x01000000;
1905pub const CLONE_NEWUTS: ::c_int = 0x04000000;
1906pub const CLONE_NEWIPC: ::c_int = 0x08000000;
1907pub const CLONE_NEWUSER: ::c_int = 0x10000000;
1908pub const CLONE_NEWPID: ::c_int = 0x20000000;
1909pub const CLONE_NEWNET: ::c_int = 0x40000000;
1910pub const CLONE_IO: ::c_int = 0x80000000;
1911pub const CLONE_NEWCGROUP: ::c_int = 0x02000000;
1912
1913pub const WNOHANG: ::c_int = 0x00000001;
1914pub const WUNTRACED: ::c_int = 0x00000002;
1915pub const WSTOPPED: ::c_int = WUNTRACED;
1916pub const WEXITED: ::c_int = 0x00000004;
1917pub const WCONTINUED: ::c_int = 0x00000008;
1918pub const WNOWAIT: ::c_int = 0x01000000;
1919
532ac7d7 1920// ::Options set using PTRACE_SETOPTIONS.
ff7c6d11
XL
1921pub const PTRACE_O_TRACESYSGOOD: ::c_int = 0x00000001;
1922pub const PTRACE_O_TRACEFORK: ::c_int = 0x00000002;
1923pub const PTRACE_O_TRACEVFORK: ::c_int = 0x00000004;
1924pub const PTRACE_O_TRACECLONE: ::c_int = 0x00000008;
1925pub const PTRACE_O_TRACEEXEC: ::c_int = 0x00000010;
1926pub const PTRACE_O_TRACEVFORKDONE: ::c_int = 0x00000020;
1927pub const PTRACE_O_TRACEEXIT: ::c_int = 0x00000040;
1928pub const PTRACE_O_TRACESECCOMP: ::c_int = 0x00000080;
1929pub const PTRACE_O_EXITKILL: ::c_int = 0x00100000;
1930pub const PTRACE_O_SUSPEND_SECCOMP: ::c_int = 0x00200000;
1931pub const PTRACE_O_MASK: ::c_int = 0x003000ff;
1932
1933// Wait extended result codes for the above trace options.
1934pub const PTRACE_EVENT_FORK: ::c_int = 1;
1935pub const PTRACE_EVENT_VFORK: ::c_int = 2;
1936pub const PTRACE_EVENT_CLONE: ::c_int = 3;
1937pub const PTRACE_EVENT_EXEC: ::c_int = 4;
1938pub const PTRACE_EVENT_VFORK_DONE: ::c_int = 5;
1939pub const PTRACE_EVENT_EXIT: ::c_int = 6;
1940pub const PTRACE_EVENT_SECCOMP: ::c_int = 7;
1941// PTRACE_EVENT_STOP was added to glibc in 2.26
1942// pub const PTRACE_EVENT_STOP: ::c_int = 128;
1943
1944pub const __WNOTHREAD: ::c_int = 0x20000000;
1945pub const __WALL: ::c_int = 0x40000000;
1946pub const __WCLONE: ::c_int = 0x80000000;
1947
1948pub const SPLICE_F_MOVE: ::c_uint = 0x01;
1949pub const SPLICE_F_NONBLOCK: ::c_uint = 0x02;
1950pub const SPLICE_F_MORE: ::c_uint = 0x04;
1951pub const SPLICE_F_GIFT: ::c_uint = 0x08;
1952
1953pub const RTLD_LOCAL: ::c_int = 0;
1954pub const RTLD_LAZY: ::c_int = 1;
1955
1956pub const POSIX_FADV_NORMAL: ::c_int = 0;
1957pub const POSIX_FADV_RANDOM: ::c_int = 1;
1958pub const POSIX_FADV_SEQUENTIAL: ::c_int = 2;
1959pub const POSIX_FADV_WILLNEED: ::c_int = 3;
1960
1961pub const AT_FDCWD: ::c_int = -100;
1962pub const AT_SYMLINK_NOFOLLOW: ::c_int = 0x100;
1963pub const AT_REMOVEDIR: ::c_int = 0x200;
1964pub const AT_SYMLINK_FOLLOW: ::c_int = 0x400;
1965pub const AT_NO_AUTOMOUNT: ::c_int = 0x800;
1966pub const AT_EMPTY_PATH: ::c_int = 0x1000;
1967
1968pub const LOG_CRON: ::c_int = 9 << 3;
1969pub const LOG_AUTHPRIV: ::c_int = 10 << 3;
1970pub const LOG_FTP: ::c_int = 11 << 3;
1971pub const LOG_PERROR: ::c_int = 0x20;
1972
1973pub const PIPE_BUF: usize = 4096;
1974
1975pub const SI_LOAD_SHIFT: ::c_uint = 16;
1976
1977pub const SIGEV_SIGNAL: ::c_int = 0;
1978pub const SIGEV_NONE: ::c_int = 1;
1979pub const SIGEV_THREAD: ::c_int = 2;
1980
1981pub const P_ALL: idtype_t = 0;
1982pub const P_PID: idtype_t = 1;
1983pub const P_PGID: idtype_t = 2;
1984
1985pub const UTIME_OMIT: c_long = 1073741822;
1986pub const UTIME_NOW: c_long = 1073741823;
1987
1988pub const POLLIN: ::c_short = 0x1;
1989pub const POLLPRI: ::c_short = 0x2;
1990pub const POLLOUT: ::c_short = 0x4;
1991pub const POLLERR: ::c_short = 0x8;
1992pub const POLLHUP: ::c_short = 0x10;
1993pub const POLLNVAL: ::c_short = 0x20;
1994pub const POLLRDNORM: ::c_short = 0x040;
1995pub const POLLRDBAND: ::c_short = 0x080;
1996
1997pub const ABDAY_1: ::nl_item = 0x20000;
1998pub const ABDAY_2: ::nl_item = 0x20001;
1999pub const ABDAY_3: ::nl_item = 0x20002;
2000pub const ABDAY_4: ::nl_item = 0x20003;
2001pub const ABDAY_5: ::nl_item = 0x20004;
2002pub const ABDAY_6: ::nl_item = 0x20005;
2003pub const ABDAY_7: ::nl_item = 0x20006;
2004
2005pub const DAY_1: ::nl_item = 0x20007;
2006pub const DAY_2: ::nl_item = 0x20008;
2007pub const DAY_3: ::nl_item = 0x20009;
2008pub const DAY_4: ::nl_item = 0x2000A;
2009pub const DAY_5: ::nl_item = 0x2000B;
2010pub const DAY_6: ::nl_item = 0x2000C;
2011pub const DAY_7: ::nl_item = 0x2000D;
2012
2013pub const ABMON_1: ::nl_item = 0x2000E;
2014pub const ABMON_2: ::nl_item = 0x2000F;
2015pub const ABMON_3: ::nl_item = 0x20010;
2016pub const ABMON_4: ::nl_item = 0x20011;
2017pub const ABMON_5: ::nl_item = 0x20012;
2018pub const ABMON_6: ::nl_item = 0x20013;
2019pub const ABMON_7: ::nl_item = 0x20014;
2020pub const ABMON_8: ::nl_item = 0x20015;
2021pub const ABMON_9: ::nl_item = 0x20016;
2022pub const ABMON_10: ::nl_item = 0x20017;
2023pub const ABMON_11: ::nl_item = 0x20018;
2024pub const ABMON_12: ::nl_item = 0x20019;
2025
2026pub const MON_1: ::nl_item = 0x2001A;
2027pub const MON_2: ::nl_item = 0x2001B;
2028pub const MON_3: ::nl_item = 0x2001C;
2029pub const MON_4: ::nl_item = 0x2001D;
2030pub const MON_5: ::nl_item = 0x2001E;
2031pub const MON_6: ::nl_item = 0x2001F;
2032pub const MON_7: ::nl_item = 0x20020;
2033pub const MON_8: ::nl_item = 0x20021;
2034pub const MON_9: ::nl_item = 0x20022;
2035pub const MON_10: ::nl_item = 0x20023;
2036pub const MON_11: ::nl_item = 0x20024;
2037pub const MON_12: ::nl_item = 0x20025;
2038
2039pub const AM_STR: ::nl_item = 0x20026;
2040pub const PM_STR: ::nl_item = 0x20027;
2041
2042pub const D_T_FMT: ::nl_item = 0x20028;
2043pub const D_FMT: ::nl_item = 0x20029;
2044pub const T_FMT: ::nl_item = 0x2002A;
2045pub const T_FMT_AMPM: ::nl_item = 0x2002B;
2046
2047pub const ERA: ::nl_item = 0x2002C;
2048pub const ERA_D_FMT: ::nl_item = 0x2002E;
2049pub const ALT_DIGITS: ::nl_item = 0x2002F;
2050pub const ERA_D_T_FMT: ::nl_item = 0x20030;
2051pub const ERA_T_FMT: ::nl_item = 0x20031;
2052
2053pub const CODESET: ::nl_item = 14;
2054
2055pub const CRNCYSTR: ::nl_item = 0x4000F;
2056
2057pub const RUSAGE_THREAD: ::c_int = 1;
2058pub const RUSAGE_CHILDREN: ::c_int = -1;
2059
2060pub const RADIXCHAR: ::nl_item = 0x10000;
2061pub const THOUSEP: ::nl_item = 0x10001;
2062
2063pub const YESEXPR: ::nl_item = 0x50000;
2064pub const NOEXPR: ::nl_item = 0x50001;
2065pub const YESSTR: ::nl_item = 0x50002;
2066pub const NOSTR: ::nl_item = 0x50003;
2067
2068pub const FILENAME_MAX: ::c_uint = 4096;
2069pub const L_tmpnam: ::c_uint = 20;
2070pub const _PC_LINK_MAX: ::c_int = 0;
2071pub const _PC_MAX_CANON: ::c_int = 1;
2072pub const _PC_MAX_INPUT: ::c_int = 2;
2073pub const _PC_NAME_MAX: ::c_int = 3;
2074pub const _PC_PATH_MAX: ::c_int = 4;
2075pub const _PC_PIPE_BUF: ::c_int = 5;
2076pub const _PC_CHOWN_RESTRICTED: ::c_int = 6;
2077pub const _PC_NO_TRUNC: ::c_int = 7;
2078pub const _PC_VDISABLE: ::c_int = 8;
2079pub const _PC_SYNC_IO: ::c_int = 9;
2080pub const _PC_ASYNC_IO: ::c_int = 10;
2081pub const _PC_PRIO_IO: ::c_int = 11;
2082pub const _PC_SOCK_MAXBUF: ::c_int = 12;
2083pub const _PC_FILESIZEBITS: ::c_int = 13;
2084pub const _PC_REC_INCR_XFER_SIZE: ::c_int = 14;
2085pub const _PC_REC_MAX_XFER_SIZE: ::c_int = 15;
2086pub const _PC_REC_MIN_XFER_SIZE: ::c_int = 16;
2087pub const _PC_REC_XFER_ALIGN: ::c_int = 17;
2088pub const _PC_ALLOC_SIZE_MIN: ::c_int = 18;
2089pub const _PC_SYMLINK_MAX: ::c_int = 19;
2090pub const _PC_2_SYMLINKS: ::c_int = 20;
2091
2092pub const _SC_ARG_MAX: ::c_int = 0;
2093pub const _SC_CHILD_MAX: ::c_int = 1;
2094pub const _SC_CLK_TCK: ::c_int = 2;
2095pub const _SC_NGROUPS_MAX: ::c_int = 3;
2096pub const _SC_OPEN_MAX: ::c_int = 4;
2097pub const _SC_STREAM_MAX: ::c_int = 5;
2098pub const _SC_TZNAME_MAX: ::c_int = 6;
2099pub const _SC_JOB_CONTROL: ::c_int = 7;
2100pub const _SC_SAVED_IDS: ::c_int = 8;
2101pub const _SC_REALTIME_SIGNALS: ::c_int = 9;
2102pub const _SC_PRIORITY_SCHEDULING: ::c_int = 10;
2103pub const _SC_TIMERS: ::c_int = 11;
2104pub const _SC_ASYNCHRONOUS_IO: ::c_int = 12;
2105pub const _SC_PRIORITIZED_IO: ::c_int = 13;
2106pub const _SC_SYNCHRONIZED_IO: ::c_int = 14;
2107pub const _SC_FSYNC: ::c_int = 15;
2108pub const _SC_MAPPED_FILES: ::c_int = 16;
2109pub const _SC_MEMLOCK: ::c_int = 17;
2110pub const _SC_MEMLOCK_RANGE: ::c_int = 18;
2111pub const _SC_MEMORY_PROTECTION: ::c_int = 19;
2112pub const _SC_MESSAGE_PASSING: ::c_int = 20;
2113pub const _SC_SEMAPHORES: ::c_int = 21;
2114pub const _SC_SHARED_MEMORY_OBJECTS: ::c_int = 22;
2115pub const _SC_AIO_LISTIO_MAX: ::c_int = 23;
2116pub const _SC_AIO_MAX: ::c_int = 24;
2117pub const _SC_AIO_PRIO_DELTA_MAX: ::c_int = 25;
2118pub const _SC_DELAYTIMER_MAX: ::c_int = 26;
2119pub const _SC_MQ_OPEN_MAX: ::c_int = 27;
2120pub const _SC_MQ_PRIO_MAX: ::c_int = 28;
2121pub const _SC_VERSION: ::c_int = 29;
2122pub const _SC_PAGESIZE: ::c_int = 30;
2123pub const _SC_PAGE_SIZE: ::c_int = _SC_PAGESIZE;
2124pub const _SC_RTSIG_MAX: ::c_int = 31;
2125pub const _SC_SEM_NSEMS_MAX: ::c_int = 32;
2126pub const _SC_SEM_VALUE_MAX: ::c_int = 33;
2127pub const _SC_SIGQUEUE_MAX: ::c_int = 34;
2128pub const _SC_TIMER_MAX: ::c_int = 35;
2129pub const _SC_BC_BASE_MAX: ::c_int = 36;
2130pub const _SC_BC_DIM_MAX: ::c_int = 37;
2131pub const _SC_BC_SCALE_MAX: ::c_int = 38;
2132pub const _SC_BC_STRING_MAX: ::c_int = 39;
2133pub const _SC_COLL_WEIGHTS_MAX: ::c_int = 40;
2134pub const _SC_EXPR_NEST_MAX: ::c_int = 42;
2135pub const _SC_LINE_MAX: ::c_int = 43;
2136pub const _SC_RE_DUP_MAX: ::c_int = 44;
2137pub const _SC_2_VERSION: ::c_int = 46;
2138pub const _SC_2_C_BIND: ::c_int = 47;
2139pub const _SC_2_C_DEV: ::c_int = 48;
2140pub const _SC_2_FORT_DEV: ::c_int = 49;
2141pub const _SC_2_FORT_RUN: ::c_int = 50;
2142pub const _SC_2_SW_DEV: ::c_int = 51;
2143pub const _SC_2_LOCALEDEF: ::c_int = 52;
2144pub const _SC_UIO_MAXIOV: ::c_int = 60;
2145pub const _SC_IOV_MAX: ::c_int = 60;
2146pub const _SC_THREADS: ::c_int = 67;
2147pub const _SC_THREAD_SAFE_FUNCTIONS: ::c_int = 68;
2148pub const _SC_GETGR_R_SIZE_MAX: ::c_int = 69;
2149pub const _SC_GETPW_R_SIZE_MAX: ::c_int = 70;
2150pub const _SC_LOGIN_NAME_MAX: ::c_int = 71;
2151pub const _SC_TTY_NAME_MAX: ::c_int = 72;
2152pub const _SC_THREAD_DESTRUCTOR_ITERATIONS: ::c_int = 73;
2153pub const _SC_THREAD_KEYS_MAX: ::c_int = 74;
2154pub const _SC_THREAD_STACK_MIN: ::c_int = 75;
2155pub const _SC_THREAD_THREADS_MAX: ::c_int = 76;
2156pub const _SC_THREAD_ATTR_STACKADDR: ::c_int = 77;
2157pub const _SC_THREAD_ATTR_STACKSIZE: ::c_int = 78;
2158pub const _SC_THREAD_PRIORITY_SCHEDULING: ::c_int = 79;
2159pub const _SC_THREAD_PRIO_INHERIT: ::c_int = 80;
2160pub const _SC_THREAD_PRIO_PROTECT: ::c_int = 81;
2161pub const _SC_THREAD_PROCESS_SHARED: ::c_int = 82;
2162pub const _SC_NPROCESSORS_CONF: ::c_int = 83;
2163pub const _SC_NPROCESSORS_ONLN: ::c_int = 84;
2164pub const _SC_PHYS_PAGES: ::c_int = 85;
2165pub const _SC_AVPHYS_PAGES: ::c_int = 86;
2166pub const _SC_ATEXIT_MAX: ::c_int = 87;
2167pub const _SC_PASS_MAX: ::c_int = 88;
2168pub const _SC_XOPEN_VERSION: ::c_int = 89;
2169pub const _SC_XOPEN_XCU_VERSION: ::c_int = 90;
2170pub const _SC_XOPEN_UNIX: ::c_int = 91;
2171pub const _SC_XOPEN_CRYPT: ::c_int = 92;
2172pub const _SC_XOPEN_ENH_I18N: ::c_int = 93;
2173pub const _SC_XOPEN_SHM: ::c_int = 94;
2174pub const _SC_2_CHAR_TERM: ::c_int = 95;
2175pub const _SC_2_UPE: ::c_int = 97;
2176pub const _SC_XOPEN_XPG2: ::c_int = 98;
2177pub const _SC_XOPEN_XPG3: ::c_int = 99;
2178pub const _SC_XOPEN_XPG4: ::c_int = 100;
2179pub const _SC_NZERO: ::c_int = 109;
2180pub const _SC_XBS5_ILP32_OFF32: ::c_int = 125;
2181pub const _SC_XBS5_ILP32_OFFBIG: ::c_int = 126;
2182pub const _SC_XBS5_LP64_OFF64: ::c_int = 127;
2183pub const _SC_XBS5_LPBIG_OFFBIG: ::c_int = 128;
2184pub const _SC_XOPEN_LEGACY: ::c_int = 129;
2185pub const _SC_XOPEN_REALTIME: ::c_int = 130;
2186pub const _SC_XOPEN_REALTIME_THREADS: ::c_int = 131;
2187pub const _SC_ADVISORY_INFO: ::c_int = 132;
2188pub const _SC_BARRIERS: ::c_int = 133;
2189pub const _SC_CLOCK_SELECTION: ::c_int = 137;
2190pub const _SC_CPUTIME: ::c_int = 138;
2191pub const _SC_THREAD_CPUTIME: ::c_int = 139;
2192pub const _SC_MONOTONIC_CLOCK: ::c_int = 149;
2193pub const _SC_READER_WRITER_LOCKS: ::c_int = 153;
2194pub const _SC_SPIN_LOCKS: ::c_int = 154;
2195pub const _SC_REGEXP: ::c_int = 155;
2196pub const _SC_SHELL: ::c_int = 157;
2197pub const _SC_SPAWN: ::c_int = 159;
2198pub const _SC_SPORADIC_SERVER: ::c_int = 160;
2199pub const _SC_THREAD_SPORADIC_SERVER: ::c_int = 161;
2200pub const _SC_TIMEOUTS: ::c_int = 164;
2201pub const _SC_TYPED_MEMORY_OBJECTS: ::c_int = 165;
2202pub const _SC_2_PBS: ::c_int = 168;
2203pub const _SC_2_PBS_ACCOUNTING: ::c_int = 169;
2204pub const _SC_2_PBS_LOCATE: ::c_int = 170;
2205pub const _SC_2_PBS_MESSAGE: ::c_int = 171;
2206pub const _SC_2_PBS_TRACK: ::c_int = 172;
2207pub const _SC_SYMLOOP_MAX: ::c_int = 173;
2208pub const _SC_STREAMS: ::c_int = 174;
2209pub const _SC_2_PBS_CHECKPOINT: ::c_int = 175;
2210pub const _SC_V6_ILP32_OFF32: ::c_int = 176;
2211pub const _SC_V6_ILP32_OFFBIG: ::c_int = 177;
2212pub const _SC_V6_LP64_OFF64: ::c_int = 178;
2213pub const _SC_V6_LPBIG_OFFBIG: ::c_int = 179;
2214pub const _SC_HOST_NAME_MAX: ::c_int = 180;
2215pub const _SC_TRACE: ::c_int = 181;
2216pub const _SC_TRACE_EVENT_FILTER: ::c_int = 182;
2217pub const _SC_TRACE_INHERIT: ::c_int = 183;
2218pub const _SC_TRACE_LOG: ::c_int = 184;
2219pub const _SC_IPV6: ::c_int = 235;
2220pub const _SC_RAW_SOCKETS: ::c_int = 236;
2221pub const _SC_V7_ILP32_OFF32: ::c_int = 237;
2222pub const _SC_V7_ILP32_OFFBIG: ::c_int = 238;
2223pub const _SC_V7_LP64_OFF64: ::c_int = 239;
2224pub const _SC_V7_LPBIG_OFFBIG: ::c_int = 240;
2225pub const _SC_SS_REPL_MAX: ::c_int = 241;
2226pub const _SC_TRACE_EVENT_NAME_MAX: ::c_int = 242;
2227pub const _SC_TRACE_NAME_MAX: ::c_int = 243;
2228pub const _SC_TRACE_SYS_MAX: ::c_int = 244;
2229pub const _SC_TRACE_USER_EVENT_MAX: ::c_int = 245;
2230pub const _SC_XOPEN_STREAMS: ::c_int = 246;
2231pub const _SC_THREAD_ROBUST_PRIO_INHERIT: ::c_int = 247;
2232pub const _SC_THREAD_ROBUST_PRIO_PROTECT: ::c_int = 248;
2233
2234pub const RLIM_SAVED_MAX: ::rlim_t = RLIM_INFINITY;
2235pub const RLIM_SAVED_CUR: ::rlim_t = RLIM_INFINITY;
2236
2237pub const GLOB_ERR: ::c_int = 1 << 0;
2238pub const GLOB_MARK: ::c_int = 1 << 1;
2239pub const GLOB_NOSORT: ::c_int = 1 << 2;
2240pub const GLOB_DOOFFS: ::c_int = 1 << 3;
2241pub const GLOB_NOCHECK: ::c_int = 1 << 4;
2242pub const GLOB_APPEND: ::c_int = 1 << 5;
2243pub const GLOB_NOESCAPE: ::c_int = 1 << 6;
2244
2245pub const GLOB_NOSPACE: ::c_int = 1;
2246pub const GLOB_ABORTED: ::c_int = 2;
2247pub const GLOB_NOMATCH: ::c_int = 3;
2248
2249pub const POSIX_MADV_NORMAL: ::c_int = 0;
2250pub const POSIX_MADV_RANDOM: ::c_int = 1;
2251pub const POSIX_MADV_SEQUENTIAL: ::c_int = 2;
2252pub const POSIX_MADV_WILLNEED: ::c_int = 3;
2253
2254pub const S_IEXEC: mode_t = 64;
2255pub const S_IWRITE: mode_t = 128;
2256pub const S_IREAD: mode_t = 256;
2257
2258pub const F_LOCK: ::c_int = 1;
2259pub const F_TEST: ::c_int = 3;
2260pub const F_TLOCK: ::c_int = 2;
2261pub const F_ULOCK: ::c_int = 0;
2262
2263pub const IFF_LOWER_UP: ::c_int = 0x10000;
2264pub const IFF_DORMANT: ::c_int = 0x20000;
2265pub const IFF_ECHO: ::c_int = 0x40000;
2266
2267pub const ST_RDONLY: ::c_ulong = 1;
2268pub const ST_NOSUID: ::c_ulong = 2;
2269pub const ST_NODEV: ::c_ulong = 4;
2270pub const ST_NOEXEC: ::c_ulong = 8;
2271pub const ST_SYNCHRONOUS: ::c_ulong = 16;
2272pub const ST_MANDLOCK: ::c_ulong = 64;
2273pub const ST_WRITE: ::c_ulong = 128;
2274pub const ST_APPEND: ::c_ulong = 256;
2275pub const ST_IMMUTABLE: ::c_ulong = 512;
2276pub const ST_NOATIME: ::c_ulong = 1024;
2277pub const ST_NODIRATIME: ::c_ulong = 2048;
2278
2279pub const RTLD_NEXT: *mut ::c_void = -1i64 as *mut ::c_void;
2280pub const RTLD_DEFAULT: *mut ::c_void = 0i64 as *mut ::c_void;
2281pub const RTLD_NODELETE: ::c_int = 0x1000;
2282pub const RTLD_NOW: ::c_int = 0x2;
2283
2284pub const TCP_MD5SIG: ::c_int = 14;
2285
b7449926
XL
2286align_const! {
2287 pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
2288 size: [0; __SIZEOF_PTHREAD_MUTEX_T],
2289 };
2290 pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t {
2291 size: [0; __SIZEOF_PTHREAD_COND_T],
2292 };
2293 pub const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = pthread_rwlock_t {
2294 size: [0; __SIZEOF_PTHREAD_RWLOCK_T],
2295 };
2296}
ff7c6d11
XL
2297pub const PTHREAD_MUTEX_NORMAL: ::c_int = 0;
2298pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 1;
2299pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 2;
2300pub const PTHREAD_MUTEX_DEFAULT: ::c_int = PTHREAD_MUTEX_NORMAL;
2301pub const PTHREAD_PROCESS_PRIVATE: ::c_int = 0;
2302pub const PTHREAD_PROCESS_SHARED: ::c_int = 1;
2303pub const __SIZEOF_PTHREAD_COND_T: usize = 48;
2304
2305pub const RENAME_NOREPLACE: ::c_int = 1;
2306pub const RENAME_EXCHANGE: ::c_int = 2;
2307pub const RENAME_WHITEOUT: ::c_int = 4;
2308
2309pub const SCHED_OTHER: ::c_int = 0;
2310pub const SCHED_FIFO: ::c_int = 1;
2311pub const SCHED_RR: ::c_int = 2;
2312pub const SCHED_BATCH: ::c_int = 3;
2313pub const SCHED_IDLE: ::c_int = 5;
2314
2315// netinet/in.h
2316// NOTE: These are in addition to the constants defined in src/unix/mod.rs
2317
2318// IPPROTO_IP defined in src/unix/mod.rs
2319/// Hop-by-hop option header
2320pub const IPPROTO_HOPOPTS: ::c_int = 0;
2321// IPPROTO_ICMP defined in src/unix/mod.rs
2322/// group mgmt protocol
2323pub const IPPROTO_IGMP: ::c_int = 2;
2324/// for compatibility
2325pub const IPPROTO_IPIP: ::c_int = 4;
2326// IPPROTO_TCP defined in src/unix/mod.rs
2327/// exterior gateway protocol
2328pub const IPPROTO_EGP: ::c_int = 8;
2329/// pup
2330pub const IPPROTO_PUP: ::c_int = 12;
2331// IPPROTO_UDP defined in src/unix/mod.rs
2332/// xns idp
2333pub const IPPROTO_IDP: ::c_int = 22;
2334/// tp-4 w/ class negotiation
2335pub const IPPROTO_TP: ::c_int = 29;
2336/// DCCP
2337pub const IPPROTO_DCCP: ::c_int = 33;
2338// IPPROTO_IPV6 defined in src/unix/mod.rs
2339/// IP6 routing header
2340pub const IPPROTO_ROUTING: ::c_int = 43;
2341/// IP6 fragmentation header
2342pub const IPPROTO_FRAGMENT: ::c_int = 44;
2343/// resource reservation
2344pub const IPPROTO_RSVP: ::c_int = 46;
2345/// General Routing Encap.
2346pub const IPPROTO_GRE: ::c_int = 47;
2347/// IP6 Encap Sec. Payload
2348pub const IPPROTO_ESP: ::c_int = 50;
2349/// IP6 Auth Header
2350pub const IPPROTO_AH: ::c_int = 51;
2351// IPPROTO_ICMPV6 defined in src/unix/mod.rs
2352/// IP6 no next header
2353pub const IPPROTO_NONE: ::c_int = 59;
2354/// IP6 destination option
2355pub const IPPROTO_DSTOPTS: ::c_int = 60;
2356pub const IPPROTO_MTP: ::c_int = 92;
2357pub const IPPROTO_BEETPH: ::c_int = 94;
2358/// encapsulation header
2359pub const IPPROTO_ENCAP: ::c_int = 98;
2360/// Protocol indep. multicast
2361pub const IPPROTO_PIM: ::c_int = 103;
2362/// IP Payload Comp. Protocol
2363pub const IPPROTO_COMP: ::c_int = 108;
2364/// SCTP
2365pub const IPPROTO_SCTP: ::c_int = 132;
2366pub const IPPROTO_MH: ::c_int = 135;
2367pub const IPPROTO_UDPLITE: ::c_int = 136;
2368pub const IPPROTO_MPLS: ::c_int = 137;
2369/// raw IP packet
2370pub const IPPROTO_RAW: ::c_int = 255;
2371pub const IPPROTO_MAX: ::c_int = 256;
2372
2373pub const AF_IB: ::c_int = 27;
2374pub const AF_MPLS: ::c_int = 28;
2375pub const AF_NFC: ::c_int = 39;
2376pub const AF_VSOCK: ::c_int = 40;
2377pub const PF_IB: ::c_int = AF_IB;
2378pub const PF_MPLS: ::c_int = AF_MPLS;
2379pub const PF_NFC: ::c_int = AF_NFC;
2380pub const PF_VSOCK: ::c_int = AF_VSOCK;
2381
2382// System V IPC
2383pub const IPC_PRIVATE: ::key_t = 0;
2384
2385pub const IPC_CREAT: ::c_int = 0o1000;
2386pub const IPC_EXCL: ::c_int = 0o2000;
2387pub const IPC_NOWAIT: ::c_int = 0o4000;
2388
2389pub const IPC_RMID: ::c_int = 0;
2390pub const IPC_SET: ::c_int = 1;
2391pub const IPC_STAT: ::c_int = 2;
2392pub const IPC_INFO: ::c_int = 3;
2393pub const MSG_STAT: ::c_int = 11;
2394pub const MSG_INFO: ::c_int = 12;
2395
2396pub const MSG_NOERROR: ::c_int = 0o10000;
2397pub const MSG_EXCEPT: ::c_int = 0o20000;
2398pub const MSG_COPY: ::c_int = 0o40000;
2399
2400pub const SHM_R: ::c_int = 0o400;
2401pub const SHM_W: ::c_int = 0o200;
2402
2403pub const SHM_RDONLY: ::c_int = 0o10000;
2404pub const SHM_RND: ::c_int = 0o20000;
2405pub const SHM_REMAP: ::c_int = 0o40000;
2406pub const SHM_EXEC: ::c_int = 0o100000;
2407
2408pub const SHM_LOCK: ::c_int = 11;
2409pub const SHM_UNLOCK: ::c_int = 12;
2410
2411pub const SHM_HUGETLB: ::c_int = 0o4000;
2412pub const SHM_NORESERVE: ::c_int = 0o10000;
2413
2414pub const EPOLLRDHUP: ::c_int = 0x2000;
2415pub const EPOLLEXCLUSIVE: ::c_int = 0x10000000;
2416pub const EPOLLONESHOT: ::c_int = 0x40000000;
2417
2418pub const QFMT_VFS_OLD: ::c_int = 1;
2419pub const QFMT_VFS_V0: ::c_int = 2;
2420pub const QFMT_VFS_V1: ::c_int = 4;
2421
2422pub const EFD_SEMAPHORE: ::c_int = 0x1;
2423
2424pub const LOG_NFACILITIES: ::c_int = 24;
2425
2426pub const SEM_FAILED: *mut ::sem_t = 0 as *mut sem_t;
2427
2428pub const RB_AUTOBOOT: ::c_int = 0x01234567u32 as i32;
2429pub const RB_HALT_SYSTEM: ::c_int = 0xcdef0123u32 as i32;
2430pub const RB_ENABLE_CAD: ::c_int = 0x89abcdefu32 as i32;
2431pub const RB_DISABLE_CAD: ::c_int = 0x00000000u32 as i32;
2432pub const RB_POWER_OFF: ::c_int = 0x4321fedcu32 as i32;
2433pub const RB_SW_SUSPEND: ::c_int = 0xd000fce2u32 as i32;
2434pub const RB_KEXEC: ::c_int = 0x45584543u32 as i32;
2435
2436pub const AI_PASSIVE: ::c_int = 0x0001;
2437pub const AI_CANONNAME: ::c_int = 0x0002;
2438pub const AI_NUMERICHOST: ::c_int = 0x0004;
2439pub const AI_V4MAPPED: ::c_int = 0x0008;
2440pub const AI_ALL: ::c_int = 0x0010;
2441pub const AI_ADDRCONFIG: ::c_int = 0x0020;
2442
2443pub const AI_NUMERICSERV: ::c_int = 0x0400;
2444
2445pub const EAI_BADFLAGS: ::c_int = -1;
2446pub const EAI_NONAME: ::c_int = -2;
2447pub const EAI_AGAIN: ::c_int = -3;
2448pub const EAI_FAIL: ::c_int = -4;
2449pub const EAI_FAMILY: ::c_int = -6;
2450pub const EAI_SOCKTYPE: ::c_int = -7;
2451pub const EAI_SERVICE: ::c_int = -8;
2452pub const EAI_MEMORY: ::c_int = -10;
2453pub const EAI_OVERFLOW: ::c_int = -12;
2454
2455pub const NI_NUMERICHOST: ::c_int = 1;
2456pub const NI_NUMERICSERV: ::c_int = 2;
2457pub const NI_NOFQDN: ::c_int = 4;
2458pub const NI_NAMEREQD: ::c_int = 8;
2459pub const NI_DGRAM: ::c_int = 16;
2460
2461pub const SYNC_FILE_RANGE_WAIT_BEFORE: ::c_uint = 1;
2462pub const SYNC_FILE_RANGE_WRITE: ::c_uint = 2;
2463pub const SYNC_FILE_RANGE_WAIT_AFTER: ::c_uint = 4;
2464
2465pub const EAI_SYSTEM: ::c_int = -11;
2466
2467pub const AIO_CANCELED: ::c_int = 0;
2468pub const AIO_NOTCANCELED: ::c_int = 1;
2469pub const AIO_ALLDONE: ::c_int = 2;
2470pub const LIO_READ: ::c_int = 0;
2471pub const LIO_WRITE: ::c_int = 1;
2472pub const LIO_NOP: ::c_int = 2;
2473pub const LIO_WAIT: ::c_int = 0;
2474pub const LIO_NOWAIT: ::c_int = 1;
2475
2476pub const MREMAP_MAYMOVE: ::c_int = 1;
2477pub const MREMAP_FIXED: ::c_int = 2;
2478
2479pub const PR_SET_PDEATHSIG: ::c_int = 1;
2480pub const PR_GET_PDEATHSIG: ::c_int = 2;
2481
2482pub const PR_GET_DUMPABLE: ::c_int = 3;
2483pub const PR_SET_DUMPABLE: ::c_int = 4;
2484
2485pub const PR_GET_UNALIGN: ::c_int = 5;
2486pub const PR_SET_UNALIGN: ::c_int = 6;
2487pub const PR_UNALIGN_NOPRINT: ::c_int = 1;
2488pub const PR_UNALIGN_SIGBUS: ::c_int = 2;
2489
2490pub const PR_GET_KEEPCAPS: ::c_int = 7;
2491pub const PR_SET_KEEPCAPS: ::c_int = 8;
2492
2493pub const PR_GET_FPEMU: ::c_int = 9;
2494pub const PR_SET_FPEMU: ::c_int = 10;
2495pub const PR_FPEMU_NOPRINT: ::c_int = 1;
2496pub const PR_FPEMU_SIGFPE: ::c_int = 2;
2497
2498pub const PR_GET_FPEXC: ::c_int = 11;
2499pub const PR_SET_FPEXC: ::c_int = 12;
2500pub const PR_FP_EXC_SW_ENABLE: ::c_int = 0x80;
2501pub const PR_FP_EXC_DIV: ::c_int = 0x010000;
2502pub const PR_FP_EXC_OVF: ::c_int = 0x020000;
2503pub const PR_FP_EXC_UND: ::c_int = 0x040000;
2504pub const PR_FP_EXC_RES: ::c_int = 0x080000;
2505pub const PR_FP_EXC_INV: ::c_int = 0x100000;
2506pub const PR_FP_EXC_DISABLED: ::c_int = 0;
2507pub const PR_FP_EXC_NONRECOV: ::c_int = 1;
2508pub const PR_FP_EXC_ASYNC: ::c_int = 2;
2509pub const PR_FP_EXC_PRECISE: ::c_int = 3;
2510
2511pub const PR_GET_TIMING: ::c_int = 13;
2512pub const PR_SET_TIMING: ::c_int = 14;
2513pub const PR_TIMING_STATISTICAL: ::c_int = 0;
2514pub const PR_TIMING_TIMESTAMP: ::c_int = 1;
2515
2516pub const PR_SET_NAME: ::c_int = 15;
2517pub const PR_GET_NAME: ::c_int = 16;
2518
2519pub const PR_GET_ENDIAN: ::c_int = 19;
2520pub const PR_SET_ENDIAN: ::c_int = 20;
2521pub const PR_ENDIAN_BIG: ::c_int = 0;
2522pub const PR_ENDIAN_LITTLE: ::c_int = 1;
2523pub const PR_ENDIAN_PPC_LITTLE: ::c_int = 2;
2524
2525pub const PR_GET_SECCOMP: ::c_int = 21;
2526pub const PR_SET_SECCOMP: ::c_int = 22;
2527
2528pub const PR_CAPBSET_READ: ::c_int = 23;
2529pub const PR_CAPBSET_DROP: ::c_int = 24;
2530
2531pub const PR_GET_TSC: ::c_int = 25;
2532pub const PR_SET_TSC: ::c_int = 26;
2533pub const PR_TSC_ENABLE: ::c_int = 1;
2534pub const PR_TSC_SIGSEGV: ::c_int = 2;
2535
2536pub const PR_GET_SECUREBITS: ::c_int = 27;
2537pub const PR_SET_SECUREBITS: ::c_int = 28;
2538
2539pub const PR_SET_TIMERSLACK: ::c_int = 29;
2540pub const PR_GET_TIMERSLACK: ::c_int = 30;
2541
2542pub const PR_TASK_PERF_EVENTS_DISABLE: ::c_int = 31;
2543pub const PR_TASK_PERF_EVENTS_ENABLE: ::c_int = 32;
2544
2545pub const PR_MCE_KILL: ::c_int = 33;
2546pub const PR_MCE_KILL_CLEAR: ::c_int = 0;
2547pub const PR_MCE_KILL_SET: ::c_int = 1;
2548
2549pub const PR_MCE_KILL_LATE: ::c_int = 0;
2550pub const PR_MCE_KILL_EARLY: ::c_int = 1;
2551pub const PR_MCE_KILL_DEFAULT: ::c_int = 2;
2552
2553pub const PR_MCE_KILL_GET: ::c_int = 34;
2554
2555pub const PR_SET_MM: ::c_int = 35;
2556pub const PR_SET_MM_START_CODE: ::c_int = 1;
2557pub const PR_SET_MM_END_CODE: ::c_int = 2;
2558pub const PR_SET_MM_START_DATA: ::c_int = 3;
2559pub const PR_SET_MM_END_DATA: ::c_int = 4;
2560pub const PR_SET_MM_START_STACK: ::c_int = 5;
2561pub const PR_SET_MM_START_BRK: ::c_int = 6;
2562pub const PR_SET_MM_BRK: ::c_int = 7;
2563pub const PR_SET_MM_ARG_START: ::c_int = 8;
2564pub const PR_SET_MM_ARG_END: ::c_int = 9;
2565pub const PR_SET_MM_ENV_START: ::c_int = 10;
2566pub const PR_SET_MM_ENV_END: ::c_int = 11;
2567pub const PR_SET_MM_AUXV: ::c_int = 12;
2568pub const PR_SET_MM_EXE_FILE: ::c_int = 13;
2569pub const PR_SET_MM_MAP: ::c_int = 14;
2570pub const PR_SET_MM_MAP_SIZE: ::c_int = 15;
2571
2572pub const PR_SET_PTRACER: ::c_int = 0x59616d61;
2573
2574pub const PR_SET_CHILD_SUBREAPER: ::c_int = 36;
2575pub const PR_GET_CHILD_SUBREAPER: ::c_int = 37;
2576
2577pub const PR_SET_NO_NEW_PRIVS: ::c_int = 38;
2578pub const PR_GET_NO_NEW_PRIVS: ::c_int = 39;
2579
2580pub const PR_GET_TID_ADDRESS: ::c_int = 40;
2581
2582pub const PR_SET_THP_DISABLE: ::c_int = 41;
2583pub const PR_GET_THP_DISABLE: ::c_int = 42;
2584
2585pub const PR_MPX_ENABLE_MANAGEMENT: ::c_int = 43;
2586pub const PR_MPX_DISABLE_MANAGEMENT: ::c_int = 44;
2587
2588pub const PR_SET_FP_MODE: ::c_int = 45;
2589pub const PR_GET_FP_MODE: ::c_int = 46;
2590pub const PR_FP_MODE_FR: ::c_int = 1 << 0;
2591pub const PR_FP_MODE_FRE: ::c_int = 1 << 1;
2592
2593pub const PR_CAP_AMBIENT: ::c_int = 47;
2594pub const PR_CAP_AMBIENT_IS_SET: ::c_int = 1;
2595pub const PR_CAP_AMBIENT_RAISE: ::c_int = 2;
2596pub const PR_CAP_AMBIENT_LOWER: ::c_int = 3;
2597pub const PR_CAP_AMBIENT_CLEAR_ALL: ::c_int = 4;
2598
ff7c6d11
XL
2599pub const ITIMER_REAL: ::c_int = 0;
2600pub const ITIMER_VIRTUAL: ::c_int = 1;
2601pub const ITIMER_PROF: ::c_int = 2;
2602
2603pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC;
2604pub const TFD_NONBLOCK: ::c_int = O_NONBLOCK;
2605pub const TFD_TIMER_ABSTIME: ::c_int = 1;
2606
2607pub const XATTR_CREATE: ::c_int = 0x1;
2608pub const XATTR_REPLACE: ::c_int = 0x2;
2609
2610pub const _POSIX_VDISABLE: ::cc_t = 0;
2611
2612pub const FALLOC_FL_KEEP_SIZE: ::c_int = 0x01;
2613pub const FALLOC_FL_PUNCH_HOLE: ::c_int = 0x02;
2614pub const FALLOC_FL_COLLAPSE_RANGE: ::c_int = 0x08;
2615pub const FALLOC_FL_ZERO_RANGE: ::c_int = 0x10;
2616pub const FALLOC_FL_INSERT_RANGE: ::c_int = 0x20;
2617pub const FALLOC_FL_UNSHARE_RANGE: ::c_int = 0x40;
2618
2619// On Linux, libc doesn't define this constant, libattr does instead.
2620// We still define it for Linux as it's defined by libc on other platforms,
2621// and it's mentioned in the man pages for getxattr and setxattr.
2622pub const ENOATTR: ::c_int = ::ENODATA;
2623
2624pub const SO_ORIGINAL_DST: ::c_int = 80;
2625pub const IUTF8: ::tcflag_t = 0x00004000;
2626pub const CMSPAR: ::tcflag_t = 0o10000000000;
2627
2628pub const MFD_CLOEXEC: ::c_uint = 0x0001;
2629pub const MFD_ALLOW_SEALING: ::c_uint = 0x0002;
2630
2631// these are used in the p_type field of Elf32_Phdr and Elf64_Phdr, which has
2632// the type Elf32Word and Elf64Word respectively. Luckily, both of those are u32
2633// so we can use that type here to avoid having to cast.
2634pub const PT_NULL: u32 = 0;
2635pub const PT_LOAD: u32 = 1;
2636pub const PT_DYNAMIC: u32 = 2;
2637pub const PT_INTERP: u32 = 3;
2638pub const PT_NOTE: u32 = 4;
2639pub const PT_SHLIB: u32 = 5;
2640pub const PT_PHDR: u32 = 6;
2641pub const PT_TLS: u32 = 7;
2642pub const PT_NUM: u32 = 8;
2643pub const PT_LOOS: u32 = 0x60000000;
2644pub const PT_GNU_EH_FRAME: u32 = 0x6474e550;
2645pub const PT_GNU_STACK: u32 = 0x6474e551;
2646pub const PT_GNU_RELRO: u32 = 0x6474e552;
2647
2648pub const SFD_CLOEXEC: ::c_int = 0x080000;
2649
2650pub const NCCS: usize = 32;
2651
2652pub const O_TRUNC: ::c_int = 0x00040000;
2653pub const O_NOATIME: ::c_int = 0x00002000;
2654pub const O_CLOEXEC: ::c_int = 0x00000100;
2655pub const O_TMPFILE: ::c_int = 0x00004000;
2656
2657pub const EBFONT: ::c_int = 59;
2658pub const ENOSTR: ::c_int = 60;
2659pub const ENODATA: ::c_int = 61;
2660pub const ETIME: ::c_int = 62;
2661pub const ENOSR: ::c_int = 63;
2662pub const ENONET: ::c_int = 64;
2663pub const ENOPKG: ::c_int = 65;
2664pub const EREMOTE: ::c_int = 66;
2665pub const ENOLINK: ::c_int = 67;
2666pub const EADV: ::c_int = 68;
2667pub const ESRMNT: ::c_int = 69;
2668pub const ECOMM: ::c_int = 70;
2669pub const EPROTO: ::c_int = 71;
2670pub const EDOTDOT: ::c_int = 73;
2671
2672pub const SA_NODEFER: ::c_int = 0x40000000;
2673pub const SA_RESETHAND: ::c_int = 0x80000000;
2674pub const SA_RESTART: ::c_int = 0x10000000;
2675pub const SA_NOCLDSTOP: ::c_int = 0x00000001;
2676
2677pub const EPOLL_CLOEXEC: ::c_int = 0x80000;
2678
2679pub const EFD_CLOEXEC: ::c_int = 0x80000;
2680
2681pub const BUFSIZ: ::c_uint = 1024;
2682pub const TMP_MAX: ::c_uint = 10000;
2683pub const FOPEN_MAX: ::c_uint = 1000;
2684pub const O_PATH: ::c_int = 0x00400000;
2685pub const O_EXEC: ::c_int = O_PATH;
2686pub const O_SEARCH: ::c_int = O_PATH;
2687pub const O_ACCMODE: ::c_int = (03 | O_SEARCH);
2688pub const O_NDELAY: ::c_int = O_NONBLOCK;
2689pub const NI_MAXHOST: ::socklen_t = 255;
2690pub const PTHREAD_STACK_MIN: ::size_t = 2048;
2691pub const POSIX_FADV_DONTNEED: ::c_int = 4;
2692pub const POSIX_FADV_NOREUSE: ::c_int = 5;
2693
2694pub const POSIX_MADV_DONTNEED: ::c_int = 4;
2695
2696pub const RLIM_INFINITY: ::rlim_t = !0;
2697pub const RLIMIT_RTTIME: ::c_int = 15;
2698pub const RLIMIT_NLIMITS: ::c_int = 16;
2699
2700pub const MAP_ANONYMOUS: ::c_int = MAP_ANON;
2701
2702pub const SOCK_DCCP: ::c_int = 6;
2703pub const SOCK_PACKET: ::c_int = 10;
2704
2705pub const TCP_COOKIE_TRANSACTIONS: ::c_int = 15;
2706pub const TCP_THIN_LINEAR_TIMEOUTS: ::c_int = 16;
2707pub const TCP_THIN_DUPACK: ::c_int = 17;
2708pub const TCP_USER_TIMEOUT: ::c_int = 18;
2709pub const TCP_REPAIR: ::c_int = 19;
2710pub const TCP_REPAIR_QUEUE: ::c_int = 20;
2711pub const TCP_QUEUE_SEQ: ::c_int = 21;
2712pub const TCP_REPAIR_OPTIONS: ::c_int = 22;
2713pub const TCP_FASTOPEN: ::c_int = 23;
2714pub const TCP_TIMESTAMP: ::c_int = 24;
2715
2716pub const SIGUNUSED: ::c_int = ::SIGSYS;
2717
2718pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4;
2719pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
2720pub const __SIZEOF_PTHREAD_RWLOCKATTR_T: usize = 8;
2721
2722pub const CPU_SETSIZE: ::c_int = 128;
2723
2724pub const PTRACE_TRACEME: ::c_int = 0;
2725pub const PTRACE_PEEKTEXT: ::c_int = 1;
2726pub const PTRACE_PEEKDATA: ::c_int = 2;
2727pub const PTRACE_PEEKUSER: ::c_int = 3;
2728pub const PTRACE_POKETEXT: ::c_int = 4;
2729pub const PTRACE_POKEDATA: ::c_int = 5;
2730pub const PTRACE_POKEUSER: ::c_int = 6;
2731pub const PTRACE_CONT: ::c_int = 7;
2732pub const PTRACE_KILL: ::c_int = 8;
2733pub const PTRACE_SINGLESTEP: ::c_int = 9;
2734pub const PTRACE_GETREGS: ::c_int = 12;
2735pub const PTRACE_SETREGS: ::c_int = 13;
2736pub const PTRACE_GETFPREGS: ::c_int = 14;
2737pub const PTRACE_SETFPREGS: ::c_int = 15;
2738pub const PTRACE_ATTACH: ::c_int = 16;
2739pub const PTRACE_DETACH: ::c_int = 17;
2740pub const PTRACE_GETFPXREGS: ::c_int = 18;
2741pub const PTRACE_SETFPXREGS: ::c_int = 19;
2742pub const PTRACE_SYSCALL: ::c_int = 24;
2743pub const PTRACE_SETOPTIONS: ::c_int = 0x4200;
2744pub const PTRACE_GETEVENTMSG: ::c_int = 0x4201;
2745pub const PTRACE_GETSIGINFO: ::c_int = 0x4202;
2746pub const PTRACE_SETSIGINFO: ::c_int = 0x4203;
2747pub const PTRACE_GETREGSET: ::c_int = 0x4204;
2748pub const PTRACE_SETREGSET: ::c_int = 0x4205;
2749pub const PTRACE_SEIZE: ::c_int = 0x4206;
2750pub const PTRACE_INTERRUPT: ::c_int = 0x4207;
2751pub const PTRACE_LISTEN: ::c_int = 0x4208;
2752pub const PTRACE_PEEKSIGINFO: ::c_int = 0x4209;
2753
2754pub const EPOLLWAKEUP: ::c_int = 0x20000000;
2755
2756pub const EFD_NONBLOCK: ::c_int = ::O_NONBLOCK;
2757
2758pub const SFD_NONBLOCK: ::c_int = ::O_NONBLOCK;
2759
2760pub const TCSANOW: ::c_int = 0;
2761pub const TCSADRAIN: ::c_int = 1;
2762pub const TCSAFLUSH: ::c_int = 2;
2763
2764pub const TIOCINQ: ::c_int = ::FIONREAD;
2765
2766pub const RTLD_GLOBAL: ::c_int = 0x100;
2767pub const RTLD_NOLOAD: ::c_int = 0x4;
2768
2769// TODO(#247) Temporarily musl-specific (available since musl 0.9.12 / Linux
2770// kernel 3.10). See also notbsd/mod.rs
2771pub const CLOCK_SGI_CYCLE: ::clockid_t = 10;
2772pub const CLOCK_TAI: ::clockid_t = 11;
2773
2774pub const MCL_CURRENT: ::c_int = 0x0001;
2775pub const MCL_FUTURE: ::c_int = 0x0002;
2776
2777pub const CBAUD: ::tcflag_t = 0o0010017;
2778pub const TAB1: ::c_int = 0x00000800;
2779pub const TAB2: ::c_int = 0x00001000;
2780pub const TAB3: ::c_int = 0x00001800;
2781pub const CR1: ::c_int = 0x00000200;
2782pub const CR2: ::c_int = 0x00000400;
2783pub const CR3: ::c_int = 0x00000600;
2784pub const FF1: ::c_int = 0x00008000;
2785pub const BS1: ::c_int = 0x00002000;
2786pub const VT1: ::c_int = 0x00004000;
2787pub const VWERASE: usize = 14;
2788pub const VREPRINT: usize = 12;
2789pub const VSUSP: usize = 10;
2790pub const VSTART: usize = 8;
2791pub const VSTOP: usize = 9;
2792pub const VDISCARD: usize = 13;
2793pub const VTIME: usize = 5;
2794pub const IXON: ::tcflag_t = 0x00000400;
2795pub const IXOFF: ::tcflag_t = 0x00001000;
2796pub const ONLCR: ::tcflag_t = 0x4;
2797pub const CSIZE: ::tcflag_t = 0x00000030;
2798pub const CS6: ::tcflag_t = 0x00000010;
2799pub const CS7: ::tcflag_t = 0x00000020;
2800pub const CS8: ::tcflag_t = 0x00000030;
2801pub const CSTOPB: ::tcflag_t = 0x00000040;
2802pub const CREAD: ::tcflag_t = 0x00000080;
2803pub const PARENB: ::tcflag_t = 0x00000100;
2804pub const PARODD: ::tcflag_t = 0x00000200;
2805pub const HUPCL: ::tcflag_t = 0x00000400;
2806pub const CLOCAL: ::tcflag_t = 0x00000800;
2807pub const ECHOKE: ::tcflag_t = 0x00000800;
2808pub const ECHOE: ::tcflag_t = 0x00000010;
2809pub const ECHOK: ::tcflag_t = 0x00000020;
2810pub const ECHONL: ::tcflag_t = 0x00000040;
2811pub const ECHOPRT: ::tcflag_t = 0x00000400;
2812pub const ECHOCTL: ::tcflag_t = 0x00000200;
2813pub const ISIG: ::tcflag_t = 0x00000001;
2814pub const ICANON: ::tcflag_t = 0x00000002;
2815pub const PENDIN: ::tcflag_t = 0x00004000;
2816pub const NOFLSH: ::tcflag_t = 0x00000080;
2817pub const CIBAUD: ::tcflag_t = 0o02003600000;
2818pub const CBAUDEX: ::tcflag_t = 0o010000;
2819pub const VSWTC: usize = 7;
2820pub const OLCUC: ::tcflag_t = 0o000002;
2821pub const NLDLY: ::tcflag_t = 0o000400;
2822pub const CRDLY: ::tcflag_t = 0o003000;
2823pub const TABDLY: ::tcflag_t = 0o014000;
2824pub const BSDLY: ::tcflag_t = 0o020000;
2825pub const FFDLY: ::tcflag_t = 0o100000;
2826pub const VTDLY: ::tcflag_t = 0o040000;
2827pub const XTABS: ::tcflag_t = 0o014000;
2828
2829pub const B0: ::speed_t = 0o000000;
2830pub const B50: ::speed_t = 0o000001;
2831pub const B75: ::speed_t = 0o000002;
2832pub const B110: ::speed_t = 0o000003;
2833pub const B134: ::speed_t = 0o000004;
2834pub const B150: ::speed_t = 0o000005;
2835pub const B200: ::speed_t = 0o000006;
2836pub const B300: ::speed_t = 0o000007;
2837pub const B600: ::speed_t = 0o000010;
2838pub const B1200: ::speed_t = 0o000011;
2839pub const B1800: ::speed_t = 0o000012;
2840pub const B2400: ::speed_t = 0o000013;
2841pub const B4800: ::speed_t = 0o000014;
2842pub const B9600: ::speed_t = 0o000015;
2843pub const B19200: ::speed_t = 0o000016;
2844pub const B38400: ::speed_t = 0o000017;
2845pub const EXTA: ::speed_t = B19200;
2846pub const EXTB: ::speed_t = B38400;
2847pub const B57600: ::speed_t = 0o010001;
2848pub const B115200: ::speed_t = 0o010002;
2849pub const B230400: ::speed_t = 0o010003;
2850pub const B460800: ::speed_t = 0o010004;
2851pub const B500000: ::speed_t = 0o010005;
2852pub const B576000: ::speed_t = 0o010006;
2853pub const B921600: ::speed_t = 0o010007;
2854pub const B1000000: ::speed_t = 0o010010;
2855pub const B1152000: ::speed_t = 0o010011;
2856pub const B1500000: ::speed_t = 0o010012;
2857pub const B2000000: ::speed_t = 0o010013;
2858pub const B2500000: ::speed_t = 0o010014;
2859pub const B3000000: ::speed_t = 0o010015;
2860pub const B3500000: ::speed_t = 0o010016;
2861pub const B4000000: ::speed_t = 0o010017;
2862
2863pub const SO_BINDTODEVICE: ::c_int = 25;
2864pub const SO_TIMESTAMP: ::c_int = 29;
2865pub const SO_MARK: ::c_int = 36;
2866pub const SO_RXQ_OVFL: ::c_int = 40;
2867pub const SO_PEEK_OFF: ::c_int = 42;
2868pub const SO_BUSY_POLL: ::c_int = 46;
2869
2870pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56;
2871pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40;
2872
2873pub const O_ASYNC: ::c_int = 0x00000400;
2874
2875pub const FIOCLEX: ::c_int = 0x5451;
2876pub const FIONBIO: ::c_int = 0x5421;
2877
2878pub const RLIMIT_RSS: ::c_int = 5;
2879pub const RLIMIT_NOFILE: ::c_int = 7;
2880pub const RLIMIT_AS: ::c_int = 9;
2881pub const RLIMIT_NPROC: ::c_int = 6;
2882pub const RLIMIT_MEMLOCK: ::c_int = 8;
2883
2884pub const O_APPEND: ::c_int = 0x00100000;
2885pub const O_CREAT: ::c_int = 0x00010000;
2886pub const O_EXCL: ::c_int = 0x00020000;
2887pub const O_NOCTTY: ::c_int = 0x00000200;
2888pub const O_NONBLOCK: ::c_int = 0x00000010;
2889pub const O_SYNC: ::c_int = (0x00000040 | O_DSYNC);
2890pub const O_RSYNC: ::c_int = O_SYNC;
2891pub const O_DSYNC: ::c_int = 0x00000020;
2892
2893pub const SOCK_NONBLOCK: ::c_int = 2048;
2894
2895pub const MAP_ANON: ::c_int = 0x0020;
2896pub const MAP_GROWSDOWN: ::c_int = 0x0100;
2897pub const MAP_DENYWRITE: ::c_int = 0x0800;
2898pub const MAP_EXECUTABLE: ::c_int = 0x01000;
2899pub const MAP_LOCKED: ::c_int = 0x02000;
2900pub const MAP_NORESERVE: ::c_int = 0x04000;
2901pub const MAP_POPULATE: ::c_int = 0x08000;
2902pub const MAP_NONBLOCK: ::c_int = 0x010000;
2903pub const MAP_STACK: ::c_int = 0x020000;
2904
2905pub const SOCK_STREAM: ::c_int = 1;
2906pub const SOCK_DGRAM: ::c_int = 2;
2907pub const SOCK_SEQPACKET: ::c_int = 5;
2908
2909pub const SOL_SOCKET: ::c_int = 1;
2910
2911pub const EDEADLK: ::c_int = 35;
2912pub const ENAMETOOLONG: ::c_int = 36;
2913pub const ENOLCK: ::c_int = 37;
2914pub const ENOSYS: ::c_int = 38;
2915pub const ENOTEMPTY: ::c_int = 39;
2916pub const ELOOP: ::c_int = 40;
2917pub const ENOMSG: ::c_int = 42;
2918pub const EIDRM: ::c_int = 43;
2919pub const ECHRNG: ::c_int = 44;
2920pub const EL2NSYNC: ::c_int = 45;
2921pub const EL3HLT: ::c_int = 46;
2922pub const EL3RST: ::c_int = 47;
2923pub const ELNRNG: ::c_int = 48;
2924pub const EUNATCH: ::c_int = 49;
2925pub const ENOCSI: ::c_int = 50;
2926pub const EL2HLT: ::c_int = 51;
2927pub const EBADE: ::c_int = 52;
2928pub const EBADR: ::c_int = 53;
2929pub const EXFULL: ::c_int = 54;
2930pub const ENOANO: ::c_int = 55;
2931pub const EBADRQC: ::c_int = 56;
2932pub const EBADSLT: ::c_int = 57;
2933pub const EDEADLOCK: ::c_int = EDEADLK;
2934pub const EMULTIHOP: ::c_int = 72;
2935pub const EBADMSG: ::c_int = 74;
2936pub const EOVERFLOW: ::c_int = 75;
2937pub const ENOTUNIQ: ::c_int = 76;
2938pub const EBADFD: ::c_int = 77;
2939pub const EREMCHG: ::c_int = 78;
2940pub const ELIBACC: ::c_int = 79;
2941pub const ELIBBAD: ::c_int = 80;
2942pub const ELIBSCN: ::c_int = 81;
2943pub const ELIBMAX: ::c_int = 82;
2944pub const ELIBEXEC: ::c_int = 83;
2945pub const EILSEQ: ::c_int = 84;
2946pub const ERESTART: ::c_int = 85;
2947pub const ESTRPIPE: ::c_int = 86;
2948pub const EUSERS: ::c_int = 87;
2949pub const ENOTSOCK: ::c_int = 88;
2950pub const EDESTADDRREQ: ::c_int = 89;
2951pub const EMSGSIZE: ::c_int = 90;
2952pub const EPROTOTYPE: ::c_int = 91;
2953pub const ENOPROTOOPT: ::c_int = 92;
2954pub const EPROTONOSUPPORT: ::c_int = 93;
2955pub const ESOCKTNOSUPPORT: ::c_int = 94;
2956pub const EOPNOTSUPP: ::c_int = 95;
2957pub const ENOTSUP: ::c_int = EOPNOTSUPP;
2958pub const EPFNOSUPPORT: ::c_int = 96;
2959pub const EAFNOSUPPORT: ::c_int = 97;
2960pub const EADDRINUSE: ::c_int = 98;
2961pub const EADDRNOTAVAIL: ::c_int = 99;
2962pub const ENETDOWN: ::c_int = 100;
2963pub const ENETUNREACH: ::c_int = 101;
2964pub const ENETRESET: ::c_int = 102;
2965pub const ECONNABORTED: ::c_int = 103;
2966pub const ECONNRESET: ::c_int = 104;
2967pub const ENOBUFS: ::c_int = 105;
2968pub const EISCONN: ::c_int = 106;
2969pub const ENOTCONN: ::c_int = 107;
2970pub const ESHUTDOWN: ::c_int = 108;
2971pub const ETOOMANYREFS: ::c_int = 109;
2972pub const ETIMEDOUT: ::c_int = 110;
2973pub const ECONNREFUSED: ::c_int = 111;
2974pub const EHOSTDOWN: ::c_int = 112;
2975pub const EHOSTUNREACH: ::c_int = 113;
2976pub const EALREADY: ::c_int = 114;
2977pub const EINPROGRESS: ::c_int = 115;
2978pub const ESTALE: ::c_int = 116;
2979pub const EUCLEAN: ::c_int = 117;
2980pub const ENOTNAM: ::c_int = 118;
2981pub const ENAVAIL: ::c_int = 119;
2982pub const EISNAM: ::c_int = 120;
2983pub const EREMOTEIO: ::c_int = 121;
2984pub const EDQUOT: ::c_int = 122;
2985pub const ENOMEDIUM: ::c_int = 123;
2986pub const EMEDIUMTYPE: ::c_int = 124;
2987pub const ECANCELED: ::c_int = 125;
2988pub const ENOKEY: ::c_int = 126;
2989pub const EKEYEXPIRED: ::c_int = 127;
2990pub const EKEYREVOKED: ::c_int = 128;
2991pub const EKEYREJECTED: ::c_int = 129;
2992pub const EOWNERDEAD: ::c_int = 130;
2993pub const ENOTRECOVERABLE: ::c_int = 131;
2994pub const ERFKILL: ::c_int = 132;
2995pub const EHWPOISON: ::c_int = 133;
2996
2997pub const SO_REUSEADDR: ::c_int = 2;
2998pub const SO_TYPE: ::c_int = 3;
2999pub const SO_ERROR: ::c_int = 4;
3000pub const SO_DONTROUTE: ::c_int = 5;
3001pub const SO_BROADCAST: ::c_int = 6;
3002pub const SO_SNDBUF: ::c_int = 7;
3003pub const SO_RCVBUF: ::c_int = 8;
3004pub const SO_KEEPALIVE: ::c_int = 9;
3005pub const SO_OOBINLINE: ::c_int = 10;
3006pub const SO_NO_CHECK: ::c_int = 11;
3007pub const SO_PRIORITY: ::c_int = 12;
3008pub const SO_LINGER: ::c_int = 13;
3009pub const SO_BSDCOMPAT: ::c_int = 14;
3010pub const SO_REUSEPORT: ::c_int = 15;
3011pub const SO_PASSCRED: ::c_int = 16;
3012pub const SO_PEERCRED: ::c_int = 17;
3013pub const SO_RCVLOWAT: ::c_int = 18;
3014pub const SO_SNDLOWAT: ::c_int = 19;
3015pub const SO_RCVTIMEO: ::c_int = 20;
3016pub const SO_SNDTIMEO: ::c_int = 21;
3017pub const SO_ACCEPTCONN: ::c_int = 30;
3018pub const SO_SNDBUFFORCE: ::c_int = 32;
3019pub const SO_RCVBUFFORCE: ::c_int = 33;
3020pub const SO_PROTOCOL: ::c_int = 38;
3021pub const SO_DOMAIN: ::c_int = 39;
3022
3023pub const SA_ONSTACK: ::c_int = 0x08000000;
3024pub const SA_SIGINFO: ::c_int = 0x00000004;
3025pub const SA_NOCLDWAIT: ::c_int = 0x00000002;
3026
3027pub const SIGCHLD: ::c_int = 17;
3028pub const SIGBUS: ::c_int = 7;
3029pub const SIGTTIN: ::c_int = 21;
3030pub const SIGTTOU: ::c_int = 22;
3031pub const SIGXCPU: ::c_int = 24;
3032pub const SIGXFSZ: ::c_int = 25;
3033pub const SIGVTALRM: ::c_int = 26;
3034pub const SIGPROF: ::c_int = 27;
3035pub const SIGWINCH: ::c_int = 28;
3036pub const SIGUSR1: ::c_int = 10;
3037pub const SIGUSR2: ::c_int = 12;
3038pub const SIGCONT: ::c_int = 18;
3039pub const SIGSTOP: ::c_int = 19;
3040pub const SIGTSTP: ::c_int = 20;
3041pub const SIGURG: ::c_int = 23;
3042pub const SIGIO: ::c_int = 29;
3043pub const SIGSYS: ::c_int = 31;
3044pub const SIGSTKFLT: ::c_int = 16;
3045pub const SIGPOLL: ::c_int = 29;
3046pub const SIGPWR: ::c_int = 30;
3047pub const SIG_SETMASK: ::c_int = 2;
3048pub const SIG_BLOCK: ::c_int = 0x000000;
3049pub const SIG_UNBLOCK: ::c_int = 0x01;
3050
3051pub const EXTPROC: ::tcflag_t = 0x00010000;
3052
3053pub const MAP_HUGETLB: ::c_int = 0x040000;
3054
3055pub const F_GETLK: ::c_int = 5;
3056pub const F_GETOWN: ::c_int = 9;
3057pub const F_SETLK: ::c_int = 6;
3058pub const F_SETLKW: ::c_int = 7;
3059pub const F_SETOWN: ::c_int = 8;
3060
3061pub const VEOF: usize = 4;
3062pub const VEOL: usize = 11;
3063pub const VEOL2: usize = 16;
3064pub const VMIN: usize = 6;
3065pub const IEXTEN: ::tcflag_t = 0x00008000;
3066pub const TOSTOP: ::tcflag_t = 0x00000100;
3067pub const FLUSHO: ::tcflag_t = 0x00001000;
3068
3069pub const TCGETS: ::c_int = 0x5401;
3070pub const TCSETS: ::c_int = 0x5402;
3071pub const TCSETSW: ::c_int = 0x5403;
3072pub const TCSETSF: ::c_int = 0x5404;
3073pub const TCGETA: ::c_int = 0x5405;
3074pub const TCSETA: ::c_int = 0x5406;
3075pub const TCSETAW: ::c_int = 0x5407;
3076pub const TCSETAF: ::c_int = 0x5408;
3077pub const TCSBRK: ::c_int = 0x5409;
3078pub const TCXONC: ::c_int = 0x540A;
3079pub const TCFLSH: ::c_int = 0x540B;
3080pub const TIOCGSOFTCAR: ::c_int = 0x5419;
3081pub const TIOCSSOFTCAR: ::c_int = 0x541A;
3082pub const TIOCLINUX: ::c_int = 0x541C;
3083pub const TIOCGSERIAL: ::c_int = 0x541E;
3084pub const TIOCEXCL: ::c_int = 0x540C;
3085pub const TIOCNXCL: ::c_int = 0x540D;
3086pub const TIOCSCTTY: ::c_int = 0x540E;
3087pub const TIOCGPGRP: ::c_int = 0x540F;
3088pub const TIOCSPGRP: ::c_int = 0x5410;
3089pub const TIOCOUTQ: ::c_int = 0x5411;
3090pub const TIOCSTI: ::c_int = 0x5412;
3091pub const TIOCGWINSZ: ::c_int = 0x5413;
3092pub const TIOCSWINSZ: ::c_int = 0x5414;
3093pub const TIOCMGET: ::c_int = 0x5415;
3094pub const TIOCMBIS: ::c_int = 0x5416;
3095pub const TIOCMBIC: ::c_int = 0x5417;
3096pub const TIOCMSET: ::c_int = 0x5418;
3097pub const FIONREAD: ::c_int = 0x541B;
3098pub const TIOCCONS: ::c_int = 0x541D;
3099
3100pub const POLLWRNORM: ::c_short = 0x100;
3101pub const POLLWRBAND: ::c_short = 0x200;
3102
3103pub const TIOCM_LE: ::c_int = 0x001;
3104pub const TIOCM_DTR: ::c_int = 0x002;
3105pub const TIOCM_RTS: ::c_int = 0x004;
3106pub const TIOCM_ST: ::c_int = 0x008;
3107pub const TIOCM_SR: ::c_int = 0x010;
3108pub const TIOCM_CTS: ::c_int = 0x020;
3109pub const TIOCM_CAR: ::c_int = 0x040;
3110pub const TIOCM_RNG: ::c_int = 0x080;
3111pub const TIOCM_DSR: ::c_int = 0x100;
3112pub const TIOCM_CD: ::c_int = TIOCM_CAR;
3113pub const TIOCM_RI: ::c_int = TIOCM_RNG;
3114
3115pub const O_DIRECTORY: ::c_int = 0x00080000;
3116pub const O_DIRECT: ::c_int = 0x00000800;
3117pub const O_LARGEFILE: ::c_int = 0x00001000;
3118pub const O_NOFOLLOW: ::c_int = 0x00000080;
3119
3120// intentionally not public, only used for fd_set
3121cfg_if! {
3122 if #[cfg(target_pointer_width = "32")] {
3123 const ULONG_SIZE: usize = 32;
3124 } else if #[cfg(target_pointer_width = "64")] {
3125 const ULONG_SIZE: usize = 64;
3126 } else {
3127 // Unknown target_pointer_width
3128 }
3129}
3130
3131// END_PUB_CONST
3132
3133f! {
3134 pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> () {
3135 let fd = fd as usize;
532ac7d7 3136 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
ff7c6d11
XL
3137 (*set).fds_bits[fd / size] &= !(1 << (fd % size));
3138 return
3139 }
3140
3141 pub fn FD_ISSET(fd: ::c_int, set: *mut fd_set) -> bool {
3142 let fd = fd as usize;
532ac7d7 3143 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
ff7c6d11
XL
3144 return ((*set).fds_bits[fd / size] & (1 << (fd % size))) != 0
3145 }
3146
3147 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () {
3148 let fd = fd as usize;
532ac7d7 3149 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
ff7c6d11
XL
3150 (*set).fds_bits[fd / size] |= 1 << (fd % size);
3151 return
3152 }
3153
3154 pub fn FD_ZERO(set: *mut fd_set) -> () {
3155 for slot in (*set).fds_bits.iter_mut() {
3156 *slot = 0;
3157 }
3158 }
3159
3160 pub fn WIFSTOPPED(status: ::c_int) -> bool {
3161 (status & 0xff) == 0x7f
3162 }
3163
3164 pub fn WSTOPSIG(status: ::c_int) -> ::c_int {
3165 (status >> 8) & 0xff
3166 }
3167
3168 pub fn WIFCONTINUED(status: ::c_int) -> bool {
3169 status == 0xffff
3170 }
3171
3172 pub fn WIFSIGNALED(status: ::c_int) -> bool {
3173 ((status & 0x7f) + 1) as i8 >= 2
3174 }
3175
3176 pub fn WTERMSIG(status: ::c_int) -> ::c_int {
3177 status & 0x7f
3178 }
3179
3180 pub fn WIFEXITED(status: ::c_int) -> bool {
3181 (status & 0x7f) == 0
3182 }
3183
3184 pub fn WEXITSTATUS(status: ::c_int) -> ::c_int {
3185 (status >> 8) & 0xff
3186 }
3187
3188 pub fn WCOREDUMP(status: ::c_int) -> bool {
3189 (status & 0x80) != 0
3190 }
3191
3192 pub fn QCMD(cmd: ::c_int, type_: ::c_int) -> ::c_int {
3193 (cmd << 8) | (type_ & 0x00ff)
3194 }
3195
3196 pub fn CPU_ZERO(cpuset: &mut cpu_set_t) -> () {
3197 for slot in cpuset.bits.iter_mut() {
3198 *slot = 0;
3199 }
3200 }
3201
3202 pub fn CPU_SET(cpu: usize, cpuset: &mut cpu_set_t) -> () {
532ac7d7
XL
3203 let size_in_bits
3204 = 8 * ::mem::size_of_val(&cpuset.bits[0]); // 32, 64 etc
ff7c6d11
XL
3205 let (idx, offset) = (cpu / size_in_bits, cpu % size_in_bits);
3206 cpuset.bits[idx] |= 1 << offset;
3207 ()
3208 }
3209
3210 pub fn CPU_CLR(cpu: usize, cpuset: &mut cpu_set_t) -> () {
532ac7d7
XL
3211 let size_in_bits
3212 = 8 * ::mem::size_of_val(&cpuset.bits[0]); // 32, 64 etc
ff7c6d11
XL
3213 let (idx, offset) = (cpu / size_in_bits, cpu % size_in_bits);
3214 cpuset.bits[idx] &= !(1 << offset);
3215 ()
3216 }
3217
3218 pub fn CPU_ISSET(cpu: usize, cpuset: &cpu_set_t) -> bool {
532ac7d7 3219 let size_in_bits = 8 * ::mem::size_of_val(&cpuset.bits[0]);
ff7c6d11
XL
3220 let (idx, offset) = (cpu / size_in_bits, cpu % size_in_bits);
3221 0 != (cpuset.bits[idx] & (1 << offset))
3222 }
3223
3224 pub fn CPU_EQUAL(set1: &cpu_set_t, set2: &cpu_set_t) -> bool {
3225 set1.bits == set2.bits
3226 }
3227
3228 pub fn major(dev: ::dev_t) -> ::c_uint {
3229 let mut major = 0;
3230 major |= (dev & 0x00000000000fff00) >> 8;
3231 major |= (dev & 0xfffff00000000000) >> 32;
3232 major as ::c_uint
3233 }
3234
3235 pub fn minor(dev: ::dev_t) -> ::c_uint {
3236 let mut minor = 0;
3237 minor |= (dev & 0x00000000000000ff) >> 0;
3238 minor |= (dev & 0x00000ffffff00000) >> 12;
3239 minor as ::c_uint
3240 }
3241
3242 pub fn makedev(major: ::c_uint, minor: ::c_uint) -> ::dev_t {
3243 let major = major as ::dev_t;
3244 let minor = minor as ::dev_t;
3245 let mut dev = 0;
3246 dev |= (major & 0x00000fff) << 8;
3247 dev |= (major & 0xfffff000) << 32;
3248 dev |= (minor & 0x000000ff) << 0;
3249 dev |= (minor & 0xffffff00) << 12;
3250 dev
3251 }
3252}
3253
3254// EXTERN_FN
3255
3256#[link(name = "c")]
3257#[link(name = "fdio")]
3258extern {}
3259
532ac7d7 3260#[cfg_attr(feature = "extra_traits", derive(Debug))]
69743fb6 3261pub enum FILE {}
532ac7d7
XL
3262impl ::Copy for FILE {}
3263impl ::Clone for FILE {
3264 fn clone(&self) -> FILE { *self }
3265}
3266#[cfg_attr(feature = "extra_traits", derive(Debug))]
69743fb6 3267pub enum fpos_t {} // TODO: fill this out with a struct
532ac7d7
XL
3268impl ::Copy for fpos_t {}
3269impl ::Clone for fpos_t {
3270 fn clone(&self) -> fpos_t { *self }
3271}
69743fb6 3272
ff7c6d11 3273extern {
69743fb6
XL
3274 pub fn isalnum(c: c_int) -> c_int;
3275 pub fn isalpha(c: c_int) -> c_int;
3276 pub fn iscntrl(c: c_int) -> c_int;
3277 pub fn isdigit(c: c_int) -> c_int;
3278 pub fn isgraph(c: c_int) -> c_int;
3279 pub fn islower(c: c_int) -> c_int;
3280 pub fn isprint(c: c_int) -> c_int;
3281 pub fn ispunct(c: c_int) -> c_int;
3282 pub fn isspace(c: c_int) -> c_int;
3283 pub fn isupper(c: c_int) -> c_int;
3284 pub fn isxdigit(c: c_int) -> c_int;
3285 pub fn tolower(c: c_int) -> c_int;
3286 pub fn toupper(c: c_int) -> c_int;
3287 pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE;
3288 pub fn freopen(filename: *const c_char, mode: *const c_char,
3289 file: *mut FILE) -> *mut FILE;
3290 pub fn fflush(file: *mut FILE) -> c_int;
3291 pub fn fclose(file: *mut FILE) -> c_int;
3292 pub fn remove(filename: *const c_char) -> c_int;
3293 pub fn rename(oldname: *const c_char, newname: *const c_char) -> c_int;
3294 pub fn tmpfile() -> *mut FILE;
3295 pub fn setvbuf(stream: *mut FILE, buffer: *mut c_char, mode: c_int,
3296 size: size_t) -> c_int;
3297 pub fn setbuf(stream: *mut FILE, buf: *mut c_char);
3298 pub fn getchar() -> c_int;
3299 pub fn putchar(c: c_int) -> c_int;
3300 pub fn fgetc(stream: *mut FILE) -> c_int;
3301 pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_char;
3302 pub fn fputc(c: c_int, stream: *mut FILE) -> c_int;
3303 pub fn fputs(s: *const c_char, stream: *mut FILE) -> c_int;
3304 pub fn puts(s: *const c_char) -> c_int;
3305 pub fn ungetc(c: c_int, stream: *mut FILE) -> c_int;
3306 pub fn fread(ptr: *mut c_void, size: size_t, nobj: size_t,
3307 stream: *mut FILE) -> size_t;
3308 pub fn fwrite(ptr: *const c_void, size: size_t, nobj: size_t,
3309 stream: *mut FILE) -> size_t;
3310 pub fn fseek(stream: *mut FILE, offset: c_long, whence: c_int) -> c_int;
3311 pub fn ftell(stream: *mut FILE) -> c_long;
3312 pub fn rewind(stream: *mut FILE);
3313 pub fn fgetpos(stream: *mut FILE, ptr: *mut fpos_t) -> c_int;
3314 pub fn fsetpos(stream: *mut FILE, ptr: *const fpos_t) -> c_int;
3315 pub fn feof(stream: *mut FILE) -> c_int;
3316 pub fn ferror(stream: *mut FILE) -> c_int;
3317 pub fn perror(s: *const c_char);
3318 pub fn atoi(s: *const c_char) -> c_int;
3319 pub fn strtod(s: *const c_char, endp: *mut *mut c_char) -> c_double;
3320 pub fn strtol(s: *const c_char, endp: *mut *mut c_char,
3321 base: c_int) -> c_long;
3322 pub fn strtoul(s: *const c_char, endp: *mut *mut c_char,
3323 base: c_int) -> c_ulong;
3324 pub fn calloc(nobj: size_t, size: size_t) -> *mut c_void;
3325 pub fn malloc(size: size_t) -> *mut c_void;
3326 pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void;
3327 pub fn free(p: *mut c_void);
3328 pub fn abort() -> !;
3329 pub fn exit(status: c_int) -> !;
3330 pub fn _exit(status: c_int) -> !;
3331 pub fn atexit(cb: extern fn()) -> c_int;
3332 pub fn system(s: *const c_char) -> c_int;
3333 pub fn getenv(s: *const c_char) -> *mut c_char;
3334
3335 pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
3336 pub fn strncpy(dst: *mut c_char, src: *const c_char,
3337 n: size_t) -> *mut c_char;
3338 pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char;
3339 pub fn strncat(s: *mut c_char, ct: *const c_char,
3340 n: size_t) -> *mut c_char;
3341 pub fn strcmp(cs: *const c_char, ct: *const c_char) -> c_int;
3342 pub fn strncmp(cs: *const c_char, ct: *const c_char, n: size_t) -> c_int;
3343 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int;
3344 pub fn strchr(cs: *const c_char, c: c_int) -> *mut c_char;
3345 pub fn strrchr(cs: *const c_char, c: c_int) -> *mut c_char;
3346 pub fn strspn(cs: *const c_char, ct: *const c_char) -> size_t;
3347 pub fn strcspn(cs: *const c_char, ct: *const c_char) -> size_t;
3348 pub fn strdup(cs: *const c_char) -> *mut c_char;
3349 pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char;
3350 pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
3351 pub fn strlen(cs: *const c_char) -> size_t;
3352 pub fn strnlen(cs: *const c_char, maxlen: size_t) -> size_t;
3353 pub fn strerror(n: c_int) -> *mut c_char;
3354 pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char;
3355 pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t;
3356 pub fn wcslen(buf: *const wchar_t) -> size_t;
3357 pub fn wcstombs(dest: *mut c_char, src: *const wchar_t,
3358 n: size_t) -> ::size_t;
3359
3360 pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void;
3361 pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int;
3362 pub fn memcpy(dest: *mut c_void, src: *const c_void,
3363 n: size_t) -> *mut c_void;
3364 pub fn memmove(dest: *mut c_void, src: *const c_void,
3365 n: size_t) -> *mut c_void;
3366 pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void;
3367
3368 pub fn abs(i: c_int) -> c_int;
3369 pub fn atof(s: *const c_char) -> c_double;
3370 pub fn labs(i: c_long) -> c_long;
3371 pub fn rand() -> c_int;
3372 pub fn srand(seed: c_uint);
3373
ff7c6d11
XL
3374 pub fn getpwnam(name: *const ::c_char) -> *mut passwd;
3375 pub fn getpwuid(uid: ::uid_t) -> *mut passwd;
3376
3377 pub fn fprintf(stream: *mut ::FILE,
3378 format: *const ::c_char, ...) -> ::c_int;
3379 pub fn printf(format: *const ::c_char, ...) -> ::c_int;
3380 pub fn snprintf(s: *mut ::c_char, n: ::size_t,
3381 format: *const ::c_char, ...) -> ::c_int;
3382 pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int;
3383 pub fn fscanf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
3384 pub fn scanf(format: *const ::c_char, ...) -> ::c_int;
3385 pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int;
3386 pub fn getchar_unlocked() -> ::c_int;
3387 pub fn putchar_unlocked(c: ::c_int) -> ::c_int;
3388
3389 pub fn socket(domain: ::c_int, ty: ::c_int, protocol: ::c_int) -> ::c_int;
3390 pub fn connect(socket: ::c_int, address: *const sockaddr,
3391 len: socklen_t) -> ::c_int;
3392 pub fn listen(socket: ::c_int, backlog: ::c_int) -> ::c_int;
3393 pub fn accept(socket: ::c_int, address: *mut sockaddr,
3394 address_len: *mut socklen_t) -> ::c_int;
3395 pub fn getpeername(socket: ::c_int, address: *mut sockaddr,
3396 address_len: *mut socklen_t) -> ::c_int;
3397 pub fn getsockname(socket: ::c_int, address: *mut sockaddr,
3398 address_len: *mut socklen_t) -> ::c_int;
3399 pub fn setsockopt(socket: ::c_int, level: ::c_int, name: ::c_int,
3400 value: *const ::c_void,
3401 option_len: socklen_t) -> ::c_int;
3402 pub fn socketpair(domain: ::c_int, type_: ::c_int, protocol: ::c_int,
3403 socket_vector: *mut ::c_int) -> ::c_int;
3404 pub fn sendto(socket: ::c_int, buf: *const ::c_void, len: ::size_t,
3405 flags: ::c_int, addr: *const sockaddr,
3406 addrlen: socklen_t) -> ::ssize_t;
3407 pub fn shutdown(socket: ::c_int, how: ::c_int) -> ::c_int;
3408
3409 pub fn chmod(path: *const c_char, mode: mode_t) -> ::c_int;
3410 pub fn fchmod(fd: ::c_int, mode: mode_t) -> ::c_int;
3411
3412 pub fn fstat(fildes: ::c_int, buf: *mut stat) -> ::c_int;
3413
3414 pub fn mkdir(path: *const c_char, mode: mode_t) -> ::c_int;
3415
3416 pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int;
3417
3418 pub fn pclose(stream: *mut ::FILE) -> ::c_int;
3419 pub fn fdopen(fd: ::c_int, mode: *const c_char) -> *mut ::FILE;
3420 pub fn fileno(stream: *mut ::FILE) -> ::c_int;
3421
3422 pub fn open(path: *const c_char, oflag: ::c_int, ...) -> ::c_int;
3423 pub fn creat(path: *const c_char, mode: mode_t) -> ::c_int;
3424 pub fn fcntl(fd: ::c_int, cmd: ::c_int, ...) -> ::c_int;
3425
3426 pub fn opendir(dirname: *const c_char) -> *mut ::DIR;
3427 pub fn readdir(dirp: *mut ::DIR) -> *mut ::dirent;
3428 pub fn readdir_r(dirp: *mut ::DIR, entry: *mut ::dirent,
3429 result: *mut *mut ::dirent) -> ::c_int;
3430 pub fn closedir(dirp: *mut ::DIR) -> ::c_int;
3431 pub fn rewinddir(dirp: *mut ::DIR);
3432
3433 pub fn openat(dirfd: ::c_int, pathname: *const ::c_char,
3434 flags: ::c_int, ...) -> ::c_int;
3435 pub fn fchmodat(dirfd: ::c_int, pathname: *const ::c_char,
3436 mode: ::mode_t, flags: ::c_int) -> ::c_int;
3437 pub fn fchown(fd: ::c_int,
3438 owner: ::uid_t,
3439 group: ::gid_t) -> ::c_int;
3440 pub fn fchownat(dirfd: ::c_int, pathname: *const ::c_char,
3441 owner: ::uid_t, group: ::gid_t,
3442 flags: ::c_int) -> ::c_int;
3443 pub fn fstatat(dirfd: ::c_int, pathname: *const ::c_char,
3444 buf: *mut stat, flags: ::c_int) -> ::c_int;
3445 pub fn linkat(olddirfd: ::c_int, oldpath: *const ::c_char,
3446 newdirfd: ::c_int, newpath: *const ::c_char,
3447 flags: ::c_int) -> ::c_int;
3448 pub fn mkdirat(dirfd: ::c_int, pathname: *const ::c_char,
3449 mode: ::mode_t) -> ::c_int;
3450 pub fn readlinkat(dirfd: ::c_int, pathname: *const ::c_char,
3451 buf: *mut ::c_char, bufsiz: ::size_t) -> ::ssize_t;
3452 pub fn renameat(olddirfd: ::c_int, oldpath: *const ::c_char,
3453 newdirfd: ::c_int, newpath: *const ::c_char)
3454 -> ::c_int;
3455 pub fn symlinkat(target: *const ::c_char, newdirfd: ::c_int,
3456 linkpath: *const ::c_char) -> ::c_int;
3457 pub fn unlinkat(dirfd: ::c_int, pathname: *const ::c_char,
3458 flags: ::c_int) -> ::c_int;
3459
3460 pub fn access(path: *const c_char, amode: ::c_int) -> ::c_int;
3461 pub fn alarm(seconds: ::c_uint) -> ::c_uint;
3462 pub fn chdir(dir: *const c_char) -> ::c_int;
3463 pub fn fchdir(dirfd: ::c_int) -> ::c_int;
3464 pub fn chown(path: *const c_char, uid: uid_t,
3465 gid: gid_t) -> ::c_int;
3466 pub fn lchown(path: *const c_char, uid: uid_t,
3467 gid: gid_t) -> ::c_int;
3468 pub fn close(fd: ::c_int) -> ::c_int;
3469 pub fn dup(fd: ::c_int) -> ::c_int;
3470 pub fn dup2(src: ::c_int, dst: ::c_int) -> ::c_int;
3471 pub fn execl(path: *const c_char,
3472 arg0: *const c_char, ...) -> ::c_int;
3473 pub fn execle(path: *const ::c_char,
3474 arg0: *const ::c_char, ...) -> ::c_int;
3475 pub fn execlp(file: *const ::c_char,
3476 arg0: *const ::c_char, ...) -> ::c_int;
3477 pub fn execv(prog: *const c_char,
3478 argv: *const *const c_char) -> ::c_int;
3479 pub fn execve(prog: *const c_char, argv: *const *const c_char,
3480 envp: *const *const c_char)
3481 -> ::c_int;
3482 pub fn execvp(c: *const c_char,
3483 argv: *const *const c_char) -> ::c_int;
3484 pub fn fork() -> pid_t;
3485 pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long;
3486 pub fn getcwd(buf: *mut c_char, size: ::size_t) -> *mut c_char;
3487 pub fn getegid() -> gid_t;
3488 pub fn geteuid() -> uid_t;
3489 pub fn getgid() -> gid_t;
3490 pub fn getgroups(ngroups_max: ::c_int, groups: *mut gid_t)
3491 -> ::c_int;
3492 pub fn getlogin() -> *mut c_char;
3493 pub fn getopt(argc: ::c_int, argv: *const *mut c_char,
3494 optstr: *const c_char) -> ::c_int;
3495 pub fn getpgid(pid: pid_t) -> pid_t;
3496 pub fn getpgrp() -> pid_t;
3497 pub fn getpid() -> pid_t;
3498 pub fn getppid() -> pid_t;
3499 pub fn getuid() -> uid_t;
3500 pub fn isatty(fd: ::c_int) -> ::c_int;
3501 pub fn link(src: *const c_char, dst: *const c_char) -> ::c_int;
3502 pub fn lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t;
3503 pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long;
3504 pub fn pause() -> ::c_int;
3505 pub fn pipe(fds: *mut ::c_int) -> ::c_int;
3506 pub fn posix_memalign(memptr: *mut *mut ::c_void,
3507 align: ::size_t,
3508 size: ::size_t) -> ::c_int;
3509 pub fn read(fd: ::c_int, buf: *mut ::c_void, count: ::size_t)
3510 -> ::ssize_t;
3511 pub fn rmdir(path: *const c_char) -> ::c_int;
3512 pub fn seteuid(uid: uid_t) -> ::c_int;
69743fb6 3513 pub fn setegid(gid: gid_t) -> ::c_int;
ff7c6d11
XL
3514 pub fn setgid(gid: gid_t) -> ::c_int;
3515 pub fn setpgid(pid: pid_t, pgid: pid_t) -> ::c_int;
3516 pub fn setsid() -> pid_t;
3517 pub fn setuid(uid: uid_t) -> ::c_int;
3518 pub fn sleep(secs: ::c_uint) -> ::c_uint;
3519 pub fn nanosleep(rqtp: *const timespec,
3520 rmtp: *mut timespec) -> ::c_int;
3521 pub fn tcgetpgrp(fd: ::c_int) -> pid_t;
3522 pub fn tcsetpgrp(fd: ::c_int, pgrp: ::pid_t) -> ::c_int;
3523 pub fn ttyname(fd: ::c_int) -> *mut c_char;
3524 pub fn unlink(c: *const c_char) -> ::c_int;
3525 pub fn wait(status: *mut ::c_int) -> pid_t;
3526 pub fn waitpid(pid: pid_t, status: *mut ::c_int, options: ::c_int)
3527 -> pid_t;
3528 pub fn write(fd: ::c_int, buf: *const ::c_void, count: ::size_t)
3529 -> ::ssize_t;
3530 pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t,
3531 offset: off_t) -> ::ssize_t;
3532 pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t,
3533 offset: off_t) -> ::ssize_t;
3534 pub fn umask(mask: mode_t) -> mode_t;
3535
3536 pub fn utime(file: *const c_char, buf: *const utimbuf) -> ::c_int;
3537
3538 pub fn kill(pid: pid_t, sig: ::c_int) -> ::c_int;
3539
3540 pub fn mlock(addr: *const ::c_void, len: ::size_t) -> ::c_int;
3541 pub fn munlock(addr: *const ::c_void, len: ::size_t) -> ::c_int;
3542 pub fn mlockall(flags: ::c_int) -> ::c_int;
3543 pub fn munlockall() -> ::c_int;
3544
3545 pub fn mmap(addr: *mut ::c_void,
3546 len: ::size_t,
3547 prot: ::c_int,
3548 flags: ::c_int,
3549 fd: ::c_int,
3550 offset: off_t)
3551 -> *mut ::c_void;
3552 pub fn munmap(addr: *mut ::c_void, len: ::size_t) -> ::c_int;
3553
3554 pub fn if_nametoindex(ifname: *const c_char) -> ::c_uint;
3555 pub fn if_indextoname(ifindex: ::c_uint,
3556 ifname: *mut ::c_char) -> *mut ::c_char;
3557
3558 pub fn lstat(path: *const c_char, buf: *mut stat) -> ::c_int;
3559
3560 pub fn fsync(fd: ::c_int) -> ::c_int;
3561
3562 pub fn setenv(name: *const c_char, val: *const c_char,
3563 overwrite: ::c_int) -> ::c_int;
3564 pub fn unsetenv(name: *const c_char) -> ::c_int;
3565
3566 pub fn symlink(path1: *const c_char,
3567 path2: *const c_char) -> ::c_int;
3568
3569 pub fn ftruncate(fd: ::c_int, length: off_t) -> ::c_int;
3570
3571 pub fn signal(signum: ::c_int, handler: sighandler_t) -> sighandler_t;
3572
3573 pub fn getrlimit(resource: ::c_int, rlim: *mut rlimit) -> ::c_int;
3574 pub fn setrlimit(resource: ::c_int, rlim: *const rlimit) -> ::c_int;
3575 pub fn getrusage(resource: ::c_int, usage: *mut rusage) -> ::c_int;
3576
3577 pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char)
3578 -> *mut ::c_char;
3579
3580 pub fn flock(fd: ::c_int, operation: ::c_int) -> ::c_int;
3581
3582 pub fn gettimeofday(tp: *mut ::timeval,
3583 tz: *mut ::c_void) -> ::c_int;
3584 pub fn times(buf: *mut ::tms) -> ::clock_t;
3585
3586 pub fn pthread_self() -> ::pthread_t;
3587 pub fn pthread_join(native: ::pthread_t,
3588 value: *mut *mut ::c_void) -> ::c_int;
3589 pub fn pthread_exit(value: *mut ::c_void);
3590 pub fn pthread_attr_init(attr: *mut ::pthread_attr_t) -> ::c_int;
3591 pub fn pthread_attr_destroy(attr: *mut ::pthread_attr_t) -> ::c_int;
3592 pub fn pthread_attr_setstacksize(attr: *mut ::pthread_attr_t,
3593 stack_size: ::size_t) -> ::c_int;
3594 pub fn pthread_attr_setdetachstate(attr: *mut ::pthread_attr_t,
3595 state: ::c_int) -> ::c_int;
3596 pub fn pthread_detach(thread: ::pthread_t) -> ::c_int;
3597 pub fn sched_yield() -> ::c_int;
3598 pub fn pthread_key_create(key: *mut pthread_key_t,
532ac7d7 3599 dtor: ::Option<unsafe extern fn(*mut ::c_void)>)
ff7c6d11
XL
3600 -> ::c_int;
3601 pub fn pthread_key_delete(key: pthread_key_t) -> ::c_int;
3602 pub fn pthread_getspecific(key: pthread_key_t) -> *mut ::c_void;
3603 pub fn pthread_setspecific(key: pthread_key_t, value: *const ::c_void)
3604 -> ::c_int;
3605 pub fn pthread_mutex_init(lock: *mut pthread_mutex_t,
3606 attr: *const pthread_mutexattr_t) -> ::c_int;
3607 pub fn pthread_mutex_destroy(lock: *mut pthread_mutex_t) -> ::c_int;
3608 pub fn pthread_mutex_lock(lock: *mut pthread_mutex_t) -> ::c_int;
3609 pub fn pthread_mutex_trylock(lock: *mut pthread_mutex_t) -> ::c_int;
3610 pub fn pthread_mutex_unlock(lock: *mut pthread_mutex_t) -> ::c_int;
3611
3612 pub fn pthread_mutexattr_init(attr: *mut pthread_mutexattr_t) -> ::c_int;
3613 pub fn pthread_mutexattr_destroy(attr: *mut pthread_mutexattr_t) -> ::c_int;
3614 pub fn pthread_mutexattr_settype(attr: *mut pthread_mutexattr_t,
3615 _type: ::c_int) -> ::c_int;
3616
3617 pub fn pthread_cond_init(cond: *mut pthread_cond_t,
3618 attr: *const pthread_condattr_t) -> ::c_int;
3619 pub fn pthread_cond_wait(cond: *mut pthread_cond_t,
3620 lock: *mut pthread_mutex_t) -> ::c_int;
3621 pub fn pthread_cond_timedwait(cond: *mut pthread_cond_t,
3622 lock: *mut pthread_mutex_t,
3623 abstime: *const ::timespec) -> ::c_int;
3624 pub fn pthread_cond_signal(cond: *mut pthread_cond_t) -> ::c_int;
3625 pub fn pthread_cond_broadcast(cond: *mut pthread_cond_t) -> ::c_int;
3626 pub fn pthread_cond_destroy(cond: *mut pthread_cond_t) -> ::c_int;
3627 pub fn pthread_condattr_init(attr: *mut pthread_condattr_t) -> ::c_int;
3628 pub fn pthread_condattr_destroy(attr: *mut pthread_condattr_t) -> ::c_int;
3629 pub fn pthread_rwlock_init(lock: *mut pthread_rwlock_t,
3630 attr: *const pthread_rwlockattr_t) -> ::c_int;
3631 pub fn pthread_rwlock_destroy(lock: *mut pthread_rwlock_t) -> ::c_int;
3632 pub fn pthread_rwlock_rdlock(lock: *mut pthread_rwlock_t) -> ::c_int;
3633 pub fn pthread_rwlock_tryrdlock(lock: *mut pthread_rwlock_t) -> ::c_int;
3634 pub fn pthread_rwlock_wrlock(lock: *mut pthread_rwlock_t) -> ::c_int;
3635 pub fn pthread_rwlock_trywrlock(lock: *mut pthread_rwlock_t) -> ::c_int;
3636 pub fn pthread_rwlock_unlock(lock: *mut pthread_rwlock_t) -> ::c_int;
3637 pub fn pthread_rwlockattr_init(attr: *mut pthread_rwlockattr_t) -> ::c_int;
3638 pub fn pthread_rwlockattr_destroy(attr: *mut pthread_rwlockattr_t)
3639 -> ::c_int;
3640 pub fn strerror_r(errnum: ::c_int, buf: *mut c_char,
3641 buflen: ::size_t) -> ::c_int;
3642
3643 pub fn getsockopt(sockfd: ::c_int,
3644 level: ::c_int,
3645 optname: ::c_int,
3646 optval: *mut ::c_void,
3647 optlen: *mut ::socklen_t) -> ::c_int;
3648 pub fn raise(signum: ::c_int) -> ::c_int;
3649 pub fn sigaction(signum: ::c_int,
3650 act: *const sigaction,
3651 oldact: *mut sigaction) -> ::c_int;
3652
3653 pub fn utimes(filename: *const ::c_char,
3654 times: *const ::timeval) -> ::c_int;
3655 pub fn dlopen(filename: *const ::c_char,
3656 flag: ::c_int) -> *mut ::c_void;
3657 pub fn dlerror() -> *mut ::c_char;
3658 pub fn dlsym(handle: *mut ::c_void,
3659 symbol: *const ::c_char) -> *mut ::c_void;
3660 pub fn dlclose(handle: *mut ::c_void) -> ::c_int;
3661 pub fn dladdr(addr: *const ::c_void, info: *mut Dl_info) -> ::c_int;
3662
3663 pub fn getaddrinfo(node: *const c_char,
3664 service: *const c_char,
3665 hints: *const addrinfo,
3666 res: *mut *mut addrinfo) -> ::c_int;
3667 pub fn freeaddrinfo(res: *mut addrinfo);
3668 pub fn gai_strerror(errcode: ::c_int) -> *const ::c_char;
3669 pub fn res_init() -> ::c_int;
3670
3671 pub fn gmtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm;
3672 pub fn localtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm;
3673 pub fn mktime(tm: *mut tm) -> time_t;
3674 pub fn time(time: *mut time_t) -> time_t;
3675 pub fn gmtime(time_p: *const time_t) -> *mut tm;
3676 pub fn localtime(time_p: *const time_t) -> *mut tm;
3677
3678 pub fn mknod(pathname: *const ::c_char, mode: ::mode_t,
3679 dev: ::dev_t) -> ::c_int;
3680 pub fn uname(buf: *mut ::utsname) -> ::c_int;
3681 pub fn gethostname(name: *mut ::c_char, len: ::size_t) -> ::c_int;
3682 pub fn getservbyname(name: *const ::c_char,
3683 proto: *const ::c_char) -> *mut servent;
3684 pub fn getprotobyname(name: *const ::c_char) -> *mut protoent;
3685 pub fn getprotobynumber(proto: ::c_int) -> *mut protoent;
3686 pub fn chroot(name: *const ::c_char) -> ::c_int;
3687 pub fn usleep(secs: ::c_uint) -> ::c_int;
3688 pub fn send(socket: ::c_int, buf: *const ::c_void, len: ::size_t,
3689 flags: ::c_int) -> ::ssize_t;
3690 pub fn recv(socket: ::c_int, buf: *mut ::c_void, len: ::size_t,
3691 flags: ::c_int) -> ::ssize_t;
3692 pub fn putenv(string: *mut c_char) -> ::c_int;
3693 pub fn poll(fds: *mut pollfd, nfds: nfds_t, timeout: ::c_int) -> ::c_int;
3694 pub fn select(nfds: ::c_int,
3695 readfs: *mut fd_set,
3696 writefds: *mut fd_set,
3697 errorfds: *mut fd_set,
3698 timeout: *mut timeval) -> ::c_int;
3699 pub fn setlocale(category: ::c_int,
3700 locale: *const ::c_char) -> *mut ::c_char;
3701 pub fn localeconv() -> *mut lconv;
3702
3703 pub fn sem_destroy(sem: *mut sem_t) -> ::c_int;
3704 pub fn sem_wait(sem: *mut sem_t) -> ::c_int;
3705 pub fn sem_trywait(sem: *mut sem_t) -> ::c_int;
3706 pub fn sem_post(sem: *mut sem_t) -> ::c_int;
3707 pub fn sem_init(sem: *mut sem_t,
3708 pshared: ::c_int,
3709 value: ::c_uint)
3710 -> ::c_int;
3711 pub fn statvfs(path: *const c_char, buf: *mut statvfs) -> ::c_int;
3712 pub fn fstatvfs(fd: ::c_int, buf: *mut statvfs) -> ::c_int;
3713
3714 pub fn readlink(path: *const c_char,
3715 buf: *mut c_char,
3716 bufsz: ::size_t)
3717 -> ::ssize_t;
3718
3719 pub fn sigemptyset(set: *mut sigset_t) -> ::c_int;
3720 pub fn sigaddset(set: *mut sigset_t, signum: ::c_int) -> ::c_int;
3721 pub fn sigfillset(set: *mut sigset_t) -> ::c_int;
3722 pub fn sigdelset(set: *mut sigset_t, signum: ::c_int) -> ::c_int;
3723 pub fn sigismember(set: *const sigset_t, signum: ::c_int) -> ::c_int;
3724
3725 pub fn sigprocmask(how: ::c_int,
3726 set: *const sigset_t,
3727 oldset: *mut sigset_t)
3728 -> ::c_int;
3729 pub fn sigpending(set: *mut sigset_t) -> ::c_int;
3730
3731 pub fn timegm(tm: *mut ::tm) -> time_t;
3732
3733 pub fn getsid(pid: pid_t) -> pid_t;
3734
3735 pub fn sysconf(name: ::c_int) -> ::c_long;
3736
3737 pub fn mkfifo(path: *const c_char, mode: mode_t) -> ::c_int;
3738
3739 pub fn pselect(nfds: ::c_int,
3740 readfs: *mut fd_set,
3741 writefds: *mut fd_set,
3742 errorfds: *mut fd_set,
3743 timeout: *const timespec,
3744 sigmask: *const sigset_t) -> ::c_int;
3745 pub fn fseeko(stream: *mut ::FILE,
3746 offset: ::off_t,
3747 whence: ::c_int) -> ::c_int;
3748 pub fn ftello(stream: *mut ::FILE) -> ::off_t;
3749 pub fn tcdrain(fd: ::c_int) -> ::c_int;
3750 pub fn cfgetispeed(termios: *const ::termios) -> ::speed_t;
3751 pub fn cfgetospeed(termios: *const ::termios) -> ::speed_t;
3752 pub fn cfmakeraw(termios: *mut ::termios);
3753 pub fn cfsetispeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int;
3754 pub fn cfsetospeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int;
3755 pub fn cfsetspeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int;
3756 pub fn tcgetattr(fd: ::c_int, termios: *mut ::termios) -> ::c_int;
3757 pub fn tcsetattr(fd: ::c_int,
3758 optional_actions: ::c_int,
3759 termios: *const ::termios) -> ::c_int;
3760 pub fn tcflow(fd: ::c_int, action: ::c_int) -> ::c_int;
3761 pub fn tcflush(fd: ::c_int, action: ::c_int) -> ::c_int;
3762 pub fn tcgetsid(fd: ::c_int) -> ::pid_t;
3763 pub fn tcsendbreak(fd: ::c_int, duration: ::c_int) -> ::c_int;
3764 pub fn mkstemp(template: *mut ::c_char) -> ::c_int;
3765 pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char;
3766
3767 pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char;
3768
3769 pub fn openlog(ident: *const ::c_char, logopt: ::c_int, facility: ::c_int);
3770 pub fn closelog();
3771 pub fn setlogmask(maskpri: ::c_int) -> ::c_int;
3772 pub fn syslog(priority: ::c_int, message: *const ::c_char, ...);
3773 pub fn nice(incr: ::c_int) -> ::c_int;
3774
3775 pub fn grantpt(fd: ::c_int) -> ::c_int;
3776 pub fn posix_openpt(flags: ::c_int) -> ::c_int;
3777 pub fn ptsname(fd: ::c_int) -> *mut ::c_char;
3778 pub fn unlockpt(fd: ::c_int) -> ::c_int;
3779
3780 pub fn fdatasync(fd: ::c_int) -> ::c_int;
3781 pub fn mincore(addr: *mut ::c_void, len: ::size_t,
3782 vec: *mut ::c_uchar) -> ::c_int;
3783 pub fn clock_getres(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
3784 pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
3785 pub fn clock_settime(clk_id: ::clockid_t, tp: *const ::timespec) -> ::c_int;
3786 pub fn dirfd(dirp: *mut ::DIR) -> ::c_int;
3787
3788 pub fn pthread_getattr_np(native: ::pthread_t,
3789 attr: *mut ::pthread_attr_t) -> ::c_int;
3790 pub fn pthread_attr_getstack(attr: *const ::pthread_attr_t,
3791 stackaddr: *mut *mut ::c_void,
3792 stacksize: *mut ::size_t) -> ::c_int;
3793 pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
3794 pub fn setgroups(ngroups: ::size_t,
3795 ptr: *const ::gid_t) -> ::c_int;
3796 pub fn pipe2(fds: *mut ::c_int, flags: ::c_int) -> ::c_int;
3797 pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int;
3798 pub fn statfs64(path: *const ::c_char, buf: *mut statfs64) -> ::c_int;
3799 pub fn fstatfs(fd: ::c_int, buf: *mut statfs) -> ::c_int;
3800 pub fn fstatfs64(fd: ::c_int, buf: *mut statfs64) -> ::c_int;
3801 pub fn statvfs64(path: *const ::c_char, buf: *mut statvfs64) -> ::c_int;
3802 pub fn fstatvfs64(fd: ::c_int, buf: *mut statvfs64) -> ::c_int;
3803 pub fn memrchr(cx: *const ::c_void,
3804 c: ::c_int,
3805 n: ::size_t) -> *mut ::c_void;
3806
3807 pub fn posix_fadvise(fd: ::c_int, offset: ::off_t, len: ::off_t,
3808 advise: ::c_int) -> ::c_int;
3809 pub fn futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int;
3810 pub fn utimensat(dirfd: ::c_int, path: *const ::c_char,
3811 times: *const ::timespec, flag: ::c_int) -> ::c_int;
3812 pub fn duplocale(base: ::locale_t) -> ::locale_t;
3813 pub fn freelocale(loc: ::locale_t);
3814 pub fn newlocale(mask: ::c_int,
3815 locale: *const ::c_char,
3816 base: ::locale_t) -> ::locale_t;
3817 pub fn uselocale(loc: ::locale_t) -> ::locale_t;
3818 pub fn creat64(path: *const c_char, mode: mode_t) -> ::c_int;
3819 pub fn fstat64(fildes: ::c_int, buf: *mut stat64) -> ::c_int;
3820 pub fn fstatat64(dirfd: ::c_int, pathname: *const c_char,
3821 buf: *mut stat64, flags: ::c_int) -> ::c_int;
3822 pub fn ftruncate64(fd: ::c_int, length: off64_t) -> ::c_int;
3823 pub fn getrlimit64(resource: ::c_int, rlim: *mut rlimit64) -> ::c_int;
3824 pub fn lseek64(fd: ::c_int, offset: off64_t, whence: ::c_int) -> off64_t;
3825 pub fn lstat64(path: *const c_char, buf: *mut stat64) -> ::c_int;
3826 pub fn mmap64(addr: *mut ::c_void,
3827 len: ::size_t,
3828 prot: ::c_int,
3829 flags: ::c_int,
3830 fd: ::c_int,
3831 offset: off64_t)
3832 -> *mut ::c_void;
3833 pub fn open64(path: *const c_char, oflag: ::c_int, ...) -> ::c_int;
3834 pub fn openat64(fd: ::c_int,
3835 path: *const c_char,
3836 oflag: ::c_int, ...) -> ::c_int;
3837 pub fn pread64(fd: ::c_int, buf: *mut ::c_void, count: ::size_t,
3838 offset: off64_t) -> ::ssize_t;
3839 pub fn preadv64(fd: ::c_int,
3840 iov: *const ::iovec,
3841 iovcnt: ::c_int,
3842 offset: ::off64_t) -> ::ssize_t;
3843 pub fn pwrite64(fd: ::c_int, buf: *const ::c_void, count: ::size_t,
3844 offset: off64_t) -> ::ssize_t;
3845 pub fn pwritev64(fd: ::c_int,
3846 iov: *const ::iovec,
3847 iovcnt: ::c_int,
3848 offset: ::off64_t) -> ::ssize_t;
3849 pub fn readdir64(dirp: *mut ::DIR) -> *mut ::dirent64;
3850 pub fn readdir64_r(dirp: *mut ::DIR, entry: *mut ::dirent64,
3851 result: *mut *mut ::dirent64) -> ::c_int;
3852 pub fn setrlimit64(resource: ::c_int, rlim: *const rlimit64) -> ::c_int;
3853 pub fn stat64(path: *const c_char, buf: *mut stat64) -> ::c_int;
3854 pub fn truncate64(path: *const c_char, length: off64_t) -> ::c_int;
3855
3856 pub fn fdopendir(fd: ::c_int) -> *mut ::DIR;
3857
3858 pub fn mknodat(dirfd: ::c_int, pathname: *const ::c_char,
3859 mode: ::mode_t, dev: dev_t) -> ::c_int;
3860 pub fn pthread_condattr_getclock(attr: *const pthread_condattr_t,
3861 clock_id: *mut clockid_t) -> ::c_int;
3862 pub fn pthread_condattr_setclock(attr: *mut pthread_condattr_t,
3863 clock_id: ::clockid_t) -> ::c_int;
3864 pub fn pthread_condattr_setpshared(attr: *mut pthread_condattr_t,
3865 pshared: ::c_int) -> ::c_int;
3866 pub fn accept4(fd: ::c_int, addr: *mut ::sockaddr, len: *mut ::socklen_t,
3867 flg: ::c_int) -> ::c_int;
3868 pub fn pthread_mutexattr_setpshared(attr: *mut pthread_mutexattr_t,
3869 pshared: ::c_int) -> ::c_int;
3870 pub fn pthread_rwlockattr_getpshared(attr: *const pthread_rwlockattr_t,
3871 val: *mut ::c_int) -> ::c_int;
3872 pub fn pthread_rwlockattr_setpshared(attr: *mut pthread_rwlockattr_t,
3873 val: ::c_int) -> ::c_int;
3874 pub fn ptsname_r(fd: ::c_int,
3875 buf: *mut ::c_char,
3876 buflen: ::size_t) -> ::c_int;
3877 pub fn clearenv() -> ::c_int;
3878 pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t,
3879 options: ::c_int) -> ::c_int;
3880 pub fn setreuid(ruid: ::uid_t, euid: ::uid_t) -> ::c_int;
3881 pub fn setregid(rgid: ::gid_t, egid: ::gid_t) -> ::c_int;
3882 pub fn getresuid(ruid: *mut ::uid_t, euid: *mut ::uid_t,
3883 suid: *mut ::uid_t) -> ::c_int;
3884 pub fn getresgid(rgid: *mut ::gid_t, egid: *mut ::gid_t,
3885 sgid: *mut ::gid_t) -> ::c_int;
3886 pub fn acct(filename: *const ::c_char) -> ::c_int;
3887 pub fn brk(addr: *mut ::c_void) -> ::c_int;
3888 pub fn sbrk(increment: ::intptr_t) -> *mut ::c_void;
3889 pub fn vfork() -> ::pid_t;
3890 pub fn setresgid(rgid: ::gid_t, egid: ::gid_t, sgid: ::gid_t) -> ::c_int;
3891 pub fn setresuid(ruid: ::uid_t, euid: ::uid_t, suid: ::uid_t) -> ::c_int;
3892 pub fn wait4(pid: ::pid_t, status: *mut ::c_int, options: ::c_int,
3893 rusage: *mut ::rusage) -> ::pid_t;
3894 pub fn openpty(amaster: *mut ::c_int,
3895 aslave: *mut ::c_int,
3896 name: *mut ::c_char,
3897 termp: *const termios,
3898 winp: *const ::winsize) -> ::c_int;
3899 pub fn execvpe(file: *const ::c_char, argv: *const *const ::c_char,
3900 envp: *const *const ::c_char) -> ::c_int;
3901 pub fn fexecve(fd: ::c_int, argv: *const *const ::c_char,
3902 envp: *const *const ::c_char)
3903 -> ::c_int;
3904
3905 pub fn ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int;
3906 pub fn ptrace(request: ::c_int, ...) -> ::c_long;
3907 pub fn getpriority(which: ::c_int, who: ::id_t) -> ::c_int;
3908 pub fn setpriority(which: ::c_int, who: ::id_t, prio: ::c_int) -> ::c_int;
3909
3910 pub fn aio_read(aiocbp: *mut aiocb) -> ::c_int;
3911 pub fn aio_write(aiocbp: *mut aiocb) -> ::c_int;
3912 pub fn aio_fsync(op: ::c_int, aiocbp: *mut aiocb) -> ::c_int;
3913 pub fn aio_error(aiocbp: *const aiocb) -> ::c_int;
3914 pub fn aio_return(aiocbp: *mut aiocb) -> ::ssize_t;
3915 pub fn aio_suspend(aiocb_list: *const *const aiocb, nitems: ::c_int,
3916 timeout: *const ::timespec) -> ::c_int;
3917 pub fn aio_cancel(fd: ::c_int, aiocbp: *mut aiocb) -> ::c_int;
3918 pub fn lio_listio(mode: ::c_int, aiocb_list: *const *mut aiocb,
3919 nitems: ::c_int, sevp: *mut ::sigevent) -> ::c_int;
3920
3921 pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int;
3922
3923 pub fn setpwent();
3924 pub fn endpwent();
3925 pub fn getpwent() -> *mut passwd;
3926 pub fn setspent();
3927 pub fn endspent();
3928 pub fn getspent() -> *mut spwd;
3929 pub fn getspnam(__name: *const ::c_char) -> *mut spwd;
3930
3931 pub fn shm_open(name: *const c_char, oflag: ::c_int,
3932 mode: mode_t) -> ::c_int;
3933
3934 // System V IPC
3935 pub fn shmget(key: ::key_t, size: ::size_t, shmflg: ::c_int) -> ::c_int;
3936 pub fn shmat(shmid: ::c_int,
3937 shmaddr: *const ::c_void,
3938 shmflg: ::c_int) -> *mut ::c_void;
3939 pub fn shmdt(shmaddr: *const ::c_void) -> ::c_int;
3940 pub fn shmctl(shmid: ::c_int,
3941 cmd: ::c_int,
3942 buf: *mut ::shmid_ds) -> ::c_int;
3943 pub fn ftok(pathname: *const ::c_char, proj_id: ::c_int) -> ::key_t;
3944 pub fn semget(key: ::key_t, nsems: ::c_int, semflag: ::c_int) -> ::c_int;
3945 pub fn semop(semid: ::c_int,
3946 sops: *mut ::sembuf, nsops: ::size_t) -> ::c_int;
3947 pub fn semctl(semid: ::c_int,
3948 semnum: ::c_int, cmd: ::c_int, ...) -> ::c_int;
3949 pub fn msgctl(msqid: ::c_int, cmd: ::c_int, buf: *mut msqid_ds) -> ::c_int;
3950 pub fn msgget(key: ::key_t, msgflg: ::c_int) -> ::c_int;
3951 pub fn msgrcv(msqid: ::c_int, msgp: *mut ::c_void, msgsz: ::size_t,
3952 msgtyp: ::c_long, msgflg: ::c_int) -> ::ssize_t;
3953 pub fn msgsnd(msqid: ::c_int, msgp: *const ::c_void, msgsz: ::size_t,
3954 msgflg: ::c_int) -> ::c_int;
3955
3956 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int)
3957 -> ::c_int;
3958 pub fn __errno_location() -> *mut ::c_int;
3959
3960 pub fn fopen64(filename: *const c_char,
3961 mode: *const c_char) -> *mut ::FILE;
3962 pub fn freopen64(filename: *const c_char, mode: *const c_char,
3963 file: *mut ::FILE) -> *mut ::FILE;
3964 pub fn tmpfile64() -> *mut ::FILE;
3965 pub fn fgetpos64(stream: *mut ::FILE, ptr: *mut fpos64_t) -> ::c_int;
3966 pub fn fsetpos64(stream: *mut ::FILE, ptr: *const fpos64_t) -> ::c_int;
3967 pub fn fseeko64(stream: *mut ::FILE,
3968 offset: ::off64_t,
3969 whence: ::c_int) -> ::c_int;
3970 pub fn ftello64(stream: *mut ::FILE) -> ::off64_t;
3971 pub fn fallocate(fd: ::c_int, mode: ::c_int,
3972 offset: ::off_t, len: ::off_t) -> ::c_int;
3973 pub fn posix_fallocate(fd: ::c_int, offset: ::off_t,
3974 len: ::off_t) -> ::c_int;
3975 pub fn readahead(fd: ::c_int, offset: ::off64_t,
3976 count: ::size_t) -> ::ssize_t;
3977 pub fn getxattr(path: *const c_char, name: *const c_char,
3978 value: *mut ::c_void, size: ::size_t) -> ::ssize_t;
3979 pub fn lgetxattr(path: *const c_char, name: *const c_char,
3980 value: *mut ::c_void, size: ::size_t) -> ::ssize_t;
3981 pub fn fgetxattr(filedes: ::c_int, name: *const c_char,
3982 value: *mut ::c_void, size: ::size_t) -> ::ssize_t;
3983 pub fn setxattr(path: *const c_char, name: *const c_char,
3984 value: *const ::c_void, size: ::size_t,
3985 flags: ::c_int) -> ::c_int;
3986 pub fn lsetxattr(path: *const c_char, name: *const c_char,
3987 value: *const ::c_void, size: ::size_t,
3988 flags: ::c_int) -> ::c_int;
3989 pub fn fsetxattr(filedes: ::c_int, name: *const c_char,
3990 value: *const ::c_void, size: ::size_t,
3991 flags: ::c_int) -> ::c_int;
3992 pub fn listxattr(path: *const c_char, list: *mut c_char,
3993 size: ::size_t) -> ::ssize_t;
3994 pub fn llistxattr(path: *const c_char, list: *mut c_char,
3995 size: ::size_t) -> ::ssize_t;
3996 pub fn flistxattr(filedes: ::c_int, list: *mut c_char,
3997 size: ::size_t) -> ::ssize_t;
3998 pub fn removexattr(path: *const c_char, name: *const c_char) -> ::c_int;
3999 pub fn lremovexattr(path: *const c_char, name: *const c_char) -> ::c_int;
4000 pub fn fremovexattr(filedes: ::c_int, name: *const c_char) -> ::c_int;
4001 pub fn signalfd(fd: ::c_int,
4002 mask: *const ::sigset_t,
4003 flags: ::c_int) -> ::c_int;
4004 pub fn timerfd_create(clockid: ::c_int, flags: ::c_int) -> ::c_int;
4005 pub fn timerfd_gettime(fd: ::c_int,
4006 curr_value: *mut itimerspec) -> ::c_int;
4007 pub fn timerfd_settime(fd: ::c_int,
4008 flags: ::c_int,
4009 new_value: *const itimerspec,
4010 old_value: *mut itimerspec) -> ::c_int;
4011 pub fn pwritev(fd: ::c_int,
4012 iov: *const ::iovec,
4013 iovcnt: ::c_int,
4014 offset: ::off_t) -> ::ssize_t;
4015 pub fn preadv(fd: ::c_int,
4016 iov: *const ::iovec,
4017 iovcnt: ::c_int,
4018 offset: ::off_t) -> ::ssize_t;
4019 pub fn quotactl(cmd: ::c_int,
4020 special: *const ::c_char,
4021 id: ::c_int,
4022 data: *mut ::c_char) -> ::c_int;
4023 pub fn mq_open(name: *const ::c_char, oflag: ::c_int, ...) -> ::mqd_t;
4024 pub fn mq_close(mqd: ::mqd_t) -> ::c_int;
4025 pub fn mq_unlink(name: *const ::c_char) -> ::c_int;
4026 pub fn mq_receive(mqd: ::mqd_t,
4027 msg_ptr: *mut ::c_char,
4028 msg_len: ::size_t,
4029 msq_prio: *mut ::c_uint) -> ::ssize_t;
4030 pub fn mq_send(mqd: ::mqd_t,
4031 msg_ptr: *const ::c_char,
4032 msg_len: ::size_t,
4033 msq_prio: ::c_uint) -> ::c_int;
4034 pub fn mq_getattr(mqd: ::mqd_t, attr: *mut ::mq_attr) -> ::c_int;
4035 pub fn mq_setattr(mqd: ::mqd_t,
4036 newattr: *const ::mq_attr,
4037 oldattr: *mut ::mq_attr) -> ::c_int;
4038 pub fn epoll_pwait(epfd: ::c_int,
4039 events: *mut ::epoll_event,
4040 maxevents: ::c_int,
4041 timeout: ::c_int,
4042 sigmask: *const ::sigset_t) -> ::c_int;
4043 pub fn dup3(oldfd: ::c_int, newfd: ::c_int, flags: ::c_int) -> ::c_int;
4044 pub fn mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int;
4045 pub fn mkostemps(template: *mut ::c_char,
4046 suffixlen: ::c_int,
4047 flags: ::c_int) -> ::c_int;
4048 pub fn sigtimedwait(set: *const sigset_t,
4049 info: *mut siginfo_t,
4050 timeout: *const ::timespec) -> ::c_int;
4051 pub fn sigwaitinfo(set: *const sigset_t,
4052 info: *mut siginfo_t) -> ::c_int;
4053 pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_char;
4054 pub fn getnameinfo(sa: *const ::sockaddr,
4055 salen: ::socklen_t,
4056 host: *mut ::c_char,
4057 hostlen: ::socklen_t,
4058 serv: *mut ::c_char,
4059 sevlen: ::socklen_t,
4060 flags: ::c_int) -> ::c_int;
4061 pub fn pthread_setschedprio(native: ::pthread_t,
4062 priority: ::c_int) -> ::c_int;
4063 pub fn prlimit(pid: ::pid_t, resource: ::c_int, new_limit: *const ::rlimit,
4064 old_limit: *mut ::rlimit) -> ::c_int;
4065 pub fn prlimit64(pid: ::pid_t,
4066 resource: ::c_int,
4067 new_limit: *const ::rlimit64,
4068 old_limit: *mut ::rlimit64) -> ::c_int;
4069 pub fn getloadavg(loadavg: *mut ::c_double, nelem: ::c_int) -> ::c_int;
4070 pub fn process_vm_readv(pid: ::pid_t,
4071 local_iov: *const ::iovec,
4072 liovcnt: ::c_ulong,
4073 remote_iov: *const ::iovec,
4074 riovcnt: ::c_ulong,
4075 flags: ::c_ulong) -> isize;
4076 pub fn process_vm_writev(pid: ::pid_t,
4077 local_iov: *const ::iovec,
4078 liovcnt: ::c_ulong,
4079 remote_iov: *const ::iovec,
4080 riovcnt: ::c_ulong,
4081 flags: ::c_ulong) -> isize;
4082 pub fn reboot(how_to: ::c_int) -> ::c_int;
4083 pub fn setfsgid(gid: ::gid_t) -> ::c_int;
4084 pub fn setfsuid(uid: ::uid_t) -> ::c_int;
4085
4086 // Not available now on Android
4087 pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_char,
4088 mode: ::mode_t) -> ::c_int;
4089 pub fn if_nameindex() -> *mut if_nameindex;
4090 pub fn if_freenameindex(ptr: *mut if_nameindex);
4091 pub fn sync_file_range(fd: ::c_int, offset: ::off64_t,
4092 nbytes: ::off64_t, flags: ::c_uint) -> ::c_int;
4093 pub fn getifaddrs(ifap: *mut *mut ::ifaddrs) -> ::c_int;
4094 pub fn freeifaddrs(ifa: *mut ::ifaddrs);
4095
4096 pub fn mremap(addr: *mut ::c_void,
4097 len: ::size_t,
4098 new_len: ::size_t,
4099 flags: ::c_int,
4100 ...) -> *mut ::c_void;
4101
4102 pub fn glob(pattern: *const c_char,
4103 flags: ::c_int,
532ac7d7 4104 errfunc: ::Option<extern fn(epath: *const c_char,
ff7c6d11
XL
4105 errno: ::c_int) -> ::c_int>,
4106 pglob: *mut ::glob_t) -> ::c_int;
4107 pub fn globfree(pglob: *mut ::glob_t);
4108
4109 pub fn posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
4110 -> ::c_int;
4111
4112 pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
4113
4114 pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
4115
4116 pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
4117 pub fn madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
4118 -> ::c_int;
4119
4120 pub fn msync(addr: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::c_int;
4121
4122 pub fn recvfrom(socket: ::c_int, buf: *mut ::c_void, len: ::size_t,
4123 flags: ::c_int, addr: *mut ::sockaddr,
4124 addrlen: *mut ::socklen_t) -> ::ssize_t;
4125 pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
4126 pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int;
4127 pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
4128
4129 pub fn bind(socket: ::c_int, address: *const ::sockaddr,
4130 address_len: ::socklen_t) -> ::c_int;
4131
4132 pub fn writev(fd: ::c_int,
4133 iov: *const ::iovec,
4134 iovcnt: ::c_int) -> ::ssize_t;
4135 pub fn readv(fd: ::c_int,
4136 iov: *const ::iovec,
4137 iovcnt: ::c_int) -> ::ssize_t;
4138
4139 pub fn sendmsg(fd: ::c_int,
4140 msg: *const ::msghdr,
4141 flags: ::c_int) -> ::ssize_t;
4142 pub fn recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int)
4143 -> ::ssize_t;
4144 pub fn getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int;
4145 pub fn setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int;
4146 pub fn vhangup() -> ::c_int;
4147 pub fn sendmmsg(sockfd: ::c_int, msgvec: *mut mmsghdr, vlen: ::c_uint,
4148 flags: ::c_int) -> ::c_int;
4149 pub fn recvmmsg(sockfd: ::c_int, msgvec: *mut mmsghdr, vlen: ::c_uint,
4150 flags: ::c_int, timeout: *mut ::timespec) -> ::c_int;
4151 pub fn sync();
4152 pub fn syscall(num: ::c_long, ...) -> ::c_long;
4153 pub fn sched_getaffinity(pid: ::pid_t,
4154 cpusetsize: ::size_t,
4155 cpuset: *mut cpu_set_t) -> ::c_int;
4156 pub fn sched_setaffinity(pid: ::pid_t,
4157 cpusetsize: ::size_t,
4158 cpuset: *const cpu_set_t) -> ::c_int;
4159 pub fn epoll_create(size: ::c_int) -> ::c_int;
4160 pub fn epoll_create1(flags: ::c_int) -> ::c_int;
4161 pub fn epoll_wait(epfd: ::c_int,
4162 events: *mut ::epoll_event,
4163 maxevents: ::c_int,
4164 timeout: ::c_int) -> ::c_int;
4165 pub fn epoll_ctl(epfd: ::c_int,
4166 op: ::c_int,
4167 fd: ::c_int,
4168 event: *mut ::epoll_event) -> ::c_int;
4169 pub fn pthread_getschedparam(native: ::pthread_t,
4170 policy: *mut ::c_int,
4171 param: *mut ::sched_param) -> ::c_int;
4172 pub fn unshare(flags: ::c_int) -> ::c_int;
4173 pub fn umount(target: *const ::c_char) -> ::c_int;
4174 pub fn sched_get_priority_max(policy: ::c_int) -> ::c_int;
4175 pub fn tee(fd_in: ::c_int,
4176 fd_out: ::c_int,
4177 len: ::size_t,
4178 flags: ::c_uint) -> ::ssize_t;
4179 pub fn settimeofday(tv: *const ::timeval, tz: *const ::timezone) -> ::c_int;
4180 pub fn splice(fd_in: ::c_int,
4181 off_in: *mut ::loff_t,
4182 fd_out: ::c_int,
4183 off_out: *mut ::loff_t,
4184 len: ::size_t,
4185 flags: ::c_uint) -> ::ssize_t;
4186 pub fn eventfd(init: ::c_uint, flags: ::c_int) -> ::c_int;
4187 pub fn sched_rr_get_interval(pid: ::pid_t, tp: *mut ::timespec) -> ::c_int;
4188 pub fn sem_timedwait(sem: *mut sem_t,
4189 abstime: *const ::timespec) -> ::c_int;
8faf50e0
XL
4190 pub fn sem_getvalue(sem: *mut sem_t,
4191 sval: *mut ::c_int) -> ::c_int;
ff7c6d11
XL
4192 pub fn sched_setparam(pid: ::pid_t, param: *const ::sched_param) -> ::c_int;
4193 pub fn setns(fd: ::c_int, nstype: ::c_int) -> ::c_int;
4194 pub fn swapoff(puath: *const ::c_char) -> ::c_int;
4195 pub fn vmsplice(fd: ::c_int,
4196 iov: *const ::iovec,
4197 nr_segs: ::size_t,
4198 flags: ::c_uint) -> ::ssize_t;
4199 pub fn mount(src: *const ::c_char,
4200 target: *const ::c_char,
4201 fstype: *const ::c_char,
4202 flags: ::c_ulong,
4203 data: *const ::c_void) -> ::c_int;
4204 pub fn personality(persona: ::c_ulong) -> ::c_int;
4205 pub fn prctl(option: ::c_int, ...) -> ::c_int;
4206 pub fn sched_getparam(pid: ::pid_t, param: *mut ::sched_param) -> ::c_int;
4207 pub fn ppoll(fds: *mut ::pollfd,
4208 nfds: nfds_t,
4209 timeout: *const ::timespec,
4210 sigmask: *const sigset_t) -> ::c_int;
4211 pub fn pthread_mutex_timedlock(lock: *mut pthread_mutex_t,
4212 abstime: *const ::timespec) -> ::c_int;
4213 pub fn clone(cb: extern fn(*mut ::c_void) -> ::c_int,
4214 child_stack: *mut ::c_void,
4215 flags: ::c_int,
4216 arg: *mut ::c_void, ...) -> ::c_int;
4217 pub fn sched_getscheduler(pid: ::pid_t) -> ::c_int;
4218 pub fn clock_nanosleep(clk_id: ::clockid_t,
4219 flags: ::c_int,
4220 rqtp: *const ::timespec,
4221 rmtp: *mut ::timespec) -> ::c_int;
4222 pub fn pthread_attr_getguardsize(attr: *const ::pthread_attr_t,
4223 guardsize: *mut ::size_t) -> ::c_int;
4224 pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int;
4225 pub fn sched_get_priority_min(policy: ::c_int) -> ::c_int;
4226 pub fn pthread_condattr_getpshared(attr: *const pthread_condattr_t,
4227 pshared: *mut ::c_int) -> ::c_int;
4228 pub fn sysinfo(info: *mut ::sysinfo) -> ::c_int;
4229 pub fn umount2(target: *const ::c_char, flags: ::c_int) -> ::c_int;
4230 pub fn pthread_setschedparam(native: ::pthread_t,
4231 policy: ::c_int,
4232 param: *const ::sched_param) -> ::c_int;
4233 pub fn swapon(path: *const ::c_char, swapflags: ::c_int) -> ::c_int;
4234 pub fn sched_setscheduler(pid: ::pid_t,
4235 policy: ::c_int,
4236 param: *const ::sched_param) -> ::c_int;
4237 pub fn sendfile(out_fd: ::c_int,
4238 in_fd: ::c_int,
4239 offset: *mut off_t,
4240 count: ::size_t) -> ::ssize_t;
4241 pub fn sigsuspend(mask: *const ::sigset_t) -> ::c_int;
48663c56 4242 pub fn getgrgid_r(gid: ::gid_t,
ff7c6d11
XL
4243 grp: *mut ::group,
4244 buf: *mut ::c_char,
4245 buflen: ::size_t,
4246 result: *mut *mut ::group) -> ::c_int;
4247 pub fn sigaltstack(ss: *const stack_t,
4248 oss: *mut stack_t) -> ::c_int;
4249 pub fn sem_close(sem: *mut sem_t) -> ::c_int;
4250 pub fn getdtablesize() -> ::c_int;
4251 pub fn getgrnam_r(name: *const ::c_char,
4252 grp: *mut ::group,
4253 buf: *mut ::c_char,
4254 buflen: ::size_t,
4255 result: *mut *mut ::group) -> ::c_int;
4256 pub fn initgroups(user: *const ::c_char, group: ::gid_t) -> ::c_int;
4257 pub fn pthread_sigmask(how: ::c_int, set: *const sigset_t,
4258 oldset: *mut sigset_t) -> ::c_int;
4259 pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t;
4260 pub fn getgrnam(name: *const ::c_char) -> *mut ::group;
4261 pub fn pthread_cancel(thread: ::pthread_t) -> ::c_int;
4262 pub fn pthread_kill(thread: ::pthread_t, sig: ::c_int) -> ::c_int;
4263 pub fn sem_unlink(name: *const ::c_char) -> ::c_int;
4264 pub fn daemon(nochdir: ::c_int, noclose: ::c_int) -> ::c_int;
4265 pub fn getpwnam_r(name: *const ::c_char,
4266 pwd: *mut passwd,
4267 buf: *mut ::c_char,
4268 buflen: ::size_t,
4269 result: *mut *mut passwd) -> ::c_int;
4270 pub fn getpwuid_r(uid: ::uid_t,
4271 pwd: *mut passwd,
4272 buf: *mut ::c_char,
4273 buflen: ::size_t,
4274 result: *mut *mut passwd) -> ::c_int;
4275 pub fn sigwait(set: *const sigset_t,
4276 sig: *mut ::c_int) -> ::c_int;
532ac7d7
XL
4277 pub fn pthread_atfork(prepare: ::Option<unsafe extern fn()>,
4278 parent: ::Option<unsafe extern fn()>,
4279 child: ::Option<unsafe extern fn()>) -> ::c_int;
ff7c6d11
XL
4280 pub fn getgrgid(gid: ::gid_t) -> *mut ::group;
4281 pub fn getgrouplist(user: *const ::c_char,
4282 group: ::gid_t,
4283 groups: *mut ::gid_t,
4284 ngroups: *mut ::c_int) -> ::c_int;
4285 pub fn pthread_mutexattr_getpshared(attr: *const pthread_mutexattr_t,
4286 pshared: *mut ::c_int) -> ::c_int;
4287 pub fn popen(command: *const c_char,
4288 mode: *const c_char) -> *mut ::FILE;
4289 pub fn faccessat(dirfd: ::c_int, pathname: *const ::c_char,
4290 mode: ::c_int, flags: ::c_int) -> ::c_int;
4291 pub fn pthread_create(native: *mut ::pthread_t,
4292 attr: *const ::pthread_attr_t,
4293 f: extern fn(*mut ::c_void) -> *mut ::c_void,
4294 value: *mut ::c_void) -> ::c_int;
4295 pub fn dl_iterate_phdr(
532ac7d7 4296 callback: ::Option<unsafe extern fn(
ff7c6d11
XL
4297 info: *mut ::dl_phdr_info,
4298 size: ::size_t,
4299 data: *mut ::c_void
4300 ) -> ::c_int>,
4301 data: *mut ::c_void
4302 ) -> ::c_int;
4303}
4304
4305cfg_if! {
4306 if #[cfg(target_arch = "aarch64")] {
4307 mod aarch64;
4308 pub use self::aarch64::*;
ff7c6d11
XL
4309 } else if #[cfg(any(target_arch = "x86_64"))] {
4310 mod x86_64;
4311 pub use self::x86_64::*;
4312 } else {
4313 // Unknown target_arch
4314 }
4315}
69743fb6
XL
4316
4317cfg_if! {
532ac7d7
XL
4318 if #[cfg(libc_align)] {
4319 #[macro_use]
4320 mod align;
4321 } else {
4322 #[macro_use]
4323 mod no_align;
4324 }
4325}
4326expand_align!();
4327
4328cfg_if! {
4329 if #[cfg(libc_core_cvoid)] {
4330 pub use ::ffi::c_void;
69743fb6
XL
4331 } else {
4332 // Use repr(u8) as LLVM expects `void*` to be the same as `i8*` to help
4333 // enable more optimization opportunities around it recognizing things
4334 // like malloc/free.
4335 #[repr(u8)]
532ac7d7
XL
4336 #[allow(missing_copy_implementations)]
4337 #[allow(missing_debug_implementations)]
69743fb6
XL
4338 pub enum c_void {
4339 // Two dummy variants so the #[repr] attribute can be used.
4340 #[doc(hidden)]
4341 __variant1,
4342 #[doc(hidden)]
4343 __variant2,
4344 }
4345 }
4346}