]> git.proxmox.com Git - rustc.git/blame - vendor/libc/src/unix/solarish/mod.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / vendor / libc / src / unix / solarish / mod.rs
CommitLineData
476ff2be
SL
1pub type c_char = i8;
2pub type c_long = i64;
3pub type c_ulong = u64;
ba9703b0 4pub type caddr_t = *mut ::c_char;
476ff2be 5
7cac9316
XL
6pub type clockid_t = ::c_int;
7pub type blkcnt_t = ::c_long;
8pub type clock_t = ::c_long;
9pub type daddr_t = ::c_long;
10pub type dev_t = ::c_ulong;
11pub type fsblkcnt_t = ::c_ulong;
12pub type fsfilcnt_t = ::c_ulong;
13pub type ino_t = ::c_ulong;
14pub type key_t = ::c_int;
15pub type major_t = ::c_uint;
16pub type minor_t = ::c_uint;
17pub type mode_t = ::c_uint;
18pub type nlink_t = ::c_uint;
19pub type rlim_t = ::c_ulong;
20pub type speed_t = ::c_uint;
21pub type tcflag_t = ::c_uint;
22pub type time_t = ::c_long;
5869c6ff 23pub type timer_t = ::c_int;
7cac9316 24pub type wchar_t = ::c_int;
476ff2be 25pub type nfds_t = ::c_ulong;
3dfed10e
XL
26pub type projid_t = ::c_int;
27pub type zoneid_t = ::c_int;
476ff2be
SL
28
29pub type suseconds_t = ::c_long;
7cac9316 30pub type off_t = ::c_long;
476ff2be 31pub type useconds_t = ::c_uint;
7cac9316
XL
32pub type socklen_t = ::c_uint;
33pub type sa_family_t = u16;
8bb4bdeb 34pub type pthread_t = ::c_uint;
476ff2be 35pub type pthread_key_t = ::c_uint;
7cac9316 36pub type blksize_t = ::c_int;
476ff2be 37pub type nl_item = ::c_int;
416331ca 38pub type mqd_t = *mut ::c_void;
8bb4bdeb
XL
39pub type id_t = ::c_int;
40pub type idtype_t = ::c_uint;
dfeec247 41pub type shmatt_t = ::c_ulong;
476ff2be 42
532ac7d7 43#[cfg_attr(feature = "extra_traits", derive(Debug))]
476ff2be 44pub enum timezone {}
532ac7d7
XL
45impl ::Copy for timezone {}
46impl ::Clone for timezone {
e74abb32
XL
47 fn clone(&self) -> timezone {
48 *self
49 }
532ac7d7 50}
476ff2be 51
3dfed10e
XL
52#[cfg_attr(feature = "extra_traits", derive(Debug))]
53pub enum ucred_t {}
54impl ::Copy for ucred_t {}
55impl ::Clone for ucred_t {
56 fn clone(&self) -> ucred_t {
57 *self
58 }
59}
60
476ff2be 61s! {
532ac7d7
XL
62 pub struct in_addr {
63 pub s_addr: ::in_addr_t,
64 }
65
66 pub struct ip_mreq {
67 pub imr_multiaddr: in_addr,
68 pub imr_interface: in_addr,
69 }
70
dfeec247
XL
71 pub struct ipc_perm {
72 pub uid: ::uid_t,
73 pub gid: ::gid_t,
74 pub cuid: ::uid_t,
75 pub cgid: ::gid_t,
76 pub mode: ::mode_t,
77 pub seq: ::c_uint,
78 pub key: ::key_t,
79 }
80
476ff2be
SL
81 pub struct sockaddr {
82 pub sa_family: sa_family_t,
83 pub sa_data: [::c_char; 14],
84 }
85
86 pub struct sockaddr_in {
87 pub sin_family: sa_family_t,
88 pub sin_port: ::in_port_t,
89 pub sin_addr: ::in_addr,
90 pub sin_zero: [::c_char; 8]
91 }
92
93 pub struct sockaddr_in6 {
94 pub sin6_family: sa_family_t,
95 pub sin6_port: ::in_port_t,
96 pub sin6_flowinfo: u32,
97 pub sin6_addr: ::in6_addr,
98 pub sin6_scope_id: u32,
99 pub __sin6_src_id: u32
100 }
101
476ff2be
SL
102 pub struct passwd {
103 pub pw_name: *mut ::c_char,
104 pub pw_passwd: *mut ::c_char,
105 pub pw_uid: ::uid_t,
106 pub pw_gid: ::gid_t,
107 pub pw_age: *mut ::c_char,
108 pub pw_comment: *mut ::c_char,
109 pub pw_gecos: *mut ::c_char,
110 pub pw_dir: *mut ::c_char,
111 pub pw_shell: *mut ::c_char
112 }
113
114 pub struct ifaddrs {
115 pub ifa_next: *mut ifaddrs,
116 pub ifa_name: *mut ::c_char,
117 pub ifa_flags: ::c_ulong,
118 pub ifa_addr: *mut ::sockaddr,
119 pub ifa_netmask: *mut ::sockaddr,
120 pub ifa_dstaddr: *mut ::sockaddr,
121 pub ifa_data: *mut ::c_void
122 }
123
5869c6ff
XL
124 pub struct itimerspec {
125 pub it_interval: ::timespec,
126 pub it_value: ::timespec,
127 }
128
476ff2be
SL
129 pub struct tm {
130 pub tm_sec: ::c_int,
131 pub tm_min: ::c_int,
132 pub tm_hour: ::c_int,
133 pub tm_mday: ::c_int,
134 pub tm_mon: ::c_int,
135 pub tm_year: ::c_int,
136 pub tm_wday: ::c_int,
137 pub tm_yday: ::c_int,
138 pub tm_isdst: ::c_int
139 }
140
532ac7d7 141 pub struct msghdr {
476ff2be
SL
142 pub msg_name: *mut ::c_void,
143 pub msg_namelen: ::socklen_t,
144 pub msg_iov: *mut ::iovec,
145 pub msg_iovlen: ::c_int,
146 pub msg_control: *mut ::c_void,
147 pub msg_controllen: ::socklen_t,
148 pub msg_flags: ::c_int,
149 }
150
8bb4bdeb 151 pub struct cmsghdr {
ff7c6d11 152 pub cmsg_len: ::socklen_t,
8bb4bdeb
XL
153 pub cmsg_level: ::c_int,
154 pub cmsg_type: ::c_int,
155 }
156
476ff2be
SL
157 pub struct pthread_attr_t {
158 __pthread_attrp: *mut ::c_void
159 }
160
161 pub struct pthread_mutex_t {
162 __pthread_mutex_flag1: u16,
163 __pthread_mutex_flag2: u8,
164 __pthread_mutex_ceiling: u8,
165 __pthread_mutex_type: u16,
166 __pthread_mutex_magic: u16,
167 __pthread_mutex_lock: u64,
168 __pthread_mutex_data: u64
169 }
170
171 pub struct pthread_mutexattr_t {
172 __pthread_mutexattrp: *mut ::c_void
173 }
174
175 pub struct pthread_cond_t {
176 __pthread_cond_flag: [u8; 4],
177 __pthread_cond_type: u16,
178 __pthread_cond_magic: u16,
179 __pthread_cond_data: u64
180 }
181
182 pub struct pthread_condattr_t {
183 __pthread_condattrp: *mut ::c_void,
184 }
185
186 pub struct pthread_rwlock_t {
187 __pthread_rwlock_readers: i32,
188 __pthread_rwlock_type: u16,
189 __pthread_rwlock_magic: u16,
190 __pthread_rwlock_mutex: ::pthread_mutex_t,
191 __pthread_rwlock_readercv: ::pthread_cond_t,
192 __pthread_rwlock_writercv: ::pthread_cond_t
193 }
194
041b39d2
XL
195 pub struct pthread_rwlockattr_t {
196 __pthread_rwlockattrp: *mut ::c_void,
197 }
198
476ff2be
SL
199 pub struct dirent {
200 pub d_ino: ::ino_t,
201 pub d_off: ::off_t,
202 pub d_reclen: u16,
ff7c6d11 203 pub d_name: [::c_char; 3]
476ff2be
SL
204 }
205
206 pub struct glob_t {
207 pub gl_pathc: ::size_t,
208 pub gl_pathv: *mut *mut ::c_char,
209 pub gl_offs: ::size_t,
210 __unused1: *mut ::c_void,
211 __unused2: ::c_int,
212 __unused3: ::c_int,
213 __unused4: ::c_int,
214 __unused5: *mut ::c_void,
215 __unused6: *mut ::c_void,
216 __unused7: *mut ::c_void,
217 __unused8: *mut ::c_void,
218 __unused9: *mut ::c_void,
219 __unused10: *mut ::c_void,
220 }
221
476ff2be
SL
222 pub struct addrinfo {
223 pub ai_flags: ::c_int,
224 pub ai_family: ::c_int,
225 pub ai_socktype: ::c_int,
226 pub ai_protocol: ::c_int,
ea8adc8c
XL
227 #[cfg(target_arch = "sparc64")]
228 __sparcv9_pad: ::c_int,
476ff2be
SL
229 pub ai_addrlen: ::socklen_t,
230 pub ai_canonname: *mut ::c_char,
231 pub ai_addr: *mut ::sockaddr,
232 pub ai_next: *mut addrinfo,
233 }
234
235 pub struct sigset_t {
236 bits: [u32; 4],
237 }
238
476ff2be
SL
239 pub struct sigaction {
240 pub sa_flags: ::c_int,
241 pub sa_sigaction: ::sighandler_t,
242 pub sa_mask: sigset_t,
243 }
244
245 pub struct stack_t {
246 pub ss_sp: *mut ::c_void,
247 pub ss_size: ::size_t,
248 pub ss_flags: ::c_int,
249 }
250
251 pub struct statvfs {
252 pub f_bsize: ::c_ulong,
253 pub f_frsize: ::c_ulong,
254 pub f_blocks: ::fsblkcnt_t,
255 pub f_bfree: ::fsblkcnt_t,
256 pub f_bavail: ::fsblkcnt_t,
257 pub f_files: ::fsfilcnt_t,
258 pub f_ffree: ::fsfilcnt_t,
259 pub f_favail: ::fsfilcnt_t,
260 pub f_fsid: ::c_ulong,
261 pub f_basetype: [::c_char; 16],
262 pub f_flag: ::c_ulong,
263 pub f_namemax: ::c_ulong,
264 pub f_fstr: [::c_char; 32]
265 }
266
267 pub struct sched_param {
268 pub sched_priority: ::c_int,
269 sched_pad: [::c_int; 8]
270 }
271
272 pub struct Dl_info {
273 pub dli_fname: *const ::c_char,
274 pub dli_fbase: *mut ::c_void,
275 pub dli_sname: *const ::c_char,
276 pub dli_saddr: *mut ::c_void,
277 }
278
279 pub struct stat {
280 pub st_dev: ::dev_t,
281 pub st_ino: ::ino_t,
282 pub st_mode: ::mode_t,
283 pub st_nlink: ::nlink_t,
284 pub st_uid: ::uid_t,
285 pub st_gid: ::gid_t,
286 pub st_rdev: ::dev_t,
287 pub st_size: ::off_t,
288 pub st_atime: ::time_t,
289 pub st_atime_nsec: ::c_long,
290 pub st_mtime: ::time_t,
291 pub st_mtime_nsec: ::c_long,
292 pub st_ctime: ::time_t,
293 pub st_ctime_nsec: ::c_long,
294 pub st_blksize: ::blksize_t,
295 pub st_blocks: ::blkcnt_t,
296 __unused: [::c_char; 16]
297 }
298
299 pub struct termios {
300 pub c_iflag: ::tcflag_t,
301 pub c_oflag: ::tcflag_t,
302 pub c_cflag: ::tcflag_t,
303 pub c_lflag: ::tcflag_t,
304 pub c_cc: [::cc_t; ::NCCS]
305 }
306
307 pub struct lconv {
308 pub decimal_point: *mut ::c_char,
309 pub thousands_sep: *mut ::c_char,
310 pub grouping: *mut ::c_char,
311 pub int_curr_symbol: *mut ::c_char,
312 pub currency_symbol: *mut ::c_char,
313 pub mon_decimal_point: *mut ::c_char,
314 pub mon_thousands_sep: *mut ::c_char,
315 pub mon_grouping: *mut ::c_char,
316 pub positive_sign: *mut ::c_char,
317 pub negative_sign: *mut ::c_char,
318 pub int_frac_digits: ::c_char,
319 pub frac_digits: ::c_char,
320 pub p_cs_precedes: ::c_char,
321 pub p_sep_by_space: ::c_char,
322 pub n_cs_precedes: ::c_char,
323 pub n_sep_by_space: ::c_char,
324 pub p_sign_posn: ::c_char,
325 pub n_sign_posn: ::c_char,
326 pub int_p_cs_precedes: ::c_char,
327 pub int_p_sep_by_space: ::c_char,
328 pub int_n_cs_precedes: ::c_char,
329 pub int_n_sep_by_space: ::c_char,
330 pub int_p_sign_posn: ::c_char,
331 pub int_n_sign_posn: ::c_char,
332 }
333
334 pub struct sem_t {
335 pub sem_count: u32,
336 pub sem_type: u16,
337 pub sem_magic: u16,
338 pub sem_pad1: [u64; 3],
339 pub sem_pad2: [u64; 2]
340 }
341
342 pub struct flock {
343 pub l_type: ::c_short,
344 pub l_whence: ::c_short,
345 pub l_start: ::off_t,
346 pub l_len: ::off_t,
347 pub l_sysid: ::c_int,
348 pub l_pid: ::pid_t,
349 pub l_pad: [::c_long; 4]
350 }
351
352 pub struct if_nameindex {
353 pub if_index: ::c_uint,
354 pub if_name: *mut ::c_char,
355 }
7cac9316 356
416331ca
XL
357 pub struct mq_attr {
358 pub mq_flags: ::c_long,
359 pub mq_maxmsg: ::c_long,
360 pub mq_msgsize: ::c_long,
361 pub mq_curmsgs: ::c_long,
ba9703b0 362 _pad: [::c_int; 12]
416331ca
XL
363 }
364
7cac9316
XL
365 pub struct port_event {
366 pub portev_events: ::c_int,
367 pub portev_source: ::c_ushort,
368 pub portev_pad: ::c_ushort,
369 pub portev_object: ::uintptr_t,
ff7c6d11 370 pub portev_user: *mut ::c_void,
7cac9316 371 }
416331ca 372
5869c6ff
XL
373 pub struct port_notify {
374 pub portnfy_port: ::c_int,
375 pub portnfy_user: *mut ::c_void,
376 }
377
dfeec247
XL
378 pub struct exit_status {
379 e_termination: ::c_short,
380 e_exit: ::c_short,
381 }
382
383 pub struct utmp {
384 pub ut_user: [::c_char; 8],
385 pub ut_id: [::c_char; 4],
386 pub ut_line: [::c_char; 12],
387 pub ut_pid: ::c_short,
388 pub ut_type: ::c_short,
389 pub ut_exit: exit_status,
390 pub ut_time: ::time_t,
391 }
ba9703b0
XL
392
393 pub struct timex {
394 pub modes: u32,
395 pub offset: i32,
396 pub freq: i32,
397 pub maxerror: i32,
398 pub esterror: i32,
399 pub status: i32,
400 pub constant: i32,
401 pub precision: i32,
402 pub tolerance: i32,
403 pub ppsfreq: i32,
404 pub jitter: i32,
405 pub shift: i32,
406 pub stabil: i32,
407 pub jitcnt: i32,
408 pub calcnt: i32,
409 pub errcnt: i32,
410 pub stbcnt: i32,
411 }
412
413 pub struct ntptimeval {
414 pub time: ::timeval,
415 pub maxerror: i32,
416 pub esterror: i32,
417 }
418
532ac7d7 419}
2c00a5a8 420
532ac7d7 421s_no_extra_traits! {
ba9703b0
XL
422 #[cfg_attr(all(
423 any(target_arch = "x86", target_arch = "x86_64"),
424 libc_packedN
425 ), repr(packed(4)))]
426 #[cfg_attr(all(
427 any(target_arch = "x86", target_arch = "x86_64"),
428 not(libc_packedN)
429 ), repr(packed))]
2c00a5a8 430 pub struct epoll_event {
416331ca
XL
431 pub events: u32,
432 pub u64: u64,
2c00a5a8 433 }
532ac7d7 434
dfeec247
XL
435 pub struct utmpx {
436 pub ut_user: [::c_char; _UTX_USERSIZE],
437 pub ut_id: [::c_char; _UTX_IDSIZE],
438 pub ut_line: [::c_char; _UTX_LINESIZE],
439 pub ut_pid: ::pid_t,
440 pub ut_type: ::c_short,
441 pub ut_exit: exit_status,
442 pub ut_tv: ::timeval,
443 pub ut_session: ::c_int,
444 pub ut_pad: [::c_int; _UTX_PADSIZE],
445 pub ut_syslen: ::c_short,
446 pub ut_host: [::c_char; _UTX_HOSTSIZE],
447 }
448
532ac7d7
XL
449 pub struct sockaddr_un {
450 pub sun_family: sa_family_t,
451 pub sun_path: [c_char; 108]
452 }
453
454 pub struct utsname {
455 pub sysname: [::c_char; 257],
456 pub nodename: [::c_char; 257],
457 pub release: [::c_char; 257],
458 pub version: [::c_char; 257],
459 pub machine: [::c_char; 257],
460 }
461
462 pub struct fd_set {
463 #[cfg(target_pointer_width = "64")]
464 fds_bits: [i64; FD_SETSIZE / 64],
465 #[cfg(target_pointer_width = "32")]
466 fds_bits: [i32; FD_SETSIZE / 32],
467 }
468
469 pub struct sockaddr_storage {
470 pub ss_family: ::sa_family_t,
471 __ss_pad1: [u8; 6],
472 __ss_align: i64,
473 __ss_pad2: [u8; 240],
474 }
475
476 pub struct siginfo_t {
477 pub si_signo: ::c_int,
478 pub si_code: ::c_int,
479 pub si_errno: ::c_int,
480 pub si_pad: ::c_int,
481 pub si_addr: *mut ::c_void,
482 __pad: [u8; 232],
483 }
484
485 pub struct sockaddr_dl {
486 pub sdl_family: ::c_ushort,
487 pub sdl_index: ::c_ushort,
488 pub sdl_type: ::c_uchar,
489 pub sdl_nlen: ::c_uchar,
490 pub sdl_alen: ::c_uchar,
491 pub sdl_slen: ::c_uchar,
492 pub sdl_data: [::c_char; 244],
493 }
416331ca
XL
494
495 pub struct sigevent {
496 pub sigev_notify: ::c_int,
497 pub sigev_signo: ::c_int,
498 pub sigev_value: ::sigval,
499 pub ss_sp: *mut ::c_void,
500 pub sigev_notify_attributes: *const ::pthread_attr_t,
501 __sigev_pad2: ::c_int,
502 }
532ac7d7
XL
503}
504
505cfg_if! {
506 if #[cfg(feature = "extra_traits")] {
dfeec247
XL
507 impl PartialEq for utmpx {
508 fn eq(&self, other: &utmpx) -> bool {
509 self.ut_type == other.ut_type
510 && self.ut_pid == other.ut_pid
511 && self.ut_user == other.ut_user
512 && self.ut_line == other.ut_line
513 && self.ut_id == other.ut_id
514 && self.ut_exit == other.ut_exit
515 && self.ut_session == other.ut_session
516 && self.ut_tv == other.ut_tv
517 && self.ut_syslen == other.ut_syslen
518 && self.ut_pad == other.ut_pad
519 && self
520 .ut_host
521 .iter()
522 .zip(other.ut_host.iter())
523 .all(|(a,b)| a == b)
524 }
525 }
526
527 impl Eq for utmpx {}
528
529 impl ::fmt::Debug for utmpx {
530 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
531 f.debug_struct("utmpx")
532 .field("ut_user", &self.ut_user)
533 .field("ut_id", &self.ut_id)
534 .field("ut_line", &self.ut_line)
535 .field("ut_pid", &self.ut_pid)
536 .field("ut_type", &self.ut_type)
537 .field("ut_exit", &self.ut_exit)
538 .field("ut_tv", &self.ut_tv)
539 .field("ut_session", &self.ut_session)
540 .field("ut_pad", &self.ut_pad)
541 .field("ut_syslen", &self.ut_syslen)
ba9703b0 542 .field("ut_host", &&self.ut_host[..])
dfeec247
XL
543 .finish()
544 }
545 }
546
547 impl ::hash::Hash for utmpx {
548 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
549 self.ut_user.hash(state);
550 self.ut_type.hash(state);
551 self.ut_pid.hash(state);
552 self.ut_line.hash(state);
553 self.ut_id.hash(state);
554 self.ut_host.hash(state);
555 self.ut_exit.hash(state);
556 self.ut_session.hash(state);
557 self.ut_tv.hash(state);
558 self.ut_syslen.hash(state);
559 self.ut_pad.hash(state);
560 }
561 }
562
532ac7d7
XL
563 impl PartialEq for epoll_event {
564 fn eq(&self, other: &epoll_event) -> bool {
565 self.events == other.events
566 && self.u64 == other.u64
567 }
568 }
569 impl Eq for epoll_event {}
570 impl ::fmt::Debug for epoll_event {
571 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
572 let events = self.events;
573 let u64 = self.u64;
574 f.debug_struct("epoll_event")
575 .field("events", &events)
576 .field("u64", &u64)
577 .finish()
578 }
579 }
580 impl ::hash::Hash for epoll_event {
581 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
582 let events = self.events;
583 let u64 = self.u64;
584 events.hash(state);
585 u64.hash(state);
586 }
587 }
588
589 impl PartialEq for sockaddr_un {
590 fn eq(&self, other: &sockaddr_un) -> bool {
591 self.sun_family == other.sun_family
592 && self
593 .sun_path
594 .iter()
595 .zip(other.sun_path.iter())
596 .all(|(a, b)| a == b)
597 }
598 }
599 impl Eq for sockaddr_un {}
600 impl ::fmt::Debug for sockaddr_un {
601 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
602 f.debug_struct("sockaddr_un")
603 .field("sun_family", &self.sun_family)
604 // FIXME: .field("sun_path", &self.sun_path)
605 .finish()
606 }
607 }
608 impl ::hash::Hash for sockaddr_un {
609 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
610 self.sun_family.hash(state);
611 self.sun_path.hash(state);
612 }
613 }
614
615 impl PartialEq for utsname {
616 fn eq(&self, other: &utsname) -> bool {
617 self.sysname
618 .iter()
619 .zip(other.sysname.iter())
620 .all(|(a, b)| a == b)
621 && self
622 .nodename
623 .iter()
624 .zip(other.nodename.iter())
625 .all(|(a, b)| a == b)
626 && self
627 .release
628 .iter()
629 .zip(other.release.iter())
630 .all(|(a, b)| a == b)
631 && self
632 .version
633 .iter()
634 .zip(other.version.iter())
635 .all(|(a, b)| a == b)
636 && self
637 .machine
638 .iter()
639 .zip(other.machine.iter())
640 .all(|(a, b)| a == b)
641 }
642 }
643 impl Eq for utsname {}
644 impl ::fmt::Debug for utsname {
645 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
646 f.debug_struct("utsname")
647 // FIXME: .field("sysname", &self.sysname)
648 // FIXME: .field("nodename", &self.nodename)
649 // FIXME: .field("release", &self.release)
650 // FIXME: .field("version", &self.version)
651 // FIXME: .field("machine", &self.machine)
652 .finish()
653 }
654 }
655 impl ::hash::Hash for utsname {
656 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
657 self.sysname.hash(state);
658 self.nodename.hash(state);
659 self.release.hash(state);
660 self.version.hash(state);
661 self.machine.hash(state);
662 }
663 }
664
665 impl PartialEq for fd_set {
666 fn eq(&self, other: &fd_set) -> bool {
667 self.fds_bits
668 .iter()
669 .zip(other.fds_bits.iter())
670 .all(|(a, b)| a == b)
671 }
672 }
673 impl Eq for fd_set {}
674 impl ::fmt::Debug for fd_set {
675 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
676 f.debug_struct("fd_set")
677 // FIXME: .field("fds_bits", &self.fds_bits)
678 .finish()
679 }
680 }
681 impl ::hash::Hash for fd_set {
682 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
683 self.fds_bits.hash(state);
684 }
685 }
686
687 impl PartialEq for sockaddr_storage {
688 fn eq(&self, other: &sockaddr_storage) -> bool {
689 self.ss_family == other.ss_family
690 && self.__ss_pad1 == other.__ss_pad1
691 && self.__ss_align == other.__ss_align
692 && self
693 .__ss_pad2
694 .iter()
695 .zip(other.__ss_pad2.iter())
696 .all(|(a, b)| a == b)
697 }
698 }
699 impl Eq for sockaddr_storage {}
700 impl ::fmt::Debug for sockaddr_storage {
701 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
702 f.debug_struct("sockaddr_storage")
703 .field("ss_family", &self.ss_family)
704 .field("__ss_pad1", &self.__ss_pad1)
705 .field("__ss_align", &self.__ss_align)
706 // FIXME: .field("__ss_pad2", &self.__ss_pad2)
707 .finish()
708 }
709 }
710 impl ::hash::Hash for sockaddr_storage {
711 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
712 self.ss_family.hash(state);
713 self.__ss_pad1.hash(state);
714 self.__ss_align.hash(state);
715 self.__ss_pad2.hash(state);
716 }
717 }
718
719 impl PartialEq for siginfo_t {
720 fn eq(&self, other: &siginfo_t) -> bool {
721 self.si_signo == other.si_signo
722 && self.si_code == other.si_code
723 && self.si_errno == other.si_errno
724 && self.si_addr == other.si_addr
725 && self
726 .__pad
727 .iter()
728 .zip(other.__pad.iter())
729 .all(|(a, b)| a == b)
730 }
731 }
732 impl Eq for siginfo_t {}
733 impl ::fmt::Debug for siginfo_t {
734 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
735 f.debug_struct("siginfo_t")
736 .field("si_signo", &self.si_signo)
737 .field("si_code", &self.si_code)
738 .field("si_errno", &self.si_errno)
739 .field("si_addr", &self.si_addr)
740 // FIXME: .field("__pad", &self.__pad)
741 .finish()
742 }
743 }
744 impl ::hash::Hash for siginfo_t {
745 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
746 self.si_signo.hash(state);
747 self.si_code.hash(state);
748 self.si_errno.hash(state);
749 self.si_addr.hash(state);
750 self.__pad.hash(state);
751 }
752 }
753
754 impl PartialEq for sockaddr_dl {
755 fn eq(&self, other: &sockaddr_dl) -> bool {
756 self.sdl_family == other.sdl_family
757 && self.sdl_index == other.sdl_index
758 && self.sdl_type == other.sdl_type
759 && self.sdl_nlen == other.sdl_nlen
760 && self.sdl_alen == other.sdl_alen
761 && self.sdl_slen == other.sdl_slen
762 && self
763 .sdl_data
764 .iter()
765 .zip(other.sdl_data.iter())
766 .all(|(a,b)| a == b)
767 }
768 }
769 impl Eq for sockaddr_dl {}
770 impl ::fmt::Debug for sockaddr_dl {
771 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
772 f.debug_struct("sockaddr_dl")
773 .field("sdl_family", &self.sdl_family)
774 .field("sdl_index", &self.sdl_index)
775 .field("sdl_type", &self.sdl_type)
776 .field("sdl_nlen", &self.sdl_nlen)
777 .field("sdl_alen", &self.sdl_alen)
778 .field("sdl_slen", &self.sdl_slen)
779 // FIXME: .field("sdl_data", &self.sdl_data)
780 .finish()
781 }
782 }
783 impl ::hash::Hash for sockaddr_dl {
784 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
785 self.sdl_family.hash(state);
786 self.sdl_index.hash(state);
787 self.sdl_type.hash(state);
788 self.sdl_nlen.hash(state);
789 self.sdl_alen.hash(state);
790 self.sdl_slen.hash(state);
791 self.sdl_data.hash(state);
792 }
793 }
416331ca
XL
794
795 impl PartialEq for sigevent {
796 fn eq(&self, other: &sigevent) -> bool {
797 self.sigev_notify == other.sigev_notify
798 && self.sigev_signo == other.sigev_signo
799 && self.sigev_value == other.sigev_value
800 && self.ss_sp == other.ss_sp
801 && self.sigev_notify_attributes
802 == other.sigev_notify_attributes
803 }
804 }
805 impl Eq for sigevent {}
806 impl ::fmt::Debug for sigevent {
807 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
808 f.debug_struct("sigevent")
809 .field("sigev_notify", &self.sigev_notify)
810 .field("sigev_signo", &self.sigev_signo)
811 .field("sigev_value", &self.sigev_value)
812 .field("ss_sp", &self.ss_sp)
813 .field("sigev_notify_attributes",
814 &self.sigev_notify_attributes)
815 .finish()
816 }
817 }
818 impl ::hash::Hash for sigevent {
819 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
820 self.sigev_notify.hash(state);
821 self.sigev_signo.hash(state);
822 self.sigev_value.hash(state);
823 self.ss_sp.hash(state);
824 self.sigev_notify_attributes.hash(state);
825 }
826 }
827
532ac7d7 828 }
476ff2be
SL
829}
830
831pub const LC_CTYPE: ::c_int = 0;
832pub const LC_NUMERIC: ::c_int = 1;
833pub const LC_TIME: ::c_int = 2;
834pub const LC_COLLATE: ::c_int = 3;
835pub const LC_MONETARY: ::c_int = 4;
836pub const LC_MESSAGES: ::c_int = 5;
837pub const LC_ALL: ::c_int = 6;
ba9703b0
XL
838pub const LC_CTYPE_MASK: ::c_int = 1 << LC_CTYPE;
839pub const LC_NUMERIC_MASK: ::c_int = 1 << LC_NUMERIC;
840pub const LC_TIME_MASK: ::c_int = 1 << LC_TIME;
841pub const LC_COLLATE_MASK: ::c_int = 1 << LC_COLLATE;
842pub const LC_MONETARY_MASK: ::c_int = 1 << LC_MONETARY;
843pub const LC_MESSAGES_MASK: ::c_int = 1 << LC_MESSAGES;
476ff2be 844pub const LC_ALL_MASK: ::c_int = LC_CTYPE_MASK
e74abb32
XL
845 | LC_NUMERIC_MASK
846 | LC_TIME_MASK
847 | LC_COLLATE_MASK
848 | LC_MONETARY_MASK
849 | LC_MESSAGES_MASK;
476ff2be
SL
850
851pub const DAY_1: ::nl_item = 1;
852pub const DAY_2: ::nl_item = 2;
853pub const DAY_3: ::nl_item = 3;
854pub const DAY_4: ::nl_item = 4;
855pub const DAY_5: ::nl_item = 5;
856pub const DAY_6: ::nl_item = 6;
857pub const DAY_7: ::nl_item = 7;
858
859pub const ABDAY_1: ::nl_item = 8;
860pub const ABDAY_2: ::nl_item = 9;
861pub const ABDAY_3: ::nl_item = 10;
862pub const ABDAY_4: ::nl_item = 11;
863pub const ABDAY_5: ::nl_item = 12;
864pub const ABDAY_6: ::nl_item = 13;
865pub const ABDAY_7: ::nl_item = 14;
866
867pub const MON_1: ::nl_item = 15;
868pub const MON_2: ::nl_item = 16;
869pub const MON_3: ::nl_item = 17;
870pub const MON_4: ::nl_item = 18;
871pub const MON_5: ::nl_item = 19;
872pub const MON_6: ::nl_item = 20;
873pub const MON_7: ::nl_item = 21;
874pub const MON_8: ::nl_item = 22;
875pub const MON_9: ::nl_item = 23;
876pub const MON_10: ::nl_item = 24;
877pub const MON_11: ::nl_item = 25;
878pub const MON_12: ::nl_item = 26;
879
880pub const ABMON_1: ::nl_item = 27;
881pub const ABMON_2: ::nl_item = 28;
882pub const ABMON_3: ::nl_item = 29;
883pub const ABMON_4: ::nl_item = 30;
884pub const ABMON_5: ::nl_item = 31;
885pub const ABMON_6: ::nl_item = 32;
886pub const ABMON_7: ::nl_item = 33;
887pub const ABMON_8: ::nl_item = 34;
888pub const ABMON_9: ::nl_item = 35;
889pub const ABMON_10: ::nl_item = 36;
890pub const ABMON_11: ::nl_item = 37;
891pub const ABMON_12: ::nl_item = 38;
892
893pub const RADIXCHAR: ::nl_item = 39;
894pub const THOUSEP: ::nl_item = 40;
895pub const YESSTR: ::nl_item = 41;
896pub const NOSTR: ::nl_item = 42;
897pub const CRNCYSTR: ::nl_item = 43;
898
899pub const D_T_FMT: ::nl_item = 44;
900pub const D_FMT: ::nl_item = 45;
901pub const T_FMT: ::nl_item = 46;
902pub const AM_STR: ::nl_item = 47;
903pub const PM_STR: ::nl_item = 48;
904
905pub const CODESET: ::nl_item = 49;
906pub const T_FMT_AMPM: ::nl_item = 50;
907pub const ERA: ::nl_item = 51;
908pub const ERA_D_FMT: ::nl_item = 52;
909pub const ERA_D_T_FMT: ::nl_item = 53;
910pub const ERA_T_FMT: ::nl_item = 54;
911pub const ALT_DIGITS: ::nl_item = 55;
912pub const YESEXPR: ::nl_item = 56;
913pub const NOEXPR: ::nl_item = 57;
914pub const _DATE_FMT: ::nl_item = 58;
915pub const MAXSTRMSG: ::nl_item = 58;
916
917pub const PATH_MAX: ::c_int = 1024;
918
919pub const SA_ONSTACK: ::c_int = 0x00000001;
920pub const SA_RESETHAND: ::c_int = 0x00000002;
921pub const SA_RESTART: ::c_int = 0x00000004;
922pub const SA_SIGINFO: ::c_int = 0x00000008;
923pub const SA_NODEFER: ::c_int = 0x00000010;
924pub const SA_NOCLDWAIT: ::c_int = 0x00010000;
925pub const SA_NOCLDSTOP: ::c_int = 0x00020000;
926
927pub const SS_ONSTACK: ::c_int = 1;
928pub const SS_DISABLE: ::c_int = 2;
929
7cac9316
XL
930pub const FIOCLEX: ::c_int = 0x20006601;
931pub const FIONCLEX: ::c_int = 0x20006602;
932pub const FIONREAD: ::c_int = 0x4004667f;
476ff2be 933pub const FIONBIO: ::c_int = 0x8004667e;
7cac9316
XL
934pub const FIOASYNC: ::c_int = 0x8004667d;
935pub const FIOSETOWN: ::c_int = 0x8004667c;
936pub const FIOGETOWN: ::c_int = 0x4004667b;
476ff2be
SL
937
938pub const SIGCHLD: ::c_int = 18;
939pub const SIGBUS: ::c_int = 10;
940pub const SIGINFO: ::c_int = 41;
941pub const SIG_BLOCK: ::c_int = 1;
942pub const SIG_UNBLOCK: ::c_int = 2;
943pub const SIG_SETMASK: ::c_int = 3;
944
532ac7d7 945pub const SIGEV_NONE: ::c_int = 1;
e74abb32 946pub const SIGEV_SIGNAL: ::c_int = 2;
532ac7d7
XL
947pub const SIGEV_THREAD: ::c_int = 3;
948
2c00a5a8
XL
949pub const IPV6_UNICAST_HOPS: ::c_int = 0x5;
950pub const IPV6_MULTICAST_IF: ::c_int = 0x6;
951pub const IPV6_MULTICAST_HOPS: ::c_int = 0x7;
476ff2be
SL
952pub const IPV6_MULTICAST_LOOP: ::c_int = 0x8;
953pub const IPV6_V6ONLY: ::c_int = 0x27;
954
8bb4bdeb
XL
955cfg_if! {
956 if #[cfg(target_pointer_width = "64")] {
957 pub const FD_SETSIZE: usize = 65536;
958 } else {
959 pub const FD_SETSIZE: usize = 1024;
960 }
961}
476ff2be
SL
962
963pub const ST_RDONLY: ::c_ulong = 1;
964pub const ST_NOSUID: ::c_ulong = 2;
965
966pub const NI_MAXHOST: ::socklen_t = 1025;
967
968pub const EXIT_FAILURE: ::c_int = 1;
969pub const EXIT_SUCCESS: ::c_int = 0;
970pub const RAND_MAX: ::c_int = 32767;
971pub const EOF: ::c_int = -1;
972pub const SEEK_SET: ::c_int = 0;
973pub const SEEK_CUR: ::c_int = 1;
974pub const SEEK_END: ::c_int = 2;
3dfed10e
XL
975pub const SEEK_DATA: ::c_int = 3;
976pub const SEEK_HOLE: ::c_int = 4;
476ff2be
SL
977pub const _IOFBF: ::c_int = 0;
978pub const _IONBF: ::c_int = 4;
979pub const _IOLBF: ::c_int = 64;
980pub const BUFSIZ: ::c_uint = 1024;
981pub const FOPEN_MAX: ::c_uint = 20;
982pub const FILENAME_MAX: ::c_uint = 1024;
983pub const L_tmpnam: ::c_uint = 25;
984pub const TMP_MAX: ::c_uint = 17576;
985
986pub const O_RDONLY: ::c_int = 0;
987pub const O_WRONLY: ::c_int = 1;
988pub const O_RDWR: ::c_int = 2;
532ac7d7 989pub const O_NDELAY: ::c_int = 0x04;
476ff2be 990pub const O_APPEND: ::c_int = 8;
532ac7d7 991pub const O_DSYNC: ::c_int = 0x40;
476ff2be
SL
992pub const O_CREAT: ::c_int = 256;
993pub const O_EXCL: ::c_int = 1024;
994pub const O_NOCTTY: ::c_int = 2048;
995pub const O_TRUNC: ::c_int = 512;
ba9703b0 996pub const O_NOFOLLOW: ::c_int = 0x20000;
532ac7d7
XL
997pub const O_SEARCH: ::c_int = 0x200000;
998pub const O_EXEC: ::c_int = 0x400000;
476ff2be
SL
999pub const O_CLOEXEC: ::c_int = 0x800000;
1000pub const O_ACCMODE: ::c_int = 0x600003;
1001pub const S_IFIFO: mode_t = 4096;
1002pub const S_IFCHR: mode_t = 8192;
1003pub const S_IFBLK: mode_t = 24576;
1004pub const S_IFDIR: mode_t = 16384;
1005pub const S_IFREG: mode_t = 32768;
1006pub const S_IFLNK: mode_t = 40960;
1007pub const S_IFSOCK: mode_t = 49152;
1008pub const S_IFMT: mode_t = 61440;
1009pub const S_IEXEC: mode_t = 64;
1010pub const S_IWRITE: mode_t = 128;
1011pub const S_IREAD: mode_t = 256;
1012pub const S_IRWXU: mode_t = 448;
1013pub const S_IXUSR: mode_t = 64;
1014pub const S_IWUSR: mode_t = 128;
1015pub const S_IRUSR: mode_t = 256;
1016pub const S_IRWXG: mode_t = 56;
1017pub const S_IXGRP: mode_t = 8;
1018pub const S_IWGRP: mode_t = 16;
1019pub const S_IRGRP: mode_t = 32;
1020pub const S_IRWXO: mode_t = 7;
1021pub const S_IXOTH: mode_t = 1;
1022pub const S_IWOTH: mode_t = 2;
1023pub const S_IROTH: mode_t = 4;
1024pub const F_OK: ::c_int = 0;
1025pub const R_OK: ::c_int = 4;
1026pub const W_OK: ::c_int = 2;
1027pub const X_OK: ::c_int = 1;
1028pub const STDIN_FILENO: ::c_int = 0;
1029pub const STDOUT_FILENO: ::c_int = 1;
1030pub const STDERR_FILENO: ::c_int = 2;
1031pub const F_LOCK: ::c_int = 1;
1032pub const F_TEST: ::c_int = 3;
1033pub const F_TLOCK: ::c_int = 2;
1034pub const F_ULOCK: ::c_int = 0;
1035pub const F_DUPFD_CLOEXEC: ::c_int = 37;
1036pub const F_SETLK: ::c_int = 6;
1037pub const F_SETLKW: ::c_int = 7;
1038pub const F_GETLK: ::c_int = 14;
1039pub const SIGHUP: ::c_int = 1;
1040pub const SIGINT: ::c_int = 2;
1041pub const SIGQUIT: ::c_int = 3;
1042pub const SIGILL: ::c_int = 4;
1043pub const SIGABRT: ::c_int = 6;
1044pub const SIGEMT: ::c_int = 7;
1045pub const SIGFPE: ::c_int = 8;
1046pub const SIGKILL: ::c_int = 9;
1047pub const SIGSEGV: ::c_int = 11;
1048pub const SIGSYS: ::c_int = 12;
1049pub const SIGPIPE: ::c_int = 13;
1050pub const SIGALRM: ::c_int = 14;
1051pub const SIGTERM: ::c_int = 15;
1052pub const SIGUSR1: ::c_int = 16;
1053pub const SIGUSR2: ::c_int = 17;
1054pub const SIGPWR: ::c_int = 19;
1055pub const SIGWINCH: ::c_int = 20;
1056pub const SIGURG: ::c_int = 21;
1057pub const SIGPOLL: ::c_int = 22;
1058pub const SIGIO: ::c_int = SIGPOLL;
1059pub const SIGSTOP: ::c_int = 23;
1060pub const SIGTSTP: ::c_int = 24;
1061pub const SIGCONT: ::c_int = 25;
1062pub const SIGTTIN: ::c_int = 26;
1063pub const SIGTTOU: ::c_int = 27;
1064pub const SIGVTALRM: ::c_int = 28;
1065pub const SIGPROF: ::c_int = 29;
1066pub const SIGXCPU: ::c_int = 30;
1067pub const SIGXFSZ: ::c_int = 31;
1068
1069pub const WNOHANG: ::c_int = 0x40;
1070pub const WUNTRACED: ::c_int = 0x04;
1071
8bb4bdeb
XL
1072pub const WEXITED: ::c_int = 0x01;
1073pub const WTRAPPED: ::c_int = 0x02;
1074pub const WSTOPPED: ::c_int = WUNTRACED;
1075pub const WCONTINUED: ::c_int = 0x08;
1076pub const WNOWAIT: ::c_int = 0x80;
1077
abe05a73
XL
1078pub const AT_FDCWD: ::c_int = 0xffd19553;
1079pub const AT_SYMLINK_NOFOLLOW: ::c_int = 0x1000;
ba9703b0
XL
1080pub const AT_SYMLINK_FOLLOW: ::c_int = 0x2000;
1081pub const AT_REMOVEDIR: ::c_int = 0x1;
1082pub const _AT_TRIGGER: ::c_int = 0x2;
1083pub const AT_EACCESS: ::c_int = 0x4;
abe05a73 1084
8bb4bdeb 1085pub const P_PID: idtype_t = 0;
532ac7d7 1086pub const P_PPID: idtype_t = 1;
8bb4bdeb 1087pub const P_PGID: idtype_t = 2;
532ac7d7
XL
1088pub const P_SID: idtype_t = 3;
1089pub const P_CID: idtype_t = 4;
1090pub const P_UID: idtype_t = 5;
1091pub const P_GID: idtype_t = 6;
8bb4bdeb 1092pub const P_ALL: idtype_t = 7;
532ac7d7
XL
1093pub const P_LWPID: idtype_t = 8;
1094pub const P_TASKID: idtype_t = 9;
1095pub const P_PROJID: idtype_t = 10;
1096pub const P_POOLID: idtype_t = 11;
1097pub const P_ZONEID: idtype_t = 12;
1098pub const P_CTID: idtype_t = 13;
1099pub const P_CPUID: idtype_t = 14;
1100pub const P_PSETID: idtype_t = 15;
8bb4bdeb 1101
e74abb32
XL
1102pub const UTIME_OMIT: c_long = -2;
1103pub const UTIME_NOW: c_long = -1;
1104
476ff2be
SL
1105pub const PROT_NONE: ::c_int = 0;
1106pub const PROT_READ: ::c_int = 1;
1107pub const PROT_WRITE: ::c_int = 2;
1108pub const PROT_EXEC: ::c_int = 4;
1109
532ac7d7 1110pub const MAP_FILE: ::c_int = 0;
476ff2be
SL
1111pub const MAP_SHARED: ::c_int = 0x0001;
1112pub const MAP_PRIVATE: ::c_int = 0x0002;
1113pub const MAP_FIXED: ::c_int = 0x0010;
1114pub const MAP_NORESERVE: ::c_int = 0x40;
1115pub const MAP_ANON: ::c_int = 0x0100;
dfeec247 1116pub const MAP_ANONYMOUS: ::c_int = 0x0100;
476ff2be
SL
1117pub const MAP_RENAME: ::c_int = 0x20;
1118pub const MAP_ALIGN: ::c_int = 0x200;
1119pub const MAP_TEXT: ::c_int = 0x400;
1120pub const MAP_INITDATA: ::c_int = 0x800;
1121pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void;
1122
1123pub const MCL_CURRENT: ::c_int = 0x0001;
1124pub const MCL_FUTURE: ::c_int = 0x0002;
1125
1126pub const MS_SYNC: ::c_int = 0x0004;
1127pub const MS_ASYNC: ::c_int = 0x0001;
1128pub const MS_INVALIDATE: ::c_int = 0x0002;
476ff2be
SL
1129
1130pub const EPERM: ::c_int = 1;
1131pub const ENOENT: ::c_int = 2;
1132pub const ESRCH: ::c_int = 3;
1133pub const EINTR: ::c_int = 4;
1134pub const EIO: ::c_int = 5;
1135pub const ENXIO: ::c_int = 6;
1136pub const E2BIG: ::c_int = 7;
1137pub const ENOEXEC: ::c_int = 8;
1138pub const EBADF: ::c_int = 9;
1139pub const ECHILD: ::c_int = 10;
7cac9316 1140pub const EAGAIN: ::c_int = 11;
476ff2be
SL
1141pub const ENOMEM: ::c_int = 12;
1142pub const EACCES: ::c_int = 13;
1143pub const EFAULT: ::c_int = 14;
1144pub const ENOTBLK: ::c_int = 15;
1145pub const EBUSY: ::c_int = 16;
1146pub const EEXIST: ::c_int = 17;
1147pub const EXDEV: ::c_int = 18;
1148pub const ENODEV: ::c_int = 19;
1149pub const ENOTDIR: ::c_int = 20;
1150pub const EISDIR: ::c_int = 21;
1151pub const EINVAL: ::c_int = 22;
1152pub const ENFILE: ::c_int = 23;
1153pub const EMFILE: ::c_int = 24;
1154pub const ENOTTY: ::c_int = 25;
1155pub const ETXTBSY: ::c_int = 26;
1156pub const EFBIG: ::c_int = 27;
1157pub const ENOSPC: ::c_int = 28;
1158pub const ESPIPE: ::c_int = 29;
1159pub const EROFS: ::c_int = 30;
1160pub const EMLINK: ::c_int = 31;
1161pub const EPIPE: ::c_int = 32;
1162pub const EDOM: ::c_int = 33;
1163pub const ERANGE: ::c_int = 34;
7cac9316
XL
1164pub const ENOMSG: ::c_int = 35;
1165pub const EIDRM: ::c_int = 36;
1166pub const ECHRNG: ::c_int = 37;
1167pub const EL2NSYNC: ::c_int = 38;
1168pub const EL3HLT: ::c_int = 39;
1169pub const EL3RST: ::c_int = 40;
1170pub const ELNRNG: ::c_int = 41;
1171pub const EUNATCH: ::c_int = 42;
1172pub const ENOCSI: ::c_int = 43;
1173pub const EL2HLT: ::c_int = 44;
1174pub const EDEADLK: ::c_int = 45;
1175pub const ENOLCK: ::c_int = 46;
1176pub const ECANCELED: ::c_int = 47;
8bb4bdeb 1177pub const ENOTSUP: ::c_int = 48;
7cac9316
XL
1178pub const EDQUOT: ::c_int = 49;
1179pub const EBADE: ::c_int = 50;
1180pub const EBADR: ::c_int = 51;
1181pub const EXFULL: ::c_int = 52;
1182pub const ENOANO: ::c_int = 53;
1183pub const EBADRQC: ::c_int = 54;
1184pub const EBADSLT: ::c_int = 55;
1185pub const EDEADLOCK: ::c_int = 56;
1186pub const EBFONT: ::c_int = 57;
1187pub const EOWNERDEAD: ::c_int = 58;
1188pub const ENOTRECOVERABLE: ::c_int = 59;
1189pub const ENOSTR: ::c_int = 60;
1190pub const ENODATA: ::c_int = 61;
1191pub const ETIME: ::c_int = 62;
1192pub const ENOSR: ::c_int = 63;
1193pub const ENONET: ::c_int = 64;
1194pub const ENOPKG: ::c_int = 65;
1195pub const EREMOTE: ::c_int = 66;
1196pub const ENOLINK: ::c_int = 67;
1197pub const EADV: ::c_int = 68;
1198pub const ESRMNT: ::c_int = 69;
1199pub const ECOMM: ::c_int = 70;
1200pub const EPROTO: ::c_int = 71;
1201pub const ELOCKUNMAPPED: ::c_int = 72;
1202pub const ENOTACTIVE: ::c_int = 73;
1203pub const EMULTIHOP: ::c_int = 74;
1204pub const EADI: ::c_int = 75;
1205pub const EBADMSG: ::c_int = 77;
1206pub const ENAMETOOLONG: ::c_int = 78;
1207pub const EOVERFLOW: ::c_int = 79;
1208pub const ENOTUNIQ: ::c_int = 80;
1209pub const EBADFD: ::c_int = 81;
1210pub const EREMCHG: ::c_int = 82;
1211pub const ELIBACC: ::c_int = 83;
1212pub const ELIBBAD: ::c_int = 84;
1213pub const ELIBSCN: ::c_int = 85;
1214pub const ELIBMAX: ::c_int = 86;
1215pub const ELIBEXEC: ::c_int = 87;
1216pub const EILSEQ: ::c_int = 88;
1217pub const ENOSYS: ::c_int = 89;
1218pub const ELOOP: ::c_int = 90;
1219pub const ERESTART: ::c_int = 91;
1220pub const ESTRPIPE: ::c_int = 92;
1221pub const ENOTEMPTY: ::c_int = 93;
1222pub const EUSERS: ::c_int = 94;
476ff2be
SL
1223pub const ENOTSOCK: ::c_int = 95;
1224pub const EDESTADDRREQ: ::c_int = 96;
1225pub const EMSGSIZE: ::c_int = 97;
1226pub const EPROTOTYPE: ::c_int = 98;
1227pub const ENOPROTOOPT: ::c_int = 99;
1228pub const EPROTONOSUPPORT: ::c_int = 120;
1229pub const ESOCKTNOSUPPORT: ::c_int = 121;
1230pub const EOPNOTSUPP: ::c_int = 122;
1231pub const EPFNOSUPPORT: ::c_int = 123;
1232pub const EAFNOSUPPORT: ::c_int = 124;
1233pub const EADDRINUSE: ::c_int = 125;
1234pub const EADDRNOTAVAIL: ::c_int = 126;
1235pub const ENETDOWN: ::c_int = 127;
1236pub const ENETUNREACH: ::c_int = 128;
1237pub const ENETRESET: ::c_int = 129;
1238pub const ECONNABORTED: ::c_int = 130;
1239pub const ECONNRESET: ::c_int = 131;
1240pub const ENOBUFS: ::c_int = 132;
1241pub const EISCONN: ::c_int = 133;
1242pub const ENOTCONN: ::c_int = 134;
1243pub const ESHUTDOWN: ::c_int = 143;
1244pub const ETOOMANYREFS: ::c_int = 144;
1245pub const ETIMEDOUT: ::c_int = 145;
1246pub const ECONNREFUSED: ::c_int = 146;
476ff2be
SL
1247pub const EHOSTDOWN: ::c_int = 147;
1248pub const EHOSTUNREACH: ::c_int = 148;
7cac9316
XL
1249pub const EWOULDBLOCK: ::c_int = EAGAIN;
1250pub const EALREADY: ::c_int = 149;
1251pub const EINPROGRESS: ::c_int = 150;
532ac7d7 1252pub const ESTALE: ::c_int = 151;
476ff2be 1253
2c00a5a8
XL
1254pub const EAI_AGAIN: ::c_int = 2;
1255pub const EAI_BADFLAGS: ::c_int = 3;
1256pub const EAI_FAIL: ::c_int = 4;
1257pub const EAI_FAMILY: ::c_int = 5;
1258pub const EAI_MEMORY: ::c_int = 6;
1259pub const EAI_NODATA: ::c_int = 7;
1260pub const EAI_NONAME: ::c_int = 8;
1261pub const EAI_SERVICE: ::c_int = 9;
1262pub const EAI_SOCKTYPE: ::c_int = 10;
476ff2be 1263pub const EAI_SYSTEM: ::c_int = 11;
2c00a5a8 1264pub const EAI_OVERFLOW: ::c_int = 12;
476ff2be
SL
1265
1266pub const F_DUPFD: ::c_int = 0;
1267pub const F_GETFD: ::c_int = 1;
1268pub const F_SETFD: ::c_int = 2;
1269pub const F_GETFL: ::c_int = 3;
1270pub const F_SETFL: ::c_int = 4;
1271
1272pub const SIGTRAP: ::c_int = 5;
1273
e74abb32
XL
1274pub const GLOB_APPEND: ::c_int = 32;
1275pub const GLOB_DOOFFS: ::c_int = 16;
1276pub const GLOB_ERR: ::c_int = 1;
1277pub const GLOB_MARK: ::c_int = 2;
1278pub const GLOB_NOCHECK: ::c_int = 8;
1279pub const GLOB_NOSORT: ::c_int = 4;
476ff2be
SL
1280pub const GLOB_NOESCAPE: ::c_int = 64;
1281
e74abb32
XL
1282pub const GLOB_NOSPACE: ::c_int = -2;
1283pub const GLOB_ABORTED: ::c_int = -1;
1284pub const GLOB_NOMATCH: ::c_int = -3;
476ff2be 1285
abe05a73
XL
1286pub const POLLIN: ::c_short = 0x1;
1287pub const POLLPRI: ::c_short = 0x2;
1288pub const POLLOUT: ::c_short = 0x4;
1289pub const POLLERR: ::c_short = 0x8;
1290pub const POLLHUP: ::c_short = 0x10;
1291pub const POLLNVAL: ::c_short = 0x20;
532ac7d7
XL
1292pub const POLLNORM: ::c_short = 0x0040;
1293pub const POLLRDNORM: ::c_short = 0x0040;
1294pub const POLLWRNORM: ::c_short = 0x4; /* POLLOUT */
1295pub const POLLRDBAND: ::c_short = 0x0080;
1296pub const POLLWRBAND: ::c_short = 0x0100;
abe05a73 1297
476ff2be
SL
1298pub const POSIX_MADV_NORMAL: ::c_int = 0;
1299pub const POSIX_MADV_RANDOM: ::c_int = 1;
1300pub const POSIX_MADV_SEQUENTIAL: ::c_int = 2;
1301pub const POSIX_MADV_WILLNEED: ::c_int = 3;
1302pub const POSIX_MADV_DONTNEED: ::c_int = 4;
1303
476ff2be
SL
1304pub const PTHREAD_CREATE_JOINABLE: ::c_int = 0;
1305pub const PTHREAD_CREATE_DETACHED: ::c_int = 0x40;
1306pub const PTHREAD_PROCESS_SHARED: ::c_int = 1;
3b2f2976 1307pub const PTHREAD_PROCESS_PRIVATE: ::c_ushort = 0;
476ff2be
SL
1308pub const PTHREAD_STACK_MIN: ::size_t = 4096;
1309
1310pub const SIGSTKSZ: ::size_t = 8192;
1311
1312// https://illumos.org/man/3c/clock_gettime
1313// https://github.com/illumos/illumos-gate/
1314// blob/HEAD/usr/src/lib/libc/amd64/sys/__clock_gettime.s
1315// clock_gettime(3c) doesn't seem to accept anything other than CLOCK_REALTIME
1316// or __CLOCK_REALTIME0
1317//
1318// https://github.com/illumos/illumos-gate/
1319// blob/HEAD/usr/src/uts/common/sys/time_impl.h
1320// Confusing! CLOCK_HIGHRES==CLOCK_MONOTONIC==4
1321// __CLOCK_REALTIME0==0 is an obsoleted version of CLOCK_REALTIME==3
ea8adc8c
XL
1322pub const CLOCK_REALTIME: ::clockid_t = 3;
1323pub const CLOCK_MONOTONIC: ::clockid_t = 4;
476ff2be
SL
1324pub const TIMER_RELTIME: ::c_int = 0;
1325pub const TIMER_ABSTIME: ::c_int = 1;
1326
1327pub const RLIMIT_CPU: ::c_int = 0;
1328pub const RLIMIT_FSIZE: ::c_int = 1;
1329pub const RLIMIT_DATA: ::c_int = 2;
1330pub const RLIMIT_STACK: ::c_int = 3;
1331pub const RLIMIT_CORE: ::c_int = 4;
1332pub const RLIMIT_NOFILE: ::c_int = 5;
1333pub const RLIMIT_VMEM: ::c_int = 6;
1334pub const RLIMIT_AS: ::c_int = RLIMIT_VMEM;
1335
e74abb32 1336#[deprecated(since = "0.2.64", note = "Not stable across OS versions")]
476ff2be 1337pub const RLIM_NLIMITS: rlim_t = 7;
ba9703b0 1338pub const RLIM_INFINITY: rlim_t = 0xfffffffffffffffd;
476ff2be
SL
1339
1340pub const RUSAGE_SELF: ::c_int = 0;
1341pub const RUSAGE_CHILDREN: ::c_int = -1;
1342
1343pub const MADV_NORMAL: ::c_int = 0;
1344pub const MADV_RANDOM: ::c_int = 1;
1345pub const MADV_SEQUENTIAL: ::c_int = 2;
1346pub const MADV_WILLNEED: ::c_int = 3;
1347pub const MADV_DONTNEED: ::c_int = 4;
1348pub const MADV_FREE: ::c_int = 5;
1349
532ac7d7
XL
1350pub const AF_UNSPEC: ::c_int = 0;
1351pub const AF_UNIX: ::c_int = 1;
476ff2be 1352pub const AF_INET: ::c_int = 2;
532ac7d7
XL
1353pub const AF_IMPLINK: ::c_int = 3;
1354pub const AF_PUP: ::c_int = 4;
1355pub const AF_CHAOS: ::c_int = 5;
1356pub const AF_NS: ::c_int = 6;
1357pub const AF_NBS: ::c_int = 7;
1358pub const AF_ECMA: ::c_int = 8;
1359pub const AF_DATAKIT: ::c_int = 9;
1360pub const AF_CCITT: ::c_int = 10;
1361pub const AF_SNA: ::c_int = 11;
1362pub const AF_DECnet: ::c_int = 12;
1363pub const AF_DLI: ::c_int = 13;
1364pub const AF_LAT: ::c_int = 14;
1365pub const AF_HYLINK: ::c_int = 15;
1366pub const AF_APPLETALK: ::c_int = 16;
1367pub const AF_NIT: ::c_int = 17;
1368pub const AF_802: ::c_int = 18;
1369pub const AF_OSI: ::c_int = 19;
1370pub const AF_X25: ::c_int = 20;
1371pub const AF_OSINET: ::c_int = 21;
1372pub const AF_GOSIP: ::c_int = 22;
1373pub const AF_IPX: ::c_int = 23;
1374pub const AF_ROUTE: ::c_int = 24;
1375pub const AF_LINK: ::c_int = 25;
476ff2be 1376pub const AF_INET6: ::c_int = 26;
532ac7d7
XL
1377pub const AF_KEY: ::c_int = 27;
1378pub const AF_NCA: ::c_int = 28;
1379pub const AF_POLICY: ::c_int = 29;
1380pub const AF_INET_OFFLOAD: ::c_int = 30;
1381pub const AF_TRILL: ::c_int = 31;
1382pub const AF_PACKET: ::c_int = 32;
416331ca 1383
476ff2be
SL
1384pub const SOCK_DGRAM: ::c_int = 1;
1385pub const SOCK_STREAM: ::c_int = 2;
1386pub const SOCK_RAW: ::c_int = 4;
1387pub const SOCK_RDM: ::c_int = 5;
1388pub const SOCK_SEQPACKET: ::c_int = 6;
2c00a5a8 1389pub const IP_MULTICAST_IF: ::c_int = 16;
476ff2be
SL
1390pub const IP_MULTICAST_TTL: ::c_int = 17;
1391pub const IP_MULTICAST_LOOP: ::c_int = 18;
1392pub const IP_TTL: ::c_int = 4;
1393pub const IP_HDRINCL: ::c_int = 2;
1394pub const IP_ADD_MEMBERSHIP: ::c_int = 19;
1395pub const IP_DROP_MEMBERSHIP: ::c_int = 20;
1396pub const IPV6_JOIN_GROUP: ::c_int = 9;
1397pub const IPV6_LEAVE_GROUP: ::c_int = 10;
1398
5869c6ff
XL
1399// These TCP socket options are common between illumos and Solaris, while higher
1400// numbers have generally diverged:
1401pub const TCP_NODELAY: ::c_int = 0x1;
1402pub const TCP_MAXSEG: ::c_int = 0x2;
1403pub const TCP_KEEPALIVE: ::c_int = 0x8;
1404pub const TCP_NOTIFY_THRESHOLD: ::c_int = 0x10;
1405pub const TCP_ABORT_THRESHOLD: ::c_int = 0x11;
1406pub const TCP_CONN_NOTIFY_THRESHOLD: ::c_int = 0x12;
1407pub const TCP_CONN_ABORT_THRESHOLD: ::c_int = 0x13;
1408pub const TCP_RECVDSTADDR: ::c_int = 0x14;
1409pub const TCP_INIT_CWND: ::c_int = 0x15;
1410pub const TCP_KEEPALIVE_THRESHOLD: ::c_int = 0x16;
1411pub const TCP_KEEPALIVE_ABORT_THRESHOLD: ::c_int = 0x17;
1412pub const TCP_CORK: ::c_int = 0x18;
1413pub const TCP_RTO_INITIAL: ::c_int = 0x19;
1414pub const TCP_RTO_MIN: ::c_int = 0x1a;
1415pub const TCP_RTO_MAX: ::c_int = 0x1b;
1416pub const TCP_LINGER2: ::c_int = 0x1c;
1417
476ff2be
SL
1418pub const SOL_SOCKET: ::c_int = 0xffff;
1419pub const SO_DEBUG: ::c_int = 0x01;
1420pub const SO_ACCEPTCONN: ::c_int = 0x0002;
1421pub const SO_REUSEADDR: ::c_int = 0x0004;
1422pub const SO_KEEPALIVE: ::c_int = 0x0008;
1423pub const SO_DONTROUTE: ::c_int = 0x0010;
1424pub const SO_BROADCAST: ::c_int = 0x0020;
1425pub const SO_USELOOPBACK: ::c_int = 0x0040;
1426pub const SO_LINGER: ::c_int = 0x0080;
1427pub const SO_OOBINLINE: ::c_int = 0x0100;
1428pub const SO_SNDBUF: ::c_int = 0x1001;
1429pub const SO_RCVBUF: ::c_int = 0x1002;
1430pub const SO_SNDLOWAT: ::c_int = 0x1003;
1431pub const SO_RCVLOWAT: ::c_int = 0x1004;
1432pub const SO_SNDTIMEO: ::c_int = 0x1005;
1433pub const SO_RCVTIMEO: ::c_int = 0x1006;
1434pub const SO_ERROR: ::c_int = 0x1007;
1435pub const SO_TYPE: ::c_int = 0x1008;
532ac7d7 1436pub const SO_TIMESTAMP: ::c_int = 0x1013;
476ff2be 1437
532ac7d7
XL
1438pub const SCM_RIGHTS: ::c_int = 0x1010;
1439pub const SCM_UCRED: ::c_int = 0x1012;
1440pub const SCM_TIMESTAMP: ::c_int = SO_TIMESTAMP;
1441
1442pub const MSG_OOB: ::c_int = 0x1;
8bb4bdeb 1443pub const MSG_PEEK: ::c_int = 0x2;
532ac7d7
XL
1444pub const MSG_DONTROUTE: ::c_int = 0x4;
1445pub const MSG_EOR: ::c_int = 0x8;
1446pub const MSG_CTRUNC: ::c_int = 0x10;
1447pub const MSG_TRUNC: ::c_int = 0x20;
1448pub const MSG_WAITALL: ::c_int = 0x40;
1449pub const MSG_DONTWAIT: ::c_int = 0x80;
1450pub const MSG_NOTIFICATION: ::c_int = 0x100;
1451pub const MSG_NOSIGNAL: ::c_int = 0x200;
1452pub const MSG_DUPCTRL: ::c_int = 0x800;
1453pub const MSG_XPG4_2: ::c_int = 0x8000;
1454pub const MSG_MAXIOVLEN: ::c_int = 16;
8bb4bdeb 1455
ba9703b0
XL
1456pub const IF_NAMESIZE: ::size_t = 32;
1457pub const IFNAMSIZ: ::size_t = 16;
1458
ff7c6d11
XL
1459// https://docs.oracle.com/cd/E23824_01/html/821-1475/if-7p.html
1460pub const IFF_UP: ::c_int = 0x0000000001; // Address is up
1461pub const IFF_BROADCAST: ::c_int = 0x0000000002; // Broadcast address valid
1462pub const IFF_DEBUG: ::c_int = 0x0000000004; // Turn on debugging
1463pub const IFF_LOOPBACK: ::c_int = 0x0000000008; // Loopback net
1464pub const IFF_POINTOPOINT: ::c_int = 0x0000000010; // Interface is p-to-p
1465pub const IFF_NOTRAILERS: ::c_int = 0x0000000020; // Avoid use of trailers
1466pub const IFF_RUNNING: ::c_int = 0x0000000040; // Resources allocated
1467pub const IFF_NOARP: ::c_int = 0x0000000080; // No address res. protocol
1468pub const IFF_PROMISC: ::c_int = 0x0000000100; // Receive all packets
1469pub const IFF_ALLMULTI: ::c_int = 0x0000000200; // Receive all multicast pkts
1470pub const IFF_INTELLIGENT: ::c_int = 0x0000000400; // Protocol code on board
1471pub const IFF_MULTICAST: ::c_int = 0x0000000800; // Supports multicast
e74abb32 1472
ff7c6d11
XL
1473// Multicast using broadcst. add.
1474pub const IFF_MULTI_BCAST: ::c_int = 0x0000001000;
1475pub const IFF_UNNUMBERED: ::c_int = 0x0000002000; // Non-unique address
1476pub const IFF_DHCPRUNNING: ::c_int = 0x0000004000; // DHCP controls interface
1477pub const IFF_PRIVATE: ::c_int = 0x0000008000; // Do not advertise
1478pub const IFF_NOXMIT: ::c_int = 0x0000010000; // Do not transmit pkts
e74abb32 1479
ff7c6d11
XL
1480// No address - just on-link subnet
1481pub const IFF_NOLOCAL: ::c_int = 0x0000020000;
1482pub const IFF_DEPRECATED: ::c_int = 0x0000040000; // Address is deprecated
1483pub const IFF_ADDRCONF: ::c_int = 0x0000080000; // Addr. from stateless addrconf
1484pub const IFF_ROUTER: ::c_int = 0x0000100000; // Router on interface
1485pub const IFF_NONUD: ::c_int = 0x0000200000; // No NUD on interface
1486pub const IFF_ANYCAST: ::c_int = 0x0000400000; // Anycast address
1487pub const IFF_NORTEXCH: ::c_int = 0x0000800000; // Don't xchange rout. info
1488pub const IFF_IPV4: ::c_int = 0x0001000000; // IPv4 interface
1489pub const IFF_IPV6: ::c_int = 0x0002000000; // IPv6 interface
1490pub const IFF_NOFAILOVER: ::c_int = 0x0008000000; // in.mpathd test address
1491pub const IFF_FAILED: ::c_int = 0x0010000000; // Interface has failed
1492pub const IFF_STANDBY: ::c_int = 0x0020000000; // Interface is a hot-spare
1493pub const IFF_INACTIVE: ::c_int = 0x0040000000; // Functioning but not used
1494pub const IFF_OFFLINE: ::c_int = 0x0080000000; // Interface is offline
e74abb32 1495 // If CoS marking is supported
ff7c6d11
XL
1496pub const IFF_COS_ENABLED: ::c_longlong = 0x0200000000;
1497pub const IFF_PREFERRED: ::c_longlong = 0x0400000000; // Prefer as source addr.
1498pub const IFF_TEMPORARY: ::c_longlong = 0x0800000000; // RFC3041
1499pub const IFF_FIXEDMTU: ::c_longlong = 0x1000000000; // MTU set with SIOCSLIFMTU
1500pub const IFF_VIRTUAL: ::c_longlong = 0x2000000000; // Cannot send/receive pkts
1501pub const IFF_DUPLICATE: ::c_longlong = 0x4000000000; // Local address in use
1502pub const IFF_IPMP: ::c_longlong = 0x8000000000; // IPMP IP interface
476ff2be 1503
dfeec247
XL
1504// sys/ipc.h:
1505pub const IPC_ALLOC: ::c_int = 0x8000;
1506pub const IPC_CREAT: ::c_int = 0x200;
1507pub const IPC_EXCL: ::c_int = 0x400;
1508pub const IPC_NOWAIT: ::c_int = 0x800;
1509pub const IPC_PRIVATE: key_t = 0;
1510pub const IPC_RMID: ::c_int = 10;
1511pub const IPC_SET: ::c_int = 11;
1512pub const IPC_SEAT: ::c_int = 12;
1513
476ff2be
SL
1514pub const SHUT_RD: ::c_int = 0;
1515pub const SHUT_WR: ::c_int = 1;
1516pub const SHUT_RDWR: ::c_int = 2;
1517
1518pub const LOCK_SH: ::c_int = 1;
1519pub const LOCK_EX: ::c_int = 2;
1520pub const LOCK_NB: ::c_int = 4;
1521pub const LOCK_UN: ::c_int = 8;
1522
8bb4bdeb
XL
1523pub const F_RDLCK: ::c_short = 1;
1524pub const F_WRLCK: ::c_short = 2;
1525pub const F_UNLCK: ::c_short = 3;
1526
476ff2be
SL
1527pub const O_SYNC: ::c_int = 16;
1528pub const O_NONBLOCK: ::c_int = 128;
1529
1530pub const IPPROTO_RAW: ::c_int = 255;
1531
041b39d2
XL
1532pub const _PC_LINK_MAX: ::c_int = 1;
1533pub const _PC_MAX_CANON: ::c_int = 2;
1534pub const _PC_MAX_INPUT: ::c_int = 3;
1535pub const _PC_NAME_MAX: ::c_int = 4;
1536pub const _PC_PATH_MAX: ::c_int = 5;
1537pub const _PC_PIPE_BUF: ::c_int = 6;
1538pub const _PC_NO_TRUNC: ::c_int = 7;
1539pub const _PC_VDISABLE: ::c_int = 8;
1540pub const _PC_CHOWN_RESTRICTED: ::c_int = 9;
1541pub const _PC_ASYNC_IO: ::c_int = 10;
1542pub const _PC_PRIO_IO: ::c_int = 11;
1543pub const _PC_SYNC_IO: ::c_int = 12;
1544pub const _PC_ALLOC_SIZE_MIN: ::c_int = 13;
1545pub const _PC_REC_INCR_XFER_SIZE: ::c_int = 14;
1546pub const _PC_REC_MAX_XFER_SIZE: ::c_int = 15;
1547pub const _PC_REC_MIN_XFER_SIZE: ::c_int = 16;
1548pub const _PC_REC_XFER_ALIGN: ::c_int = 17;
1549pub const _PC_SYMLINK_MAX: ::c_int = 18;
1550pub const _PC_2_SYMLINKS: ::c_int = 19;
1551pub const _PC_ACL_ENABLED: ::c_int = 20;
1552pub const _PC_MIN_HOLE_SIZE: ::c_int = 21;
1553pub const _PC_CASE_BEHAVIOR: ::c_int = 22;
1554pub const _PC_SATTR_ENABLED: ::c_int = 23;
1555pub const _PC_SATTR_EXISTS: ::c_int = 24;
1556pub const _PC_ACCESS_FILTERING: ::c_int = 25;
1557pub const _PC_TIMESTAMP_RESOLUTION: ::c_int = 26;
1558pub const _PC_FILESIZEBITS: ::c_int = 67;
1559pub const _PC_XATTR_ENABLED: ::c_int = 100;
1560pub const _PC_LAST: ::c_int = 101;
1561pub const _PC_XATTR_EXISTS: ::c_int = 101;
1562
476ff2be
SL
1563pub const _SC_ARG_MAX: ::c_int = 1;
1564pub const _SC_CHILD_MAX: ::c_int = 2;
1565pub const _SC_CLK_TCK: ::c_int = 3;
1566pub const _SC_NGROUPS_MAX: ::c_int = 4;
1567pub const _SC_OPEN_MAX: ::c_int = 5;
1568pub const _SC_JOB_CONTROL: ::c_int = 6;
1569pub const _SC_SAVED_IDS: ::c_int = 7;
1570pub const _SC_VERSION: ::c_int = 8;
041b39d2
XL
1571pub const _SC_PASS_MAX: ::c_int = 9;
1572pub const _SC_LOGNAME_MAX: ::c_int = 10;
476ff2be
SL
1573pub const _SC_PAGESIZE: ::c_int = 11;
1574pub const _SC_PAGE_SIZE: ::c_int = _SC_PAGESIZE;
041b39d2
XL
1575pub const _SC_XOPEN_VERSION: ::c_int = 12;
1576pub const _SC_NPROCESSORS_CONF: ::c_int = 14;
476ff2be
SL
1577pub const _SC_NPROCESSORS_ONLN: ::c_int = 15;
1578pub const _SC_STREAM_MAX: ::c_int = 16;
1579pub const _SC_TZNAME_MAX: ::c_int = 17;
1580pub const _SC_AIO_LISTIO_MAX: ::c_int = 18;
1581pub const _SC_AIO_MAX: ::c_int = 19;
041b39d2 1582pub const _SC_AIO_PRIO_DELTA_MAX: ::c_int = 20;
476ff2be 1583pub const _SC_ASYNCHRONOUS_IO: ::c_int = 21;
041b39d2
XL
1584pub const _SC_DELAYTIMER_MAX: ::c_int = 22;
1585pub const _SC_FSYNC: ::c_int = 23;
476ff2be
SL
1586pub const _SC_MAPPED_FILES: ::c_int = 24;
1587pub const _SC_MEMLOCK: ::c_int = 25;
1588pub const _SC_MEMLOCK_RANGE: ::c_int = 26;
1589pub const _SC_MEMORY_PROTECTION: ::c_int = 27;
1590pub const _SC_MESSAGE_PASSING: ::c_int = 28;
041b39d2
XL
1591pub const _SC_MQ_OPEN_MAX: ::c_int = 29;
1592pub const _SC_MQ_PRIO_MAX: ::c_int = 30;
476ff2be
SL
1593pub const _SC_PRIORITIZED_IO: ::c_int = 31;
1594pub const _SC_PRIORITY_SCHEDULING: ::c_int = 32;
1595pub const _SC_REALTIME_SIGNALS: ::c_int = 33;
476ff2be 1596pub const _SC_RTSIG_MAX: ::c_int = 34;
041b39d2 1597pub const _SC_SEMAPHORES: ::c_int = 35;
476ff2be
SL
1598pub const _SC_SEM_NSEMS_MAX: ::c_int = 36;
1599pub const _SC_SEM_VALUE_MAX: ::c_int = 37;
041b39d2 1600pub const _SC_SHARED_MEMORY_OBJECTS: ::c_int = 38;
476ff2be 1601pub const _SC_SIGQUEUE_MAX: ::c_int = 39;
041b39d2
XL
1602pub const _SC_SIGRT_MIN: ::c_int = 40;
1603pub const _SC_SIGRT_MAX: ::c_int = 41;
1604pub const _SC_SYNCHRONIZED_IO: ::c_int = 42;
1605pub const _SC_TIMERS: ::c_int = 43;
476ff2be 1606pub const _SC_TIMER_MAX: ::c_int = 44;
041b39d2
XL
1607pub const _SC_2_C_BIND: ::c_int = 45;
1608pub const _SC_2_C_DEV: ::c_int = 46;
1609pub const _SC_2_C_VERSION: ::c_int = 47;
1610pub const _SC_2_FORT_DEV: ::c_int = 48;
1611pub const _SC_2_FORT_RUN: ::c_int = 49;
1612pub const _SC_2_LOCALEDEF: ::c_int = 50;
1613pub const _SC_2_SW_DEV: ::c_int = 51;
1614pub const _SC_2_UPE: ::c_int = 52;
1615pub const _SC_2_VERSION: ::c_int = 53;
1616pub const _SC_BC_BASE_MAX: ::c_int = 54;
1617pub const _SC_BC_DIM_MAX: ::c_int = 55;
1618pub const _SC_BC_SCALE_MAX: ::c_int = 56;
1619pub const _SC_BC_STRING_MAX: ::c_int = 57;
1620pub const _SC_COLL_WEIGHTS_MAX: ::c_int = 58;
1621pub const _SC_EXPR_NEST_MAX: ::c_int = 59;
1622pub const _SC_LINE_MAX: ::c_int = 60;
1623pub const _SC_RE_DUP_MAX: ::c_int = 61;
1624pub const _SC_XOPEN_CRYPT: ::c_int = 62;
1625pub const _SC_XOPEN_ENH_I18N: ::c_int = 63;
1626pub const _SC_XOPEN_SHM: ::c_int = 64;
1627pub const _SC_2_CHAR_TERM: ::c_int = 66;
1628pub const _SC_XOPEN_XCU_VERSION: ::c_int = 67;
1629pub const _SC_ATEXIT_MAX: ::c_int = 76;
1630pub const _SC_IOV_MAX: ::c_int = 77;
1631pub const _SC_XOPEN_UNIX: ::c_int = 78;
1632pub const _SC_T_IOV_MAX: ::c_int = 79;
1633pub const _SC_PHYS_PAGES: ::c_int = 500;
1634pub const _SC_AVPHYS_PAGES: ::c_int = 501;
1635pub const _SC_COHER_BLKSZ: ::c_int = 503;
1636pub const _SC_SPLIT_CACHE: ::c_int = 504;
1637pub const _SC_ICACHE_SZ: ::c_int = 505;
1638pub const _SC_DCACHE_SZ: ::c_int = 506;
1639pub const _SC_ICACHE_LINESZ: ::c_int = 507;
1640pub const _SC_DCACHE_LINESZ: ::c_int = 508;
1641pub const _SC_ICACHE_BLKSZ: ::c_int = 509;
1642pub const _SC_DCACHE_BLKSZ: ::c_int = 510;
1643pub const _SC_DCACHE_TBLKSZ: ::c_int = 511;
1644pub const _SC_ICACHE_ASSOC: ::c_int = 512;
1645pub const _SC_DCACHE_ASSOC: ::c_int = 513;
1646pub const _SC_MAXPID: ::c_int = 514;
1647pub const _SC_STACK_PROT: ::c_int = 515;
1648pub const _SC_NPROCESSORS_MAX: ::c_int = 516;
1649pub const _SC_CPUID_MAX: ::c_int = 517;
1650pub const _SC_EPHID_MAX: ::c_int = 518;
1651pub const _SC_THREAD_DESTRUCTOR_ITERATIONS: ::c_int = 568;
1652pub const _SC_GETGR_R_SIZE_MAX: ::c_int = 569;
1653pub const _SC_GETPW_R_SIZE_MAX: ::c_int = 570;
1654pub const _SC_LOGIN_NAME_MAX: ::c_int = 571;
1655pub const _SC_THREAD_KEYS_MAX: ::c_int = 572;
1656pub const _SC_THREAD_STACK_MIN: ::c_int = 573;
1657pub const _SC_THREAD_THREADS_MAX: ::c_int = 574;
1658pub const _SC_TTY_NAME_MAX: ::c_int = 575;
1659pub const _SC_THREADS: ::c_int = 576;
1660pub const _SC_THREAD_ATTR_STACKADDR: ::c_int = 577;
1661pub const _SC_THREAD_ATTR_STACKSIZE: ::c_int = 578;
1662pub const _SC_THREAD_PRIORITY_SCHEDULING: ::c_int = 579;
1663pub const _SC_THREAD_PRIO_INHERIT: ::c_int = 580;
1664pub const _SC_THREAD_PRIO_PROTECT: ::c_int = 581;
1665pub const _SC_THREAD_PROCESS_SHARED: ::c_int = 582;
1666pub const _SC_THREAD_SAFE_FUNCTIONS: ::c_int = 583;
1667pub const _SC_XOPEN_LEGACY: ::c_int = 717;
1668pub const _SC_XOPEN_REALTIME: ::c_int = 718;
1669pub const _SC_XOPEN_REALTIME_THREADS: ::c_int = 719;
1670pub const _SC_XBS5_ILP32_OFF32: ::c_int = 720;
1671pub const _SC_XBS5_ILP32_OFFBIG: ::c_int = 721;
1672pub const _SC_XBS5_LP64_OFF64: ::c_int = 722;
1673pub const _SC_XBS5_LPBIG_OFFBIG: ::c_int = 723;
1674pub const _SC_2_PBS: ::c_int = 724;
1675pub const _SC_2_PBS_ACCOUNTING: ::c_int = 725;
1676pub const _SC_2_PBS_CHECKPOINT: ::c_int = 726;
1677pub const _SC_2_PBS_LOCATE: ::c_int = 728;
1678pub const _SC_2_PBS_MESSAGE: ::c_int = 729;
1679pub const _SC_2_PBS_TRACK: ::c_int = 730;
1680pub const _SC_ADVISORY_INFO: ::c_int = 731;
1681pub const _SC_BARRIERS: ::c_int = 732;
1682pub const _SC_CLOCK_SELECTION: ::c_int = 733;
1683pub const _SC_CPUTIME: ::c_int = 734;
1684pub const _SC_HOST_NAME_MAX: ::c_int = 735;
1685pub const _SC_MONOTONIC_CLOCK: ::c_int = 736;
1686pub const _SC_READER_WRITER_LOCKS: ::c_int = 737;
1687pub const _SC_REGEXP: ::c_int = 738;
1688pub const _SC_SHELL: ::c_int = 739;
1689pub const _SC_SPAWN: ::c_int = 740;
1690pub const _SC_SPIN_LOCKS: ::c_int = 741;
1691pub const _SC_SPORADIC_SERVER: ::c_int = 742;
1692pub const _SC_SS_REPL_MAX: ::c_int = 743;
1693pub const _SC_SYMLOOP_MAX: ::c_int = 744;
1694pub const _SC_THREAD_CPUTIME: ::c_int = 745;
1695pub const _SC_THREAD_SPORADIC_SERVER: ::c_int = 746;
1696pub const _SC_TIMEOUTS: ::c_int = 747;
1697pub const _SC_TRACE: ::c_int = 748;
1698pub const _SC_TRACE_EVENT_FILTER: ::c_int = 749;
1699pub const _SC_TRACE_EVENT_NAME_MAX: ::c_int = 750;
1700pub const _SC_TRACE_INHERIT: ::c_int = 751;
1701pub const _SC_TRACE_LOG: ::c_int = 752;
1702pub const _SC_TRACE_NAME_MAX: ::c_int = 753;
1703pub const _SC_TRACE_SYS_MAX: ::c_int = 754;
1704pub const _SC_TRACE_USER_EVENT_MAX: ::c_int = 755;
1705pub const _SC_TYPED_MEMORY_OBJECTS: ::c_int = 756;
1706pub const _SC_V6_ILP32_OFF32: ::c_int = 757;
1707pub const _SC_V6_ILP32_OFFBIG: ::c_int = 758;
1708pub const _SC_V6_LP64_OFF64: ::c_int = 759;
1709pub const _SC_V6_LPBIG_OFFBIG: ::c_int = 760;
1710pub const _SC_XOPEN_STREAMS: ::c_int = 761;
1711pub const _SC_IPV6: ::c_int = 762;
1712pub const _SC_RAW_SOCKETS: ::c_int = 763;
476ff2be
SL
1713
1714pub const _MUTEX_MAGIC: u16 = 0x4d58; // MX
e74abb32
XL
1715pub const _COND_MAGIC: u16 = 0x4356; // CV
1716pub const _RWL_MAGIC: u16 = 0x5257; // RW
476ff2be
SL
1717
1718pub const NCCS: usize = 19;
1719
1720pub const LOG_CRON: ::c_int = 15 << 3;
1721
1722pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
1723 __pthread_mutex_flag1: 0,
1724 __pthread_mutex_flag2: 0,
1725 __pthread_mutex_ceiling: 0,
1726 __pthread_mutex_type: PTHREAD_PROCESS_PRIVATE,
1727 __pthread_mutex_magic: _MUTEX_MAGIC,
1728 __pthread_mutex_lock: 0,
e74abb32 1729 __pthread_mutex_data: 0,
476ff2be
SL
1730};
1731pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t {
1732 __pthread_cond_flag: [0; 4],
1733 __pthread_cond_type: PTHREAD_PROCESS_PRIVATE,
1734 __pthread_cond_magic: _COND_MAGIC,
e74abb32 1735 __pthread_cond_data: 0,
476ff2be
SL
1736};
1737pub const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = pthread_rwlock_t {
1738 __pthread_rwlock_readers: 0,
1739 __pthread_rwlock_type: PTHREAD_PROCESS_PRIVATE,
1740 __pthread_rwlock_magic: _RWL_MAGIC,
1741 __pthread_rwlock_mutex: PTHREAD_MUTEX_INITIALIZER,
1742 __pthread_rwlock_readercv: PTHREAD_COND_INITIALIZER,
e74abb32 1743 __pthread_rwlock_writercv: PTHREAD_COND_INITIALIZER,
476ff2be
SL
1744};
1745pub const PTHREAD_MUTEX_NORMAL: ::c_int = 0;
1746pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 2;
1747pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 4;
1748pub const PTHREAD_MUTEX_DEFAULT: ::c_int = PTHREAD_MUTEX_NORMAL;
1749
1750pub const RTLD_NEXT: *mut ::c_void = -1isize as *mut ::c_void;
1751pub const RTLD_DEFAULT: *mut ::c_void = -2isize as *mut ::c_void;
1752pub const RTLD_SELF: *mut ::c_void = -3isize as *mut ::c_void;
1753pub const RTLD_PROBE: *mut ::c_void = -4isize as *mut ::c_void;
1754
abe05a73 1755pub const RTLD_LAZY: ::c_int = 0x1;
476ff2be
SL
1756pub const RTLD_NOW: ::c_int = 0x2;
1757pub const RTLD_NOLOAD: ::c_int = 0x4;
1758pub const RTLD_GLOBAL: ::c_int = 0x100;
1759pub const RTLD_LOCAL: ::c_int = 0x0;
1760pub const RTLD_PARENT: ::c_int = 0x200;
1761pub const RTLD_GROUP: ::c_int = 0x400;
1762pub const RTLD_WORLD: ::c_int = 0x800;
1763pub const RTLD_NODELETE: ::c_int = 0x1000;
1764pub const RTLD_FIRST: ::c_int = 0x2000;
1765pub const RTLD_CONFGEN: ::c_int = 0x10000;
1766
7cac9316
XL
1767pub const PORT_SOURCE_AIO: ::c_int = 1;
1768pub const PORT_SOURCE_TIMER: ::c_int = 2;
1769pub const PORT_SOURCE_USER: ::c_int = 3;
1770pub const PORT_SOURCE_FD: ::c_int = 4;
1771pub const PORT_SOURCE_ALERT: ::c_int = 5;
1772pub const PORT_SOURCE_MQ: ::c_int = 6;
1773pub const PORT_SOURCE_FILE: ::c_int = 7;
7cac9316 1774
dfeec247
XL
1775pub const NONROOT_USR: ::c_short = 2;
1776pub const _UTX_USERSIZE: usize = 32;
1777pub const _UTX_LINESIZE: usize = 32;
1778pub const _UTX_PADSIZE: usize = 5;
1779pub const _UTX_IDSIZE: usize = 4;
1780pub const _UTX_HOSTSIZE: usize = 257;
1781pub const EMPTY: ::c_short = 0;
1782pub const RUN_LVL: ::c_short = 1;
1783pub const BOOT_TIME: ::c_short = 2;
1784pub const OLD_TIME: ::c_short = 3;
1785pub const NEW_TIME: ::c_short = 4;
1786pub const INIT_PROCESS: ::c_short = 5;
1787pub const LOGIN_PROCESS: ::c_short = 6;
1788pub const USER_PROCESS: ::c_short = 7;
1789pub const DEAD_PROCESS: ::c_short = 8;
1790pub const ACCOUNTING: ::c_short = 9;
1791pub const DOWN_TIME: ::c_short = 10;
1792
532ac7d7
XL
1793const _TIOC: ::c_int = ('T' as i32) << 8;
1794const tIOC: ::c_int = ('t' as i32) << 8;
ba9703b0
XL
1795pub const TCGETA: ::c_int = _TIOC | 1;
1796pub const TCSETA: ::c_int = _TIOC | 2;
1797pub const TCSETAW: ::c_int = _TIOC | 3;
1798pub const TCSETAF: ::c_int = _TIOC | 4;
1799pub const TCSBRK: ::c_int = _TIOC | 5;
1800pub const TCXONC: ::c_int = _TIOC | 6;
1801pub const TCFLSH: ::c_int = _TIOC | 7;
1802pub const TCDSET: ::c_int = _TIOC | 32;
1803pub const TCGETS: ::c_int = _TIOC | 13;
1804pub const TCSETS: ::c_int = _TIOC | 14;
1805pub const TCSANOW: ::c_int = _TIOC | 14;
1806pub const TCSETSW: ::c_int = _TIOC | 15;
1807pub const TCSADRAIN: ::c_int = _TIOC | 15;
1808pub const TCSETSF: ::c_int = _TIOC | 16;
1809pub const TCSAFLUSH: ::c_int = _TIOC | 16;
532ac7d7
XL
1810pub const TCIFLUSH: ::c_int = 0;
1811pub const TCOFLUSH: ::c_int = 1;
1812pub const TCIOFLUSH: ::c_int = 2;
1813pub const TCOOFF: ::c_int = 0;
1814pub const TCOON: ::c_int = 1;
1815pub const TCIOFF: ::c_int = 2;
1816pub const TCION: ::c_int = 3;
1817pub const TIOC: ::c_int = _TIOC;
ba9703b0
XL
1818pub const TIOCKBON: ::c_int = _TIOC | 8;
1819pub const TIOCKBOF: ::c_int = _TIOC | 9;
1820pub const TIOCGWINSZ: ::c_int = _TIOC | 104;
1821pub const TIOCSWINSZ: ::c_int = _TIOC | 103;
1822pub const TIOCGSOFTCAR: ::c_int = _TIOC | 105;
1823pub const TIOCSSOFTCAR: ::c_int = _TIOC | 106;
ba9703b0
XL
1824pub const TIOCGPPS: ::c_int = _TIOC | 125;
1825pub const TIOCSPPS: ::c_int = _TIOC | 126;
1826pub const TIOCGPPSEV: ::c_int = _TIOC | 127;
1827pub const TIOCGETD: ::c_int = tIOC | 0;
1828pub const TIOCSETD: ::c_int = tIOC | 1;
1829pub const TIOCHPCL: ::c_int = tIOC | 2;
1830pub const TIOCGETP: ::c_int = tIOC | 8;
1831pub const TIOCSETP: ::c_int = tIOC | 9;
1832pub const TIOCSETN: ::c_int = tIOC | 10;
1833pub const TIOCEXCL: ::c_int = tIOC | 13;
1834pub const TIOCNXCL: ::c_int = tIOC | 14;
1835pub const TIOCFLUSH: ::c_int = tIOC | 16;
1836pub const TIOCSETC: ::c_int = tIOC | 17;
1837pub const TIOCGETC: ::c_int = tIOC | 18;
1838pub const TIOCLBIS: ::c_int = tIOC | 127;
1839pub const TIOCLBIC: ::c_int = tIOC | 126;
1840pub const TIOCLSET: ::c_int = tIOC | 125;
1841pub const TIOCLGET: ::c_int = tIOC | 124;
1842pub const TIOCSBRK: ::c_int = tIOC | 123;
1843pub const TIOCCBRK: ::c_int = tIOC | 122;
1844pub const TIOCSDTR: ::c_int = tIOC | 121;
1845pub const TIOCCDTR: ::c_int = tIOC | 120;
1846pub const TIOCSLTC: ::c_int = tIOC | 117;
1847pub const TIOCGLTC: ::c_int = tIOC | 116;
1848pub const TIOCOUTQ: ::c_int = tIOC | 115;
1849pub const TIOCNOTTY: ::c_int = tIOC | 113;
1850pub const TIOCSCTTY: ::c_int = tIOC | 132;
1851pub const TIOCSTOP: ::c_int = tIOC | 111;
1852pub const TIOCSTART: ::c_int = tIOC | 110;
1853pub const TIOCSILOOP: ::c_int = tIOC | 109;
1854pub const TIOCCILOOP: ::c_int = tIOC | 108;
1855pub const TIOCGPGRP: ::c_int = tIOC | 20;
1856pub const TIOCSPGRP: ::c_int = tIOC | 21;
1857pub const TIOCGSID: ::c_int = tIOC | 22;
1858pub const TIOCSTI: ::c_int = tIOC | 23;
1859pub const TIOCMSET: ::c_int = tIOC | 26;
1860pub const TIOCMBIS: ::c_int = tIOC | 27;
1861pub const TIOCMBIC: ::c_int = tIOC | 28;
1862pub const TIOCMGET: ::c_int = tIOC | 29;
1863pub const TIOCREMOTE: ::c_int = tIOC | 30;
1864pub const TIOCSIGNAL: ::c_int = tIOC | 31;
69743fb6 1865
2c00a5a8
XL
1866pub const EPOLLIN: ::c_int = 0x1;
1867pub const EPOLLPRI: ::c_int = 0x2;
1868pub const EPOLLOUT: ::c_int = 0x4;
1869pub const EPOLLRDNORM: ::c_int = 0x40;
1870pub const EPOLLRDBAND: ::c_int = 0x80;
1871pub const EPOLLWRNORM: ::c_int = 0x100;
1872pub const EPOLLWRBAND: ::c_int = 0x200;
1873pub const EPOLLMSG: ::c_int = 0x400;
1874pub const EPOLLERR: ::c_int = 0x8;
1875pub const EPOLLHUP: ::c_int = 0x10;
1876pub const EPOLLET: ::c_int = 0x80000000;
1877pub const EPOLLRDHUP: ::c_int = 0x2000;
2c00a5a8 1878pub const EPOLLONESHOT: ::c_int = 0x40000000;
3dfed10e
XL
1879pub const EPOLLWAKEUP: ::c_int = 0x20000000;
1880pub const EPOLLEXCLUSIVE: ::c_int = 0x10000000;
b7449926 1881pub const EPOLL_CLOEXEC: ::c_int = 0x80000;
2c00a5a8
XL
1882pub const EPOLL_CTL_ADD: ::c_int = 1;
1883pub const EPOLL_CTL_MOD: ::c_int = 3;
1884pub const EPOLL_CTL_DEL: ::c_int = 2;
1885
532ac7d7
XL
1886/* termios */
1887pub const B0: speed_t = 0;
1888pub const B50: speed_t = 1;
1889pub const B75: speed_t = 2;
1890pub const B110: speed_t = 3;
1891pub const B134: speed_t = 4;
1892pub const B150: speed_t = 5;
1893pub const B200: speed_t = 6;
1894pub const B300: speed_t = 7;
1895pub const B600: speed_t = 8;
1896pub const B1200: speed_t = 9;
1897pub const B1800: speed_t = 10;
1898pub const B2400: speed_t = 11;
1899pub const B4800: speed_t = 12;
1900pub const B9600: speed_t = 13;
1901pub const B19200: speed_t = 14;
1902pub const B38400: speed_t = 15;
1903pub const B57600: speed_t = 16;
1904pub const B76800: speed_t = 17;
1905pub const B115200: speed_t = 18;
1906pub const B153600: speed_t = 19;
1907pub const B230400: speed_t = 20;
1908pub const B307200: speed_t = 21;
1909pub const B460800: speed_t = 22;
1910pub const B921600: speed_t = 23;
ba9703b0
XL
1911pub const CSTART: ::tcflag_t = 0o21;
1912pub const CSTOP: ::tcflag_t = 0o23;
1913pub const CSWTCH: ::tcflag_t = 0o32;
532ac7d7
XL
1914pub const CSIZE: ::tcflag_t = 0o000060;
1915pub const CS5: ::tcflag_t = 0;
1916pub const CS6: ::tcflag_t = 0o000020;
1917pub const CS7: ::tcflag_t = 0o000040;
1918pub const CS8: ::tcflag_t = 0o000060;
1919pub const CSTOPB: ::tcflag_t = 0o000100;
1920pub const ECHO: ::tcflag_t = 0o000010;
1921pub const ECHOE: ::tcflag_t = 0o000020;
1922pub const ECHOK: ::tcflag_t = 0o000040;
1923pub const ECHONL: ::tcflag_t = 0o000100;
1924pub const ECHOCTL: ::tcflag_t = 0o001000;
1925pub const ECHOPRT: ::tcflag_t = 0o002000;
1926pub const ECHOKE: ::tcflag_t = 0o004000;
1927pub const EXTPROC: ::tcflag_t = 0o200000;
1928pub const IGNBRK: ::tcflag_t = 0o000001;
1929pub const BRKINT: ::tcflag_t = 0o000002;
1930pub const IGNPAR: ::tcflag_t = 0o000004;
1931pub const PARMRK: ::tcflag_t = 0o000010;
1932pub const INPCK: ::tcflag_t = 0o000020;
1933pub const ISTRIP: ::tcflag_t = 0o000040;
1934pub const INLCR: ::tcflag_t = 0o000100;
1935pub const IGNCR: ::tcflag_t = 0o000200;
1936pub const ICRNL: ::tcflag_t = 0o000400;
1937pub const IXON: ::tcflag_t = 0o002000;
1938pub const IXOFF: ::tcflag_t = 0o010000;
1939pub const IXANY: ::tcflag_t = 0o004000;
1940pub const IMAXBEL: ::tcflag_t = 0o020000;
1941pub const OPOST: ::tcflag_t = 0o000001;
1942pub const ONLCR: ::tcflag_t = 0o000004;
1943pub const OCRNL: ::tcflag_t = 0o000010;
1944pub const ONOCR: ::tcflag_t = 0o000020;
1945pub const ONLRET: ::tcflag_t = 0o000040;
1946pub const CREAD: ::tcflag_t = 0o000200;
1947pub const PARENB: ::tcflag_t = 0o000400;
1948pub const PARODD: ::tcflag_t = 0o001000;
1949pub const HUPCL: ::tcflag_t = 0o002000;
1950pub const CLOCAL: ::tcflag_t = 0o004000;
1951pub const CRTSCTS: ::tcflag_t = 0o20000000000;
1952pub const ISIG: ::tcflag_t = 0o000001;
1953pub const ICANON: ::tcflag_t = 0o000002;
1954pub const IEXTEN: ::tcflag_t = 0o100000;
1955pub const TOSTOP: ::tcflag_t = 0o000400;
1956pub const FLUSHO: ::tcflag_t = 0o020000;
1957pub const PENDIN: ::tcflag_t = 0o040000;
1958pub const NOFLSH: ::tcflag_t = 0o000200;
1959pub const VINTR: usize = 0;
1960pub const VQUIT: usize = 1;
1961pub const VERASE: usize = 2;
1962pub const VKILL: usize = 3;
1963pub const VEOF: usize = 4;
1964pub const VEOL: usize = 5;
1965pub const VEOL2: usize = 6;
1966pub const VMIN: usize = 4;
1967pub const VTIME: usize = 5;
1968pub const VSWTCH: usize = 7;
1969pub const VSTART: usize = 8;
1970pub const VSTOP: usize = 9;
1971pub const VSUSP: usize = 10;
1972pub const VDSUSP: usize = 11;
1973pub const VREPRINT: usize = 12;
1974pub const VDISCARD: usize = 13;
1975pub const VWERASE: usize = 14;
1976pub const VLNEXT: usize = 15;
1977pub const VSTATUS: usize = 16;
1978pub const VERASE2: usize = 17;
1979
3dfed10e
XL
1980// <sys/stropts.h>
1981const STR: ::c_int = (b'S' as ::c_int) << 8;
1982pub const I_NREAD: ::c_int = STR | 0o1;
1983pub const I_PUSH: ::c_int = STR | 0o2;
1984pub const I_POP: ::c_int = STR | 0o3;
1985pub const I_LOOK: ::c_int = STR | 0o4;
1986pub const I_FLUSH: ::c_int = STR | 0o5;
1987pub const I_SRDOPT: ::c_int = STR | 0o6;
1988pub const I_GRDOPT: ::c_int = STR | 0o7;
1989pub const I_STR: ::c_int = STR | 0o10;
1990pub const I_SETSIG: ::c_int = STR | 0o11;
1991pub const I_GETSIG: ::c_int = STR | 0o12;
1992pub const I_FIND: ::c_int = STR | 0o13;
1993pub const I_LINK: ::c_int = STR | 0o14;
1994pub const I_UNLINK: ::c_int = STR | 0o15;
1995pub const I_PEEK: ::c_int = STR | 0o17;
1996pub const I_FDINSERT: ::c_int = STR | 0o20;
1997pub const I_SENDFD: ::c_int = STR | 0o21;
1998pub const I_RECVFD: ::c_int = STR | 0o16;
1999pub const I_SWROPT: ::c_int = STR | 0o23;
2000pub const I_GWROPT: ::c_int = STR | 0o24;
2001pub const I_LIST: ::c_int = STR | 0o25;
2002pub const I_PLINK: ::c_int = STR | 0o26;
2003pub const I_PUNLINK: ::c_int = STR | 0o27;
2004pub const I_ANCHOR: ::c_int = STR | 0o30;
2005pub const I_FLUSHBAND: ::c_int = STR | 0o34;
2006pub const I_CKBAND: ::c_int = STR | 0o35;
2007pub const I_GETBAND: ::c_int = STR | 0o36;
2008pub const I_ATMARK: ::c_int = STR | 0o37;
2009pub const I_SETCLTIME: ::c_int = STR | 0o40;
2010pub const I_GETCLTIME: ::c_int = STR | 0o41;
2011pub const I_CANPUT: ::c_int = STR | 0o42;
2012pub const I_SERROPT: ::c_int = STR | 0o43;
2013pub const I_GERROPT: ::c_int = STR | 0o44;
2014pub const I_ESETSIG: ::c_int = STR | 0o45;
2015pub const I_EGETSIG: ::c_int = STR | 0o46;
2016pub const __I_PUSH_NOCTTY: ::c_int = STR | 0o47;
2017
dfeec247
XL
2018// 3SOCKET flags
2019pub const SOCK_CLOEXEC: ::c_int = 0x080000;
2020pub const SOCK_NONBLOCK: ::c_int = 0x100000;
2021pub const SOCK_NDELAY: ::c_int = 0x200000;
2022
ba9703b0
XL
2023//<sys/timex.h>
2024pub const SCALE_KG: ::c_int = 1 << 6;
2025pub const SCALE_KF: ::c_int = 1 << 16;
2026pub const SCALE_KH: ::c_int = 1 << 2;
2027pub const MAXTC: ::c_int = 1 << 6;
2028pub const SCALE_PHASE: ::c_int = 1 << 22;
2029pub const SCALE_USEC: ::c_int = 1 << 16;
2030pub const SCALE_UPDATE: ::c_int = SCALE_KG * MAXTC;
2031pub const FINEUSEC: ::c_int = 1 << 22;
2032pub const MAXPHASE: ::c_int = 512000;
2033pub const MAXFREQ: ::c_int = 512 * SCALE_USEC;
2034pub const MAXTIME: ::c_int = 200 << PPS_AVG;
2035pub const MINSEC: ::c_int = 16;
2036pub const MAXSEC: ::c_int = 1200;
2037pub const PPS_AVG: ::c_int = 2;
2038pub const PPS_SHIFT: ::c_int = 2;
2039pub const PPS_SHIFTMAX: ::c_int = 8;
2040pub const PPS_VALID: ::c_int = 120;
2041pub const MAXGLITCH: ::c_int = 30;
2042pub const MOD_OFFSET: u32 = 0x0001;
2043pub const MOD_FREQUENCY: u32 = 0x0002;
2044pub const MOD_MAXERROR: u32 = 0x0004;
2045pub const MOD_ESTERROR: u32 = 0x0008;
2046pub const MOD_STATUS: u32 = 0x0010;
2047pub const MOD_TIMECONST: u32 = 0x0020;
2048pub const MOD_CLKB: u32 = 0x4000;
2049pub const MOD_CLKA: u32 = 0x8000;
2050pub const STA_PLL: u32 = 0x0001;
2051pub const STA_PPSFREQ: i32 = 0x0002;
2052pub const STA_PPSTIME: i32 = 0x0004;
2053pub const STA_FLL: i32 = 0x0008;
2054pub const STA_INS: i32 = 0x0010;
2055pub const STA_DEL: i32 = 0x0020;
2056pub const STA_UNSYNC: i32 = 0x0040;
2057pub const STA_FREQHOLD: i32 = 0x0080;
2058pub const STA_PPSSIGNAL: i32 = 0x0100;
2059pub const STA_PPSJITTER: i32 = 0x0200;
2060pub const STA_PPSWANDER: i32 = 0x0400;
2061pub const STA_PPSERROR: i32 = 0x0800;
2062pub const STA_CLOCKERR: i32 = 0x1000;
2063pub const STA_RONLY: i32 = STA_PPSSIGNAL
2064 | STA_PPSJITTER
2065 | STA_PPSWANDER
2066 | STA_PPSERROR
2067 | STA_CLOCKERR;
2068pub const TIME_OK: i32 = 0;
2069pub const TIME_INS: i32 = 1;
2070pub const TIME_DEL: i32 = 2;
2071pub const TIME_OOP: i32 = 3;
2072pub const TIME_WAIT: i32 = 4;
2073pub const TIME_ERROR: i32 = 5;
2074
f035d41b
XL
2075pub const PRIO_PROCESS: ::c_int = 0;
2076pub const PRIO_PGRP: ::c_int = 1;
2077pub const PRIO_USER: ::c_int = 2;
2078
3dfed10e
XL
2079// As per sys/socket.h, header alignment must be 8 bytes on SPARC
2080// and 4 bytes everywhere else:
2081#[cfg(target_arch = "sparc64")]
2082const _CMSG_HDR_ALIGNMENT: usize = 8;
2083#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
2084const _CMSG_HDR_ALIGNMENT: usize = 4;
2085
2086const _CMSG_DATA_ALIGNMENT: usize = ::mem::size_of::<::c_int>();
2087
2088fn _CMSG_HDR_ALIGN(p: usize) -> usize {
2089 (p + _CMSG_HDR_ALIGNMENT - 1) & !(_CMSG_HDR_ALIGNMENT - 1)
2090}
2091
2092fn _CMSG_DATA_ALIGN(p: usize) -> usize {
2093 (p + _CMSG_DATA_ALIGNMENT - 1) & !(_CMSG_DATA_ALIGNMENT - 1)
2094}
2095
476ff2be 2096f! {
3dfed10e
XL
2097 pub fn CMSG_DATA(cmsg: *const ::cmsghdr) -> *mut ::c_uchar {
2098 _CMSG_DATA_ALIGN(cmsg.offset(1) as usize) as *mut ::c_uchar
2099 }
2100
2101 pub fn CMSG_LEN(length: ::c_uint) -> ::c_uint {
2102 _CMSG_DATA_ALIGN(::mem::size_of::<::cmsghdr>()) as ::c_uint + length
2103 }
2104
2105 pub fn CMSG_FIRSTHDR(mhdr: *const ::msghdr) -> *mut ::cmsghdr {
2106 if ((*mhdr).msg_controllen as usize) < ::mem::size_of::<::cmsghdr>() {
2107 0 as *mut ::cmsghdr
2108 } else {
2109 (*mhdr).msg_control as *mut ::cmsghdr
2110 }
2111 }
2112
2113 pub fn CMSG_NXTHDR(mhdr: *const ::msghdr, cmsg: *const ::cmsghdr)
2114 -> *mut ::cmsghdr
2115 {
2116 if cmsg.is_null() {
2117 return ::CMSG_FIRSTHDR(mhdr);
2118 };
2119 let next = _CMSG_HDR_ALIGN(cmsg as usize + (*cmsg).cmsg_len as usize
2120 + ::mem::size_of::<::cmsghdr>());
2121 let max = (*mhdr).msg_control as usize
2122 + (*mhdr).msg_controllen as usize;
2123 if next > max {
2124 0 as *mut ::cmsghdr
2125 } else {
2126 _CMSG_HDR_ALIGN(cmsg as usize + (*cmsg).cmsg_len as usize)
2127 as *mut ::cmsghdr
2128 }
2129 }
2130
2131 pub fn CMSG_SPACE(length: ::c_uint) -> ::c_uint {
2132 _CMSG_HDR_ALIGN(::mem::size_of::<::cmsghdr>() as usize
2133 + length as usize) as ::c_uint
2134 }
2135
476ff2be 2136 pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> () {
532ac7d7 2137 let bits = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
476ff2be 2138 let fd = fd as usize;
8bb4bdeb 2139 (*set).fds_bits[fd / bits] &= !(1 << (fd % bits));
476ff2be
SL
2140 return
2141 }
2142
2143 pub fn FD_ISSET(fd: ::c_int, set: *mut fd_set) -> bool {
532ac7d7 2144 let bits = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
476ff2be 2145 let fd = fd as usize;
8bb4bdeb 2146 return ((*set).fds_bits[fd / bits] & (1 << (fd % bits))) != 0
476ff2be
SL
2147 }
2148
2149 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () {
532ac7d7 2150 let bits = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
476ff2be 2151 let fd = fd as usize;
8bb4bdeb 2152 (*set).fds_bits[fd / bits] |= 1 << (fd % bits);
476ff2be
SL
2153 return
2154 }
2155
2156 pub fn FD_ZERO(set: *mut fd_set) -> () {
2157 for slot in (*set).fds_bits.iter_mut() {
2158 *slot = 0;
2159 }
2160 }
29967ef6 2161}
476ff2be 2162
29967ef6
XL
2163safe_f! {
2164 pub {const} fn WIFEXITED(status: ::c_int) -> bool {
476ff2be
SL
2165 (status & 0xFF) == 0
2166 }
2167
29967ef6 2168 pub {const} fn WEXITSTATUS(status: ::c_int) -> ::c_int {
476ff2be
SL
2169 (status >> 8) & 0xFF
2170 }
2171
29967ef6 2172 pub {const} fn WTERMSIG(status: ::c_int) -> ::c_int {
476ff2be
SL
2173 status & 0x7F
2174 }
532ac7d7 2175
29967ef6 2176 pub {const} fn WIFCONTINUED(status: ::c_int) -> bool {
532ac7d7
XL
2177 (status & 0xffff) == 0xffff
2178 }
2179
29967ef6 2180 pub {const} fn WSTOPSIG(status: ::c_int) -> ::c_int {
532ac7d7
XL
2181 (status & 0xff00) >> 8
2182 }
2183
29967ef6 2184 pub {const} fn WIFSIGNALED(status: ::c_int) -> bool {
532ac7d7
XL
2185 ((status & 0xff) > 0) && (status & 0xff00 == 0)
2186 }
2187
29967ef6 2188 pub {const} fn WIFSTOPPED(status: ::c_int) -> bool {
532ac7d7
XL
2189 ((status & 0xff) == 0x7f) && ((status & 0xff00) != 0)
2190 }
2191
29967ef6 2192 pub {const} fn WCOREDUMP(status: ::c_int) -> bool {
532ac7d7
XL
2193 (status & 0x80) != 0
2194 }
476ff2be
SL
2195}
2196
e74abb32 2197extern "C" {
416331ca
XL
2198 pub fn getrlimit(resource: ::c_int, rlim: *mut ::rlimit) -> ::c_int;
2199 pub fn setrlimit(resource: ::c_int, rlim: *const ::rlimit) -> ::c_int;
2200
e74abb32
XL
2201 pub fn strerror_r(
2202 errnum: ::c_int,
2203 buf: *mut c_char,
2204 buflen: ::size_t,
2205 ) -> ::c_int;
416331ca 2206
532ac7d7 2207 pub fn sem_destroy(sem: *mut sem_t) -> ::c_int;
e74abb32
XL
2208 pub fn sem_init(
2209 sem: *mut sem_t,
2210 pshared: ::c_int,
2211 value: ::c_uint,
2212 ) -> ::c_int;
532ac7d7 2213
69743fb6 2214 pub fn abs(i: ::c_int) -> ::c_int;
532ac7d7 2215 pub fn acct(filename: *const ::c_char) -> ::c_int;
69743fb6 2216 pub fn atof(s: *const ::c_char) -> ::c_double;
532ac7d7 2217 pub fn dirfd(dirp: *mut ::DIR) -> ::c_int;
69743fb6
XL
2218 pub fn labs(i: ::c_long) -> ::c_long;
2219 pub fn rand() -> ::c_int;
2220 pub fn srand(seed: ::c_uint);
2221
e74abb32 2222 pub fn gettimeofday(tp: *mut ::timeval, tz: *mut ::c_void) -> ::c_int;
dfeec247 2223 pub fn settimeofday(tp: *const ::timeval, tz: *const ::c_void) -> ::c_int;
476ff2be
SL
2224 pub fn getifaddrs(ifap: *mut *mut ::ifaddrs) -> ::c_int;
2225 pub fn freeifaddrs(ifa: *mut ::ifaddrs);
2226
2227 pub fn stack_getbounds(sp: *mut ::stack_t) -> ::c_int;
532ac7d7 2228 pub fn initgroups(name: *const ::c_char, basegid: ::gid_t) -> ::c_int;
e74abb32 2229 pub fn setgroups(ngroups: ::c_int, ptr: *const ::gid_t) -> ::c_int;
476ff2be 2230 pub fn ioctl(fildes: ::c_int, request: ::c_int, ...) -> ::c_int;
e74abb32
XL
2231 pub fn mprotect(
2232 addr: *const ::c_void,
2233 len: ::size_t,
2234 prot: ::c_int,
2235 ) -> ::c_int;
0531ce1d 2236 pub fn ___errno() -> *mut ::c_int;
ea8adc8c
XL
2237 pub fn clock_getres(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
2238 pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
e74abb32
XL
2239 pub fn clock_nanosleep(
2240 clk_id: ::clockid_t,
2241 flags: ::c_int,
2242 rqtp: *const ::timespec,
2243 rmtp: *mut ::timespec,
2244 ) -> ::c_int;
2245 pub fn clock_settime(
2246 clk_id: ::clockid_t,
2247 tp: *const ::timespec,
2248 ) -> ::c_int;
2249 pub fn getnameinfo(
2250 sa: *const ::sockaddr,
2251 salen: ::socklen_t,
2252 host: *mut ::c_char,
2253 hostlen: ::socklen_t,
2254 serv: *mut ::c_char,
2255 sevlen: ::socklen_t,
2256 flags: ::c_int,
2257 ) -> ::c_int;
476ff2be 2258 pub fn setpwent();
ea8adc8c 2259 pub fn endpwent();
476ff2be 2260 pub fn getpwent() -> *mut passwd;
476ff2be 2261 pub fn fdatasync(fd: ::c_int) -> ::c_int;
e74abb32
XL
2262 pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t)
2263 -> *mut ::c_char;
476ff2be
SL
2264 pub fn duplocale(base: ::locale_t) -> ::locale_t;
2265 pub fn freelocale(loc: ::locale_t);
e74abb32
XL
2266 pub fn newlocale(
2267 mask: ::c_int,
2268 locale: *const ::c_char,
2269 base: ::locale_t,
2270 ) -> ::locale_t;
476ff2be
SL
2271 pub fn uselocale(loc: ::locale_t) -> ::locale_t;
2272 pub fn getprogname() -> *const ::c_char;
2273 pub fn setprogname(name: *const ::c_char);
2274 pub fn getloadavg(loadavg: *mut ::c_double, nelem: ::c_int) -> ::c_int;
2275 pub fn getpriority(which: ::c_int, who: ::c_int) -> ::c_int;
e74abb32
XL
2276 pub fn setpriority(which: ::c_int, who: ::c_int, prio: ::c_int)
2277 -> ::c_int;
2278
2279 pub fn mknodat(
2280 dirfd: ::c_int,
2281 pathname: *const ::c_char,
2282 mode: ::mode_t,
2283 dev: dev_t,
2284 ) -> ::c_int;
2285 pub fn mkfifoat(
2286 dirfd: ::c_int,
2287 pathname: *const ::c_char,
2288 mode: ::mode_t,
2289 ) -> ::c_int;
532ac7d7 2290 pub fn sethostname(name: *const ::c_char, len: ::c_int) -> ::c_int;
476ff2be
SL
2291 pub fn if_nameindex() -> *mut if_nameindex;
2292 pub fn if_freenameindex(ptr: *mut if_nameindex);
e74abb32
XL
2293 pub fn pthread_create(
2294 native: *mut ::pthread_t,
2295 attr: *const ::pthread_attr_t,
2296 f: extern "C" fn(*mut ::c_void) -> *mut ::c_void,
2297 value: *mut ::c_void,
2298 ) -> ::c_int;
1b1a35ee
XL
2299 pub fn pthread_attr_getstack(
2300 attr: *const ::pthread_attr_t,
2301 stackaddr: *mut *mut ::c_void,
2302 stacksize: *mut ::size_t,
2303 ) -> ::c_int;
e74abb32
XL
2304 pub fn pthread_condattr_getclock(
2305 attr: *const pthread_condattr_t,
2306 clock_id: *mut clockid_t,
2307 ) -> ::c_int;
2308 pub fn pthread_condattr_setclock(
2309 attr: *mut pthread_condattr_t,
2310 clock_id: ::clockid_t,
2311 ) -> ::c_int;
2312 pub fn sem_timedwait(
2313 sem: *mut sem_t,
2314 abstime: *const ::timespec,
2315 ) -> ::c_int;
2316 pub fn sem_getvalue(sem: *mut sem_t, sval: *mut ::c_int) -> ::c_int;
2317 pub fn pthread_mutex_timedlock(
2318 lock: *mut pthread_mutex_t,
2319 abstime: *const ::timespec,
2320 ) -> ::c_int;
2321 pub fn waitid(
2322 idtype: idtype_t,
2323 id: id_t,
2324 infop: *mut ::siginfo_t,
2325 options: ::c_int,
2326 ) -> ::c_int;
2327
ba9703b0 2328 #[cfg_attr(target_os = "illumos", link_name = "_glob_ext")]
e74abb32
XL
2329 pub fn glob(
2330 pattern: *const ::c_char,
2331 flags: ::c_int,
2332 errfunc: ::Option<
2333 extern "C" fn(epath: *const ::c_char, errno: ::c_int) -> ::c_int,
2334 >,
2335 pglob: *mut ::glob_t,
2336 ) -> ::c_int;
8bb4bdeb 2337
ba9703b0 2338 #[cfg_attr(target_os = "illumos", link_name = "_globfree_ext")]
8bb4bdeb
XL
2339 pub fn globfree(pglob: *mut ::glob_t);
2340
e74abb32
XL
2341 pub fn posix_madvise(
2342 addr: *mut ::c_void,
2343 len: ::size_t,
2344 advice: ::c_int,
2345 ) -> ::c_int;
2346
dfeec247
XL
2347 pub fn shmat(
2348 shmid: ::c_int,
2349 shmaddr: *const ::c_void,
2350 shmflg: ::c_int,
2351 ) -> *mut ::c_void;
2352
2353 pub fn shmctl(
2354 shmid: ::c_int,
2355 cmd: ::c_int,
2356 buf: *mut ::shmid_ds,
2357 ) -> ::c_int;
2358
2359 pub fn shmdt(shmaddr: *const ::c_void) -> ::c_int;
2360
2361 pub fn shmget(key: key_t, size: ::size_t, shmflg: ::c_int) -> ::c_int;
2362
e74abb32
XL
2363 pub fn shm_open(
2364 name: *const ::c_char,
2365 oflag: ::c_int,
2366 mode: ::mode_t,
2367 ) -> ::c_int;
8bb4bdeb
XL
2368 pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
2369
2370 pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
2371
2372 pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
e74abb32
XL
2373 pub fn madvise(
2374 addr: *mut ::c_void,
2375 len: ::size_t,
2376 advice: ::c_int,
2377 ) -> ::c_int;
2378
2379 pub fn msync(
2380 addr: *mut ::c_void,
2381 len: ::size_t,
2382 flags: ::c_int,
2383 ) -> ::c_int;
8bb4bdeb 2384
ea8adc8c
XL
2385 pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
2386
e74abb32
XL
2387 pub fn recvfrom(
2388 socket: ::c_int,
2389 buf: *mut ::c_void,
2390 len: ::size_t,
2391 flags: ::c_int,
2392 addr: *mut ::sockaddr,
2393 addrlen: *mut ::socklen_t,
2394 ) -> ::ssize_t;
8bb4bdeb 2395 pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
e74abb32
XL
2396 pub fn futimesat(
2397 fd: ::c_int,
2398 path: *const ::c_char,
2399 times: *const ::timeval,
2400 ) -> ::c_int;
dfeec247 2401 pub fn futimens(dirfd: ::c_int, times: *const ::timespec) -> ::c_int;
e74abb32
XL
2402 pub fn utimensat(
2403 dirfd: ::c_int,
2404 path: *const ::c_char,
2405 times: *const ::timespec,
2406 flag: ::c_int,
2407 ) -> ::c_int;
8bb4bdeb
XL
2408 pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
2409
532ac7d7 2410 #[cfg_attr(target_os = "illumos", link_name = "__xnet_bind")]
e74abb32
XL
2411 pub fn bind(
2412 socket: ::c_int,
2413 address: *const ::sockaddr,
2414 address_len: ::socklen_t,
2415 ) -> ::c_int;
2416
2417 pub fn writev(
2418 fd: ::c_int,
2419 iov: *const ::iovec,
2420 iovcnt: ::c_int,
2421 ) -> ::ssize_t;
2422 pub fn readv(
2423 fd: ::c_int,
2424 iov: *const ::iovec,
2425 iovcnt: ::c_int,
2426 ) -> ::ssize_t;
8bb4bdeb 2427
532ac7d7 2428 #[cfg_attr(target_os = "illumos", link_name = "__xnet_sendmsg")]
e74abb32
XL
2429 pub fn sendmsg(
2430 fd: ::c_int,
2431 msg: *const ::msghdr,
2432 flags: ::c_int,
2433 ) -> ::ssize_t;
532ac7d7 2434 #[cfg_attr(target_os = "illumos", link_name = "__xnet_recvmsg")]
e74abb32
XL
2435 pub fn recvmsg(
2436 fd: ::c_int,
2437 msg: *mut ::msghdr,
2438 flags: ::c_int,
2439 ) -> ::ssize_t;
ba9703b0
XL
2440 pub fn accept4(
2441 fd: ::c_int,
2442 address: *mut sockaddr,
2443 address_len: *mut socklen_t,
29967ef6 2444 flags: ::c_int,
ba9703b0 2445 ) -> ::c_int;
7cac9316 2446
416331ca
XL
2447 pub fn mq_open(name: *const ::c_char, oflag: ::c_int, ...) -> ::mqd_t;
2448 pub fn mq_close(mqd: ::mqd_t) -> ::c_int;
2449 pub fn mq_unlink(name: *const ::c_char) -> ::c_int;
e74abb32
XL
2450 pub fn mq_receive(
2451 mqd: ::mqd_t,
2452 msg_ptr: *mut ::c_char,
2453 msg_len: ::size_t,
2454 msg_prio: *mut ::c_uint,
2455 ) -> ::ssize_t;
2456 pub fn mq_timedreceive(
2457 mqd: ::mqd_t,
2458 msg_ptr: *mut ::c_char,
2459 msg_len: ::size_t,
2460 msg_prio: *mut ::c_uint,
2461 abs_timeout: *const ::timespec,
2462 ) -> ::ssize_t;
2463 pub fn mq_send(
2464 mqd: ::mqd_t,
2465 msg_ptr: *const ::c_char,
2466 msg_len: ::size_t,
2467 msg_prio: ::c_uint,
2468 ) -> ::c_int;
2469 pub fn mq_timedsend(
2470 mqd: ::mqd_t,
2471 msg_ptr: *const ::c_char,
2472 msg_len: ::size_t,
2473 msg_prio: ::c_uint,
2474 abs_timeout: *const ::timespec,
2475 ) -> ::c_int;
416331ca 2476 pub fn mq_getattr(mqd: ::mqd_t, attr: *mut ::mq_attr) -> ::c_int;
e74abb32
XL
2477 pub fn mq_setattr(
2478 mqd: ::mqd_t,
2479 newattr: *const ::mq_attr,
2480 oldattr: *mut ::mq_attr,
2481 ) -> ::c_int;
7cac9316 2482 pub fn port_create() -> ::c_int;
e74abb32
XL
2483 pub fn port_associate(
2484 port: ::c_int,
2485 source: ::c_int,
2486 object: ::uintptr_t,
2487 events: ::c_int,
2488 user: *mut ::c_void,
2489 ) -> ::c_int;
2490 pub fn port_dissociate(
2491 port: ::c_int,
2492 source: ::c_int,
2493 object: ::uintptr_t,
2494 ) -> ::c_int;
2495 pub fn port_get(
2496 port: ::c_int,
2497 pe: *mut port_event,
2498 timeout: *mut ::timespec,
2499 ) -> ::c_int;
2500 pub fn port_getn(
2501 port: ::c_int,
2502 pe_list: *mut port_event,
2503 max: ::c_uint,
2504 nget: *mut ::c_uint,
2505 timeout: *mut ::timespec,
2506 ) -> ::c_int;
ba9703b0
XL
2507 pub fn port_send(
2508 port: ::c_int,
2509 events: ::c_int,
2510 user: *mut ::c_void,
2511 ) -> ::c_int;
2512 pub fn port_sendn(
2513 port_list: *mut ::c_int,
2514 error_list: *mut ::c_int,
2515 nent: ::c_uint,
2516 events: ::c_int,
2517 user: *mut ::c_void,
e74abb32
XL
2518 ) -> ::c_int;
2519 #[cfg_attr(
2520 any(target_os = "solaris", target_os = "illumos"),
2521 link_name = "__posix_getgrgid_r"
2522 )]
2523 pub fn getgrgid_r(
2524 gid: ::gid_t,
2525 grp: *mut ::group,
2526 buf: *mut ::c_char,
2527 buflen: ::size_t,
2528 result: *mut *mut ::group,
2529 ) -> ::c_int;
2530 pub fn sigaltstack(ss: *const stack_t, oss: *mut stack_t) -> ::c_int;
ea8adc8c
XL
2531 pub fn sem_close(sem: *mut sem_t) -> ::c_int;
2532 pub fn getdtablesize() -> ::c_int;
2c00a5a8 2533
532ac7d7
XL
2534 // The epoll functions are actually only present on illumos. However,
2535 // there are things using epoll on illumos (built using the
2536 // x86_64-sun-solaris target) which would break until the illumos target is
2537 // present in rustc.
e74abb32
XL
2538 pub fn epoll_pwait(
2539 epfd: ::c_int,
2540 events: *mut ::epoll_event,
2541 maxevents: ::c_int,
2542 timeout: ::c_int,
2543 sigmask: *const ::sigset_t,
2544 ) -> ::c_int;
532ac7d7 2545
2c00a5a8
XL
2546 pub fn epoll_create(size: ::c_int) -> ::c_int;
2547 pub fn epoll_create1(flags: ::c_int) -> ::c_int;
e74abb32
XL
2548 pub fn epoll_wait(
2549 epfd: ::c_int,
2550 events: *mut ::epoll_event,
2551 maxevents: ::c_int,
2552 timeout: ::c_int,
2553 ) -> ::c_int;
2554 pub fn epoll_ctl(
2555 epfd: ::c_int,
2556 op: ::c_int,
2557 fd: ::c_int,
2558 event: *mut ::epoll_event,
2559 ) -> ::c_int;
2560
2561 #[cfg_attr(
2562 any(target_os = "solaris", target_os = "illumos"),
2563 link_name = "__posix_getgrnam_r"
2564 )]
2565 pub fn getgrnam_r(
2566 name: *const ::c_char,
2567 grp: *mut ::group,
2568 buf: *mut ::c_char,
2569 buflen: ::size_t,
2570 result: *mut *mut ::group,
2571 ) -> ::c_int;
2572 pub fn pthread_sigmask(
2573 how: ::c_int,
2574 set: *const sigset_t,
2575 oldset: *mut sigset_t,
2576 ) -> ::c_int;
ea8adc8c
XL
2577 pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t;
2578 pub fn getgrnam(name: *const ::c_char) -> *mut ::group;
2579 pub fn pthread_kill(thread: ::pthread_t, sig: ::c_int) -> ::c_int;
2580 pub fn sem_unlink(name: *const ::c_char) -> ::c_int;
2581 pub fn daemon(nochdir: ::c_int, noclose: ::c_int) -> ::c_int;
e74abb32
XL
2582 #[cfg_attr(
2583 any(target_os = "solaris", target_os = "illumos"),
2584 link_name = "__posix_getpwnam_r"
2585 )]
2586 pub fn getpwnam_r(
2587 name: *const ::c_char,
2588 pwd: *mut passwd,
2589 buf: *mut ::c_char,
2590 buflen: ::size_t,
2591 result: *mut *mut passwd,
2592 ) -> ::c_int;
2593 #[cfg_attr(
2594 any(target_os = "solaris", target_os = "illumos"),
2595 link_name = "__posix_getpwuid_r"
2596 )]
2597 pub fn getpwuid_r(
2598 uid: ::uid_t,
2599 pwd: *mut passwd,
2600 buf: *mut ::c_char,
2601 buflen: ::size_t,
2602 result: *mut *mut passwd,
2603 ) -> ::c_int;
2604 #[cfg_attr(
2605 any(target_os = "solaris", target_os = "illumos"),
2606 link_name = "__posix_getpwent_r"
2607 )]
2608 pub fn getpwent_r(
2609 pwd: *mut passwd,
2610 buf: *mut ::c_char,
2611 buflen: ::size_t,
2612 result: *mut *mut passwd,
2613 ) -> ::c_int;
2614 #[cfg_attr(
2615 any(target_os = "solaris", target_os = "illumos"),
2616 link_name = "__posix_getgrent_r"
2617 )]
2618 pub fn getgrent_r(
2619 grp: *mut ::group,
2620 buf: *mut ::c_char,
2621 buflen: ::size_t,
2622 result: *mut *mut ::group,
2623 ) -> ::c_int;
2624 #[cfg_attr(
2625 any(target_os = "solaris", target_os = "illumos"),
2626 link_name = "__posix_sigwait"
2627 )]
2628 pub fn sigwait(set: *const sigset_t, sig: *mut ::c_int) -> ::c_int;
2629 pub fn pthread_atfork(
2630 prepare: ::Option<unsafe extern "C" fn()>,
2631 parent: ::Option<unsafe extern "C" fn()>,
2632 child: ::Option<unsafe extern "C" fn()>,
2633 ) -> ::c_int;
ea8adc8c 2634 pub fn getgrgid(gid: ::gid_t) -> *mut ::group;
532ac7d7
XL
2635 pub fn setgrent();
2636 pub fn endgrent();
2637 pub fn getgrent() -> *mut ::group;
e74abb32 2638 pub fn popen(command: *const c_char, mode: *const c_char) -> *mut ::FILE;
69743fb6
XL
2639
2640 pub fn dup3(src: ::c_int, dst: ::c_int, flags: ::c_int) -> ::c_int;
532ac7d7
XL
2641 pub fn uname(buf: *mut ::utsname) -> ::c_int;
2642 pub fn pipe2(fds: *mut ::c_int, flags: ::c_int) -> ::c_int;
dfeec247
XL
2643
2644 pub fn makeutx(ux: *const utmpx) -> *mut utmpx;
2645 pub fn modutx(ux: *const utmpx) -> *mut utmpx;
2646 pub fn updwtmpx(file: *const ::c_char, ut: *const utmpx) -> ::c_int;
2647 pub fn utmpxname(file: *const ::c_char) -> ::c_int;
2648 pub fn getutxent() -> *mut utmpx;
2649 pub fn getutxid(ut: *const utmpx) -> *mut utmpx;
2650 pub fn getutxline(ut: *const utmpx) -> *mut utmpx;
2651 pub fn pututxline(ut: *const utmpx) -> *mut utmpx;
2652 pub fn setutxent();
2653 pub fn endutxent();
2654
2655 pub fn endutent();
2656 pub fn getutent() -> *mut utmp;
2657 pub fn getutid(u: *const utmp) -> *mut utmp;
2658 pub fn getutline(u: *const utmp) -> *mut utmp;
2659 pub fn pututline(u: *const utmp) -> *mut utmp;
2660 pub fn setutent();
2661 pub fn utmpname(file: *const ::c_char) -> ::c_int;
2662
2663 pub fn getutmp(ux: *const utmpx, u: *mut utmp);
2664 pub fn getutmpx(u: *const utmp, ux: *mut utmpx);
2665 pub fn updwtmp(file: *const ::c_char, u: *mut utmp);
ba9703b0
XL
2666
2667 pub fn ntp_adjtime(buf: *mut timex) -> ::c_int;
2668 pub fn ntp_gettime(buf: *mut ntptimeval) -> ::c_int;
3dfed10e 2669
5869c6ff
XL
2670 pub fn timer_create(
2671 clock_id: clockid_t,
2672 evp: *mut sigevent,
2673 timerid: *mut timer_t,
2674 ) -> ::c_int;
2675 pub fn timer_delete(timerid: timer_t) -> ::c_int;
2676 pub fn timer_getoverrun(timerid: timer_t) -> ::c_int;
2677 pub fn timer_gettime(timerid: timer_t, value: *mut itimerspec) -> ::c_int;
2678 pub fn timer_settime(
2679 timerid: timer_t,
2680 flags: ::c_int,
2681 value: *const itimerspec,
2682 ovalue: *mut itimerspec,
2683 ) -> ::c_int;
2684
3dfed10e
XL
2685 pub fn ucred_get(pid: ::pid_t) -> *mut ucred_t;
2686 pub fn getpeerucred(fd: ::c_int, ucred: *mut *mut ucred_t) -> ::c_int;
2687
2688 pub fn ucred_free(ucred: *mut ucred_t);
2689
2690 pub fn ucred_geteuid(ucred: *const ucred_t) -> ::uid_t;
2691 pub fn ucred_getruid(ucred: *const ucred_t) -> ::uid_t;
2692 pub fn ucred_getsuid(ucred: *const ucred_t) -> ::uid_t;
2693 pub fn ucred_getegid(ucred: *const ucred_t) -> ::gid_t;
2694 pub fn ucred_getrgid(ucred: *const ucred_t) -> ::gid_t;
2695 pub fn ucred_getsgid(ucred: *const ucred_t) -> ::gid_t;
2696 pub fn ucred_getgroups(
2697 ucred: *const ucred_t,
2698 groups: *mut *const ::gid_t,
2699 ) -> ::c_int;
2700 pub fn ucred_getpid(ucred: *const ucred_t) -> ::pid_t;
2701 pub fn ucred_getprojid(ucred: *const ucred_t) -> projid_t;
2702 pub fn ucred_getzoneid(ucred: *const ucred_t) -> zoneid_t;
29967ef6
XL
2703 pub fn ucred_getpflags(ucred: *const ucred_t, flags: ::c_uint)
2704 -> ::c_uint;
3dfed10e
XL
2705
2706 pub fn ucred_size() -> ::size_t;
476ff2be 2707}
532ac7d7
XL
2708
2709mod compat;
2710pub use self::compat::*;
ba9703b0
XL
2711
2712cfg_if! {
2713 if #[cfg(target_os = "illumos")] {
2714 mod illumos;
2715 pub use self::illumos::*;
2716 } else if #[cfg(target_os = "solaris")] {
2717 mod solaris;
2718 pub use self::solaris::*;
2719 } else {
2720 // Unknown target_os
2721 }
2722}