1 pub type rlim_t = ::uintptr_t;
2 pub type sa_family_t = u8;
3 pub type pthread_key_t = ::c_int;
4 pub type nfds_t = ::c_long;
5 pub type tcflag_t = ::c_uint;
6 pub type speed_t = ::c_uint;
7 pub type c_char = i8;
8 pub type clock_t = i32;
9 pub type clockid_t = i32;
10 pub type suseconds_t = i32;
11 pub type wchar_t = i32;
12 pub type off_t = i64;
13 pub type ino_t = i64;
14 pub type blkcnt_t = i64;
15 pub type blksize_t = i32;
16 pub type dev_t = i32;
17 pub type mode_t = u32;
18 pub type nlink_t = i32;
19 pub type useconds_t = u32;
20 pub type socklen_t = u32;
21 pub type pthread_t = ::uintptr_t;
22 pub type pthread_mutexattr_t = ::uintptr_t;
23 pub type pthread_rwlockattr_t = ::uintptr_t;
24 pub type sigset_t = u64;
25 pub type fsblkcnt_t = i64;
26 pub type fsfilcnt_t = i64;
27 pub type pthread_attr_t = *mut ::c_void;
28 pub type nl_item = ::c_int;
29 pub type id_t = i32;
30 pub type idtype_t = ::c_uint;
31 
32 #[cfg_attr(feature = "extra_traits", derive(Debug))]
33 pub enum timezone {}
34 impl ::Copy for timezone {}
35 impl ::Clone for timezone {
clone(&self) -> timezone36     fn clone(&self) -> timezone { *self }
37 }
38 
39 s! {
40     pub struct in_addr {
41         pub s_addr: ::in_addr_t,
42     }
43 
44     pub struct ip_mreq {
45         pub imr_multiaddr: in_addr,
46         pub imr_interface: in_addr,
47     }
48 
49     pub struct sockaddr {
50         pub sa_len: u8,
51         pub sa_family: sa_family_t,
52         pub sa_data: [::c_char; 30],
53     }
54 
55     pub struct sockaddr_in {
56         pub sin_len: u8,
57         pub sin_family: sa_family_t,
58         pub sin_port: ::in_port_t,
59         pub sin_addr: ::in_addr,
60         pub sin_zero: [u8; 24],
61     }
62 
63     pub struct sockaddr_in6 {
64         pub sin6_len: u8,
65         pub sin6_family: sa_family_t,
66         pub sin6_port: ::in_port_t,
67         pub sin6_flowinfo: u32,
68         pub sin6_addr: ::in6_addr,
69         pub sin6_scope_id: u32,
70     }
71 
72     pub struct addrinfo {
73         pub ai_flags: ::c_int,
74         pub ai_family: ::c_int,
75         pub ai_socktype: ::c_int,
76         pub ai_protocol: ::c_int,
77         pub ai_addrlen: socklen_t,
78         pub ai_canonname: *mut c_char,
79         pub ai_addr: *mut ::sockaddr,
80         pub ai_next: *mut addrinfo,
81     }
82 
83     pub struct fd_set {
84         fds_bits: [c_ulong; FD_SETSIZE / ULONG_SIZE],
85     }
86 
87     pub struct tm {
88         pub tm_sec: ::c_int,
89         pub tm_min: ::c_int,
90         pub tm_hour: ::c_int,
91         pub tm_mday: ::c_int,
92         pub tm_mon: ::c_int,
93         pub tm_year: ::c_int,
94         pub tm_wday: ::c_int,
95         pub tm_yday: ::c_int,
96         pub tm_isdst: ::c_int,
97         pub tm_gmtoff: ::c_long,
98         pub tm_zone: *const ::c_char,
99     }
100 
101     pub struct utsname {
102         pub sysname: [::c_char; 32],
103         pub nodename: [::c_char; 32],
104         pub release: [::c_char; 32],
105         pub version: [::c_char; 32],
106         pub machine: [::c_char; 32],
107     }
108 
109     pub struct lconv {
110         pub decimal_point: *mut ::c_char,
111         pub thousands_sep: *mut ::c_char,
112         pub grouping: *mut ::c_char,
113         pub int_curr_symbol: *mut ::c_char,
114         pub currency_symbol: *mut ::c_char,
115         pub mon_decimal_point: *mut ::c_char,
116         pub mon_thousands_sep: *mut ::c_char,
117         pub mon_grouping: *mut ::c_char,
118         pub positive_sign: *mut ::c_char,
119         pub negative_sign: *mut ::c_char,
120         pub int_frac_digits: ::c_char,
121         pub frac_digits: ::c_char,
122         pub p_cs_precedes: ::c_char,
123         pub p_sep_by_space: ::c_char,
124         pub n_cs_precedes: ::c_char,
125         pub n_sep_by_space: ::c_char,
126         pub p_sign_posn: ::c_char,
127         pub n_sign_posn: ::c_char,
128         pub int_p_cs_precedes: ::c_char,
129         pub int_p_sep_by_space: ::c_char,
130         pub int_n_cs_precedes: ::c_char,
131         pub int_n_sep_by_space: ::c_char,
132         pub int_p_sign_posn: ::c_char,
133         pub int_n_sign_posn: ::c_char,
134     }
135 
136     pub struct msghdr {
137         pub msg_name: *mut ::c_void,
138         pub msg_namelen: ::socklen_t,
139         pub msg_iov: *mut ::iovec,
140         pub msg_iovlen: ::c_int,
141         pub msg_control: *mut ::c_void,
142         pub msg_controllen: ::socklen_t,
143         pub msg_flags: ::c_int,
144     }
145 
146     pub struct cmsghdr {
147         pub cmsg_len: ::size_t,
148         pub cmsg_level: ::c_int,
149         pub cmsg_type: ::c_int,
150     }
151 
152     pub struct Dl_info {
153         pub dli_fname: *const ::c_char,
154         pub dli_fbase: *mut ::c_void,
155         pub dli_sname: *const ::c_char,
156         pub dli_saddr: *mut ::c_void,
157     }
158 
159     pub struct termios {
160         pub c_iflag: ::tcflag_t,
161         pub c_oflag: ::tcflag_t,
162         pub c_cflag: ::tcflag_t,
163         pub c_lflag: ::tcflag_t,
164         pub c_line:  ::c_char,
165         pub c_ispeed: ::speed_t,
166         pub c_ospeed: ::speed_t,
167         pub c_cc: [::cc_t; ::NCCS],
168     }
169 
170     pub struct flock {
171         pub l_type: ::c_short,
172         pub l_whence: ::c_short,
173         pub l_start: ::off_t,
174         pub l_len: ::off_t,
175         pub l_pid: ::pid_t,
176     }
177 
178     pub struct stat {
179         pub st_dev: dev_t,
180         pub st_ino: ino_t,
181         pub st_mode: mode_t,
182         pub st_nlink: nlink_t,
183         pub st_uid: ::uid_t,
184         pub st_gid: ::gid_t,
185         pub st_size: off_t,
186         pub st_rdev: dev_t,
187         pub st_blksize: blksize_t,
188         pub st_atime: time_t,
189         pub st_atime_nsec: c_long,
190         pub st_mtime: time_t,
191         pub st_mtime_nsec: c_long,
192         pub st_ctime: time_t,
193         pub st_ctime_nsec: c_long,
194         pub st_crtime: time_t,
195         pub st_crtime_nsec: c_long,
196         pub st_type: u32,
197         pub st_blocks: blkcnt_t,
198     }
199 
200     pub struct glob_t {
201         pub gl_pathc: ::size_t,
202         __unused1: ::size_t,
203         pub gl_offs: ::size_t,
204         __unused2: ::size_t,
205         pub gl_pathv: *mut *mut c_char,
206 
207         __unused3: *mut ::c_void,
208         __unused4: *mut ::c_void,
209         __unused5: *mut ::c_void,
210         __unused6: *mut ::c_void,
211         __unused7: *mut ::c_void,
212         __unused8: *mut ::c_void,
213     }
214 
215     pub struct pthread_mutex_t {
216         flags: u32,
217         lock: i32,
218         unused: i32,
219         owner: i32,
220         owner_count: i32,
221     }
222 
223     pub struct pthread_cond_t {
224         flags: u32,
225         unused: i32,
226         mutex: *mut ::c_void,
227         waiter_count: i32,
228         lock: i32,
229     }
230 
231     pub struct pthread_rwlock_t {
232         flags: u32,
233         owner: i32,
234         lock_sem: i32,      // this is actually a union
235         lock_count: i32,
236         reader_count: i32,
237         writer_count: i32,
238         waiters: [*mut ::c_void; 2],
239     }
240 
241     pub struct passwd {
242         pub pw_name: *mut ::c_char,
243         pub pw_passwd: *mut ::c_char,
244         pub pw_uid: ::uid_t,
245         pub pw_gid: ::gid_t,
246         pub pw_dir: *mut ::c_char,
247         pub pw_shell: *mut ::c_char,
248         pub pw_gecos: *mut ::c_char,
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_flag: ::c_ulong,
262         pub f_namemax: ::c_ulong,
263     }
264 
265     pub struct stack_t {
266         pub ss_sp: *mut ::c_void,
267         pub ss_size: ::size_t,
268         pub ss_flags: ::c_int,
269     }
270 
271     pub struct siginfo_t {
272         pub si_signo: ::c_int,
273         pub si_code: ::c_int,
274         pub si_errno: ::c_int,
275         pub si_pid: ::pid_t,
276         pub si_uid: ::uid_t,
277         pub si_addr: *mut ::c_void,
278         pub si_status: ::c_int,
279         pub si_band: c_long,
280         pub sigval: *mut ::c_void,
281     }
282 
283     pub struct sigaction {
284         pub sa_sigaction: ::sighandler_t,
285         pub sa_mask: ::sigset_t,
286         pub sa_flags: ::c_int,
287         sa_userdata: *mut ::c_void,
288     }
289 
290     pub struct sigevent {
291         pub sigev_notify: ::c_int,
292         pub sigev_signo: ::c_int,
293         pub sigev_value: ::sigval,
294         __unused1: *mut ::c_void, // actually a function pointer
295         pub sigev_notify_attributes: *mut ::pthread_attr_t,
296     }
297 
298     pub struct sem_t {
299         pub se_type: i32,
300         pub se_named_id: i32, // this is actually a union
301         pub se_unnamed: i32,
302         pub se_padding: [i32; 4],
303     }
304 
305     pub struct pthread_condattr_t {
306         pub process_shared: bool,
307         pub clock_id: i32,
308     }
309 }
310 
311 s_no_extra_traits! {
312     #[allow(missing_debug_implementations)]
313     pub struct sockaddr_un {
314         pub sun_len: u8,
315         pub sun_family: sa_family_t,
316         pub sun_path: [::c_char; 126]
317     }
318     #[allow(missing_debug_implementations)]
319     pub struct sockaddr_storage {
320         pub ss_len: u8,
321         pub ss_family: sa_family_t,
322         __ss_pad1: [u8; 6],
323         __ss_pad2: u64,
324         __ss_pad3: [u8; 112],
325     }
326     #[allow(missing_debug_implementations)]
327     pub struct dirent {
328         pub d_dev: dev_t,
329         pub d_pdev: dev_t,
330         pub d_ino: ino_t,
331         pub d_pino: i64,
332         pub d_reclen: ::c_ushort,
333         pub d_name: [::c_char; 1024], // Max length is _POSIX_PATH_MAX
334     }
335 }
336 
337 // intentionally not public, only used for fd_set
338 cfg_if! {
339     if #[cfg(target_pointer_width = "32")] {
340         const ULONG_SIZE: usize = 32;
341     } else if #[cfg(target_pointer_width = "64")] {
342         const ULONG_SIZE: usize = 64;
343     } else {
344         // Unknown target_pointer_width
345     }
346 }
347 
348 pub const EXIT_FAILURE: ::c_int = 1;
349 pub const EXIT_SUCCESS: ::c_int = 0;
350 pub const RAND_MAX: ::c_int = 2147483647;
351 pub const EOF: ::c_int = -1;
352 pub const SEEK_SET: ::c_int = 0;
353 pub const SEEK_CUR: ::c_int = 1;
354 pub const SEEK_END: ::c_int = 2;
355 pub const _IOFBF: ::c_int = 0;
356 pub const _IONBF: ::c_int = 2;
357 pub const _IOLBF: ::c_int = 1;
358 
359 pub const F_DUPFD: ::c_int = 0x0001;
360 pub const F_GETFD: ::c_int = 0x0002;
361 pub const F_SETFD: ::c_int = 0x0004;
362 pub const F_GETFL: ::c_int = 0x0008;
363 pub const F_SETFL: ::c_int = 0x0010;
364 pub const F_GETLK: ::c_int = 0x0020;
365 pub const F_SETLK: ::c_int = 0x0080;
366 pub const F_SETLKW: ::c_int = 0x0100;
367 pub const F_DUPFD_CLOEXEC: ::c_int = 0x0200;
368 
369 pub const F_RDLCK: ::c_int = 0x0040;
370 pub const F_UNLCK: ::c_int = 0x0200;
371 pub const F_WRLCK: ::c_int = 0x0400;
372 
373 pub const AT_FDCWD: ::c_int = -1;
374 pub const AT_SYMLINK_NOFOLLOW: ::c_int = 0x01;
375 pub const AT_SYMLINK_FOLLOW: ::c_int = 0x02;
376 pub const AT_REMOVEDIR: ::c_int = 0x04;
377 pub const AT_EACCESS: ::c_int = 0x08;
378 
379 pub const POLLIN: ::c_short = 0x0001;
380 pub const POLLOUT: ::c_short = 0x0002;
381 pub const POLLRDNORM: ::c_short = POLLIN;
382 pub const POLLWRNORM: ::c_short = POLLOUT;
383 pub const POLLRDBAND: ::c_short = 0x0008;
384 pub const POLLWRBAND: ::c_short = 0x0010;
385 pub const POLLPRI: ::c_short = 0x0020;
386 pub const POLLERR: ::c_short = 0x0004;
387 pub const POLLHUP: ::c_short = 0x0080;
388 pub const POLLNVAL: ::c_short = 0x1000;
389 
390 pub const PTHREAD_CREATE_JOINABLE: ::c_int = 0;
391 pub const PTHREAD_CREATE_DETACHED: ::c_int = 1;
392 
393 pub const CLOCK_REALTIME: ::c_int = -1;
394 pub const CLOCK_MONOTONIC: ::c_int = 0;
395 
396 pub const RLIMIT_CORE: ::c_int = 0;
397 pub const RLIMIT_CPU: ::c_int = 1;
398 pub const RLIMIT_DATA: ::c_int = 2;
399 pub const RLIMIT_FSIZE: ::c_int = 3;
400 pub const RLIMIT_NOFILE: ::c_int = 4;
401 pub const RLIMIT_STACK: ::c_int = 5;
402 pub const RLIMIT_AS: ::c_int = 6;
403 // Haiku specific
404 pub const RLIMIT_NOVMON: ::c_int = 7;
405 pub const RLIMIT_NLIMITS: ::c_int = 8;
406 
407 pub const RUSAGE_SELF: ::c_int = 0;
408 
409 pub const RTLD_LAZY: ::c_int = 0;
410 
411 pub const NCCS: usize = 11;
412 
413 pub const O_RDONLY: ::c_int = 0x0000;
414 pub const O_WRONLY: ::c_int = 0x0001;
415 pub const O_RDWR: ::c_int = 0x0002;
416 pub const O_ACCMODE: ::c_int = 0x0003;
417 
418 pub const O_EXCL: ::c_int = 0x0100;
419 pub const O_CREAT: ::c_int = 0x0200;
420 pub const O_TRUNC: ::c_int = 0x0400;
421 pub const O_NOCTTY: ::c_int = 0x1000;
422 pub const O_NOTRAVERSE: ::c_int = 0x2000;
423 
424 pub const O_CLOEXEC: ::c_int = 0x00000040;
425 pub const O_NONBLOCK: ::c_int = 0x00000080;
426 pub const O_APPEND: ::c_int = 0x00000800;
427 pub const O_SYNC: ::c_int = 0x00010000;
428 pub const O_RSYNC: ::c_int = 0x00020000;
429 pub const O_DSYNC: ::c_int = 0x00040000;
430 pub const O_NOFOLLOW: ::c_int = 0x00080000;
431 pub const O_NOCACHE: ::c_int = 0x00100000;
432 pub const O_DIRECTORY: ::c_int = 0x00200000;
433 
434 pub const S_IFIFO: ::mode_t = 61440;
435 pub const S_IFCHR: ::mode_t = 49152;
436 pub const S_IFBLK: ::mode_t = 24576;
437 pub const S_IFDIR: ::mode_t = 16384;
438 pub const S_IFREG: ::mode_t = 32768;
439 pub const S_IFLNK: ::mode_t = 40960;
440 pub const S_IFSOCK: ::mode_t = 49152;
441 pub const S_IFMT: ::mode_t = 61440;
442 pub const S_IRWXU: ::mode_t = 448;
443 pub const S_IXUSR: ::mode_t = 64;
444 pub const S_IWUSR: ::mode_t = 128;
445 pub const S_IRUSR: ::mode_t = 256;
446 pub const S_IRWXG: ::mode_t = 70;
447 pub const S_IXGRP: ::mode_t = 10;
448 pub const S_IWGRP: ::mode_t = 20;
449 pub const S_IRGRP: ::mode_t = 40;
450 pub const S_IRWXO: ::mode_t = 7;
451 pub const S_IXOTH: ::mode_t = 1;
452 pub const S_IWOTH: ::mode_t = 2;
453 pub const S_IROTH: ::mode_t = 4;
454 pub const F_OK: ::c_int = 0;
455 pub const R_OK: ::c_int = 4;
456 pub const W_OK: ::c_int = 2;
457 pub const X_OK: ::c_int = 1;
458 pub const STDIN_FILENO: ::c_int = 0;
459 pub const STDOUT_FILENO: ::c_int = 1;
460 pub const STDERR_FILENO: ::c_int = 2;
461 
462 pub const SIGHUP: ::c_int = 1;
463 pub const SIGINT: ::c_int = 2;
464 pub const SIGQUIT: ::c_int = 3;
465 pub const SIGILL: ::c_int = 4;
466 pub const SIGCHLD: ::c_int = 5;
467 pub const SIGABRT: ::c_int = 6;
468 pub const SIGPIPE: ::c_int = 7;
469 pub const SIGFPE: ::c_int = 8;
470 pub const SIGKILL: ::c_int = 9;
471 pub const SIGSTOP: ::c_int = 10;
472 pub const SIGSEGV: ::c_int = 11;
473 pub const SIGCONT: ::c_int = 12;
474 pub const SIGTSTP: ::c_int = 13;
475 pub const SIGALRM: ::c_int = 14;
476 pub const SIGTERM: ::c_int = 15;
477 pub const SIGTTIN: ::c_int = 16;
478 pub const SIGTTOU: ::c_int = 17;
479 pub const SIGUSR1: ::c_int = 18;
480 pub const SIGUSR2: ::c_int = 19;
481 pub const SIGWINCH: ::c_int = 20;
482 pub const SIGKILLTHR: ::c_int = 21;
483 pub const SIGTRAP: ::c_int = 22;
484 pub const SIGPOLL: ::c_int = 23;
485 pub const SIGPROF: ::c_int = 24;
486 pub const SIGSYS: ::c_int = 25;
487 pub const SIGURG: ::c_int = 26;
488 pub const SIGVTALRM: ::c_int = 27;
489 pub const SIGXCPU: ::c_int = 28;
490 pub const SIGXFSZ: ::c_int = 29;
491 pub const SIGBUS: ::c_int = 30;
492 
493 pub const SIG_BLOCK: ::c_int = 1;
494 pub const SIG_UNBLOCK: ::c_int = 2;
495 pub const SIG_SETMASK: ::c_int = 3;
496 
497 pub const SIGEV_NONE: ::c_int = 0;
498 pub const SIGEV_SIGNAL: ::c_int = 1;
499 pub const SIGEV_THREAD: ::c_int = 2;
500 
501 pub const EAI_AGAIN: ::c_int = 2;
502 pub const EAI_BADFLAGS: ::c_int = 3;
503 pub const EAI_FAIL: ::c_int = 4;
504 pub const EAI_FAMILY: ::c_int = 5;
505 pub const EAI_MEMORY: ::c_int = 6;
506 pub const EAI_NODATA: ::c_int = 7;
507 pub const EAI_NONAME: ::c_int = 8;
508 pub const EAI_SERVICE: ::c_int = 9;
509 pub const EAI_SOCKTYPE: ::c_int = 10;
510 pub const EAI_SYSTEM: ::c_int = 11;
511 pub const EAI_OVERFLOW: ::c_int = 14;
512 
513 pub const PROT_NONE: ::c_int = 0;
514 pub const PROT_READ: ::c_int = 1;
515 pub const PROT_WRITE: ::c_int = 2;
516 pub const PROT_EXEC: ::c_int = 4;
517 
518 pub const LC_ALL: ::c_int = 0;
519 pub const LC_COLLATE: ::c_int = 1;
520 pub const LC_CTYPE: ::c_int = 2;
521 pub const LC_MONETARY: ::c_int = 3;
522 pub const LC_NUMERIC: ::c_int = 4;
523 pub const LC_TIME: ::c_int = 5;
524 pub const LC_MESSAGES: ::c_int = 6;
525 
526 // TODO: Haiku does not have MAP_FILE, but libstd/os.rs requires it
527 pub const MAP_FILE: ::c_int = 0x00;
528 pub const MAP_SHARED: ::c_int = 0x01;
529 pub const MAP_PRIVATE: ::c_int = 0x02;
530 pub const MAP_FIXED: ::c_int = 0x04;
531 pub const MAP_ANONYMOUS: ::c_int = 0x08;
532 pub const MAP_ANON: ::c_int = MAP_ANONYMOUS;
533 
534 pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void;
535 
536 pub const MS_ASYNC: ::c_int = 0x01;
537 pub const MS_INVALIDATE: ::c_int = 0x04;
538 pub const MS_SYNC: ::c_int = 0x02;
539 
540 pub const E2BIG : ::c_int = -2147454975;
541 pub const ECHILD : ::c_int = -2147454974;
542 pub const EDEADLK : ::c_int = -2147454973;
543 pub const EFBIG : ::c_int = -2147454972;
544 pub const EMLINK : ::c_int = -2147454971;
545 pub const ENFILE : ::c_int = -2147454970;
546 pub const ENODEV : ::c_int = -2147454969;
547 pub const ENOLCK : ::c_int = -2147454968;
548 pub const ENOSYS : ::c_int = -2147454967;
549 pub const ENOTTY : ::c_int = -2147454966;
550 pub const ENXIO : ::c_int = -2147454965;
551 pub const ESPIPE : ::c_int = -2147454964;
552 pub const ESRCH : ::c_int = -2147454963;
553 pub const EFPOS : ::c_int = -2147457962;
554 pub const ESIGPARM : ::c_int = -2147457961;
555 pub const EDOM : ::c_int = -2147454960;
556 pub const ERANGE : ::c_int = -2147454959;
557 pub const EPROTOTYPE : ::c_int = -2147454958;
558 pub const EPROTONOSUPPORT : ::c_int = -2147454957;
559 pub const EPFNOSUPPORT : ::c_int = -2147454956;
560 pub const EAFNOSUPPORT : ::c_int = -2147454955;
561 pub const EADDRINUSE : ::c_int = -2147454954;
562 pub const EADDRNOTAVAIL : ::c_int = -2147454953;
563 pub const ENETDOWN : ::c_int = -2147454952;
564 pub const ENETUNREACH : ::c_int = -2147454951;
565 pub const ENETRESET : ::c_int = -2147454950;
566 pub const ECONNABORTED : ::c_int = -2147454949;
567 pub const ECONNRESET : ::c_int = -2147454948;
568 pub const EISCONN : ::c_int = -2147454947;
569 pub const ENOTCONN : ::c_int = -2147454946;
570 pub const ESHUTDOWN : ::c_int = -2147454945;
571 pub const ECONNREFUSED : ::c_int = -2147454944;
572 pub const EHOSTUNREACH : ::c_int = -2147454943;
573 pub const ENOPROTOOPT : ::c_int = -2147454942;
574 pub const ENOBUFS : ::c_int = -2147454941;
575 pub const EINPROGRESS : ::c_int = -2147454940;
576 pub const EALREADY : ::c_int = -2147454939;
577 pub const EILSEQ : ::c_int = -2147454938;
578 pub const ENOMSG : ::c_int = -2147454937;
579 pub const ESTALE : ::c_int = -2147454936;
580 pub const EOVERFLOW : ::c_int = -2147454935;
581 pub const EMSGSIZE : ::c_int = -2147454934;
582 pub const EOPNOTSUPP : ::c_int = -2147454933;
583 pub const ENOTSOCK : ::c_int = -2147454932;
584 pub const EHOSTDOWN : ::c_int = -2147454931;
585 pub const EBADMSG : ::c_int = -2147454930;
586 pub const ECANCELED : ::c_int = -2147454929;
587 pub const EDESTADDRREQ : ::c_int = -2147454928;
588 pub const EDQUOT : ::c_int = -2147454927;
589 pub const EIDRM : ::c_int = -2147454926;
590 pub const EMULTIHOP : ::c_int = -2147454925;
591 pub const ENODATA : ::c_int = -2147454924;
592 pub const ENOLINK : ::c_int = -2147454923;
593 pub const ENOSR : ::c_int = -2147454922;
594 pub const ENOSTR : ::c_int = -2147454921;
595 pub const ENOTSUP : ::c_int = -2147454920;
596 pub const EPROTO : ::c_int = -2147454919;
597 pub const ETIME : ::c_int = -2147454918;
598 pub const ETXTBSY : ::c_int = -2147454917;
599 pub const ENOATTR : ::c_int = -2147454916;
600 
601 // INT_MIN
602 pub const ENOMEM : ::c_int = -2147454976;
603 
604 // POSIX errors that can be mapped to BeOS error codes
605 pub const EACCES : ::c_int = -2147483646;
606 pub const EINTR : ::c_int = -2147483638;
607 pub const EIO : ::c_int = -2147483647;
608 pub const EBUSY : ::c_int = -2147483634;
609 pub const EFAULT : ::c_int = -2147478783;
610 pub const ETIMEDOUT : ::c_int = -2147483639;
611 pub const EAGAIN : ::c_int = -2147483637;
612 pub const EWOULDBLOCK : ::c_int = -2147483637;
613 pub const EBADF : ::c_int = -2147459072;
614 pub const EEXIST : ::c_int = -2147459070;
615 pub const EINVAL : ::c_int = -2147483643;
616 pub const ENAMETOOLONG : ::c_int = -2147459068;
617 pub const ENOENT : ::c_int = -2147459069;
618 pub const EPERM : ::c_int = -2147483633;
619 pub const ENOTDIR : ::c_int = -2147459067;
620 pub const EISDIR : ::c_int = -2147459063;
621 pub const ENOTEMPTY : ::c_int = -2147459066;
622 pub const ENOSPC : ::c_int = -2147459065;
623 pub const EROFS : ::c_int = -2147459064;
624 pub const EMFILE : ::c_int = -2147459062;
625 pub const EXDEV : ::c_int = -2147459061;
626 pub const ELOOP : ::c_int = -2147459060;
627 pub const ENOEXEC : ::c_int = -2147478782;
628 pub const EPIPE : ::c_int = -2147459059;
629 
630 pub const IPPROTO_RAW: ::c_int = 255;
631 
632 // These are prefixed with POSIX_ on Haiku
633 pub const MADV_NORMAL: ::c_int = 1;
634 pub const MADV_SEQUENTIAL: ::c_int = 2;
635 pub const MADV_RANDOM: ::c_int = 3;
636 pub const MADV_WILLNEED: ::c_int = 4;
637 pub const MADV_DONTNEED: ::c_int = 5;
638 
639 // https://github.com/haiku/haiku/blob/master/headers/posix/net/if.h#L80
640 pub const IFF_UP: ::c_int = 0x0001;
641 pub const IFF_BROADCAST: ::c_int = 0x0002; // valid broadcast address
642 pub const IFF_LOOPBACK: ::c_int = 0x0008;
643 pub const IFF_POINTOPOINT: ::c_int = 0x0010; // point-to-point link
644 pub const IFF_NOARP: ::c_int = 0x0040; // no address resolution
645 pub const IFF_AUTOUP: ::c_int = 0x0080; // auto dial
646 pub const IFF_PROMISC: ::c_int = 0x0100; // receive all packets
647 pub const IFF_ALLMULTI: ::c_int = 0x0200; // receive all multicast packets
648 pub const IFF_SIMPLEX: ::c_int = 0x0800; // doesn't receive own transmissions
649 pub const IFF_LINK: ::c_int = 0x1000; // has link
650 pub const IFF_AUTO_CONFIGURED: ::c_int = 0x2000;
651 pub const IFF_CONFIGURING: ::c_int = 0x4000;
652 pub const IFF_MULTICAST: ::c_int = 0x8000; // supports multicast
653 
654 pub const AF_UNSEC: ::c_int = 0;
655 pub const AF_INET: ::c_int = 1;
656 pub const AF_APPLETALK: ::c_int = 2;
657 pub const AF_ROUTE: ::c_int = 3;
658 pub const AF_LINK: ::c_int = 4;
659 pub const AF_INET6: ::c_int = 5;
660 pub const AF_DLI: ::c_int = 6;
661 pub const AF_IPX: ::c_int = 7;
662 pub const AF_NOTIFY: ::c_int = 8;
663 pub const AF_LOCAL: ::c_int = 9;
664 pub const AF_UNIX: ::c_int = AF_LOCAL;
665 pub const AF_BLUETOOTH: ::c_int = 10;
666 pub const AF_MAX: ::c_int = 11;
667 
668 pub const IP_OPTIONS: ::c_int = 1;
669 pub const IP_HDRINCL: ::c_int = 2;
670 pub const IP_TOS: ::c_int = 3;
671 pub const IP_TTL: ::c_int = 4;
672 pub const IP_RECVOPTS: ::c_int = 5;
673 pub const IP_RECVRETOPTS: ::c_int = 6;
674 pub const IP_RECVDSTADDR: ::c_int = 7;
675 pub const IP_RETOPTS: ::c_int = 8;
676 pub const IP_MULTICAST_IF: ::c_int = 9;
677 pub const IP_MULTICAST_TTL: ::c_int = 10;
678 pub const IP_MULTICAST_LOOP: ::c_int = 11;
679 pub const IP_ADD_MEMBERSHIP: ::c_int = 12;
680 pub const IP_DROP_MEMBERSHIP: ::c_int = 13;
681 pub const IP_BLOCK_SOURCE: ::c_int = 14;
682 pub const IP_UNBLOCK_SOURCE: ::c_int = 15;
683 pub const IP_ADD_SOURCE_MEMBERSHIP: ::c_int = 16;
684 pub const IP_DROP_SOURCE_MEMBERSHIP: ::c_int = 17;
685 
686 pub const TCP_NODELAY: ::c_int = 0x01;
687 pub const TCP_MAXSEG: ::c_int = 0x02;
688 pub const TCP_NOPUSH: ::c_int = 0x04;
689 pub const TCP_NOOPT: ::c_int = 0x08;
690 
691 pub const IPV6_MULTICAST_IF: ::c_int = 24;
692 pub const IPV6_MULTICAST_HOPS: ::c_int = 25;
693 pub const IPV6_MULTICAST_LOOP: ::c_int = 26;
694 pub const IPV6_UNICAST_HOPS: ::c_int = 27;
695 pub const IPV6_JOIN_GROUP: ::c_int = 28;
696 pub const IPV6_LEAVE_GROUP: ::c_int = 29;
697 pub const IPV6_V6ONLY: ::c_int = 30;
698 pub const IPV6_PKTINFO: ::c_int = 31;
699 pub const IPV6_RECVPKTINFO: ::c_int = 32;
700 pub const IPV6_HOPLIMIT: ::c_int = 33;
701 pub const IPV6_REVCHOPLIMIT: ::c_int = 34;
702 pub const IPV6_HOPOPTS: ::c_int = 35;
703 pub const IPV6_DSTOPTS: ::c_int = 36;
704 pub const IPV6_RTHDR: ::c_int = 37;
705 
706 pub const MSG_OOB: ::c_int = 0x0001;
707 pub const MSG_PEEK: ::c_int = 0x0002;
708 pub const MSG_DONTROUTE: ::c_int = 0x0004;
709 pub const MSG_EOR: ::c_int = 0x0008;
710 pub const MSG_TRUNC: ::c_int = 0x0010;
711 pub const MSG_CTRUNC: ::c_int = 0x0020;
712 pub const MSG_WAITALL: ::c_int = 0x0040;
713 pub const MSG_DONTWAIT: ::c_int = 0x0080;
714 pub const MSG_BCAST: ::c_int = 0x0100;
715 pub const MSG_MCAST: ::c_int = 0x0200;
716 pub const MSG_EOF: ::c_int = 0x0400;
717 pub const MSG_NOSIGNAL: ::c_int = 0x0800;
718 
719 pub const SHUT_RD: ::c_int = 0;
720 pub const SHUT_WR: ::c_int = 1;
721 pub const SHUT_RDWR: ::c_int = 2;
722 
723 pub const LOCK_SH: ::c_int = 0x01;
724 pub const LOCK_EX: ::c_int = 0x02;
725 pub const LOCK_NB: ::c_int = 0x04;
726 pub const LOCK_UN: ::c_int = 0x08;
727 
728 pub const SIGSTKSZ: ::size_t = 16384;
729 
730 pub const PATH_MAX: ::c_int = 1024;
731 
732 pub const SA_NOCLDSTOP: ::c_int = 0x01;
733 pub const SA_NOCLDWAIT: ::c_int = 0x02;
734 pub const SA_RESETHAND: ::c_int = 0x04;
735 pub const SA_NODEFER: ::c_int = 0x08;
736 pub const SA_RESTART: ::c_int = 0x10;
737 pub const SA_ONSTACK: ::c_int = 0x20;
738 pub const SA_SIGINFO: ::c_int = 0x40;
739 pub const SA_NOMASK: ::c_int = SA_NODEFER;
740 pub const SA_STACK: ::c_int = SA_ONSTACK;
741 pub const SA_ONESHOT: ::c_int = SA_RESETHAND;
742 
743 pub const FD_SETSIZE: usize = 1024;
744 
745 pub const RTLD_LOCAL: ::c_int = 0x0;
746 pub const RTLD_NOW: ::c_int = 0x1;
747 pub const RTLD_GLOBAL: ::c_int = 0x2;
748 pub const RTLD_DEFAULT: *mut ::c_void = 0isize as *mut ::c_void;
749 
750 pub const BUFSIZ: ::c_uint = 8192;
751 pub const FILENAME_MAX: ::c_uint = 256;
752 pub const FOPEN_MAX: ::c_uint = 128;
753 pub const L_tmpnam: ::c_uint = 512;
754 pub const TMP_MAX: ::c_uint = 32768;
755 
756 pub const _PC_CHOWN_RESTRICTED: ::c_int = 1;
757 pub const _PC_MAX_CANON: ::c_int = 2;
758 pub const _PC_MAX_INPUT: ::c_int = 3;
759 pub const _PC_NAME_MAX: ::c_int = 4;
760 pub const _PC_NO_TRUNC: ::c_int = 5;
761 pub const _PC_PATH_MAX: ::c_int = 6;
762 pub const _PC_PIPE_BUF: ::c_int = 7;
763 pub const _PC_VDISABLE: ::c_int = 8;
764 pub const _PC_LINK_MAX: ::c_int = 25;
765 pub const _PC_SYNC_IO: ::c_int = 26;
766 pub const _PC_ASYNC_IO: ::c_int = 27;
767 pub const _PC_PRIO_IO: ::c_int = 28;
768 pub const _PC_SOCK_MAXBUF: ::c_int = 29;
769 pub const _PC_FILESIZEBITS: ::c_int = 30;
770 pub const _PC_REC_INCR_XFER_SIZE: ::c_int = 31;
771 pub const _PC_REC_MAX_XFER_SIZE: ::c_int = 32;
772 pub const _PC_REC_MIN_XFER_SIZE: ::c_int = 33;
773 pub const _PC_REC_XFER_ALIGN: ::c_int = 34;
774 pub const _PC_ALLOC_SIZE_MIN: ::c_int = 35;
775 pub const _PC_SYMLINK_MAX: ::c_int = 36;
776 pub const _PC_2_SYMLINKS: ::c_int = 37;
777 pub const _PC_XATTR_EXISTS: ::c_int = 38;
778 pub const _PC_XATTR_ENABLED: ::c_int = 39;
779 
780 pub const FIONBIO: ::c_int = 0xbe000000;
781 
782 pub const _SC_ARG_MAX : ::c_int = 15;
783 pub const _SC_CHILD_MAX : ::c_int = 16;
784 pub const _SC_CLK_TCK : ::c_int = 17;
785 pub const _SC_JOB_CONTROL : ::c_int = 18;
786 pub const _SC_NGROUPS_MAX : ::c_int = 19;
787 pub const _SC_OPEN_MAX : ::c_int = 20;
788 pub const _SC_SAVED_IDS : ::c_int = 21;
789 pub const _SC_STREAM_MAX : ::c_int = 22;
790 pub const _SC_TZNAME_MAX : ::c_int = 23;
791 pub const _SC_VERSION : ::c_int = 24;
792 pub const _SC_GETGR_R_SIZE_MAX : ::c_int = 25;
793 pub const _SC_GETPW_R_SIZE_MAX : ::c_int = 26;
794 pub const _SC_PAGESIZE : ::c_int = 27;
795 pub const _SC_PAGE_SIZE : ::c_int = 27;
796 pub const _SC_SEM_NSEMS_MAX : ::c_int = 28;
797 pub const _SC_SEM_VALUE_MAX : ::c_int = 29;
798 pub const _SC_SEMAPHORES : ::c_int = 30;
799 pub const _SC_THREADS : ::c_int = 31;
800 pub const _SC_IOV_MAX : ::c_int = 32;
801 pub const _SC_UIO_MAXIOV : ::c_int = 32;
802 pub const _SC_NPROCESSORS_CONF : ::c_int = 34;
803 pub const _SC_NPROCESSORS_ONLN : ::c_int = 35;
804 pub const _SC_ATEXIT_MAX : ::c_int = 37;
805 pub const _SC_PASS_MAX : ::c_int = 39;
806 pub const _SC_PHYS_PAGES : ::c_int = 40;
807 pub const _SC_AVPHYS_PAGES : ::c_int = 41;
808 pub const _SC_PIPE : ::c_int = 42;
809 pub const _SC_SELECT : ::c_int = 43;
810 pub const _SC_POLL : ::c_int = 44;
811 pub const _SC_MAPPED_FILES : ::c_int = 45;
812 pub const _SC_THREAD_PROCESS_SHARED : ::c_int = 46;
813 pub const _SC_THREAD_STACK_MIN : ::c_int = 47;
814 pub const _SC_THREAD_ATTR_STACKADDR : ::c_int = 48;
815 pub const _SC_THREAD_ATTR_STACKSIZE : ::c_int = 49;
816 pub const _SC_THREAD_PRIORITY_SCHEDULING : ::c_int = 50;
817 pub const _SC_REALTIME_SIGNALS : ::c_int = 51;
818 pub const _SC_MEMORY_PROTECTION : ::c_int = 52;
819 pub const _SC_SIGQUEUE_MAX : ::c_int = 53;
820 pub const _SC_RTSIG_MAX : ::c_int = 54;
821 pub const _SC_MONOTONIC_CLOCK : ::c_int = 55;
822 pub const _SC_DELAYTIMER_MAX : ::c_int = 56;
823 pub const _SC_TIMER_MAX : ::c_int = 57;
824 pub const _SC_TIMERS : ::c_int = 58;
825 pub const _SC_CPUTIME : ::c_int = 59;
826 pub const _SC_THREAD_CPUTIME : ::c_int = 60;
827 
828 pub const PTHREAD_STACK_MIN: ::size_t = 8192;
829 
830 pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
831     flags: 0,
832     lock: 0,
833     unused: -42,
834     owner: -1,
835     owner_count: 0,
836 };
837 pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t {
838     flags: 0,
839     unused: -42,
840     mutex: 0 as *mut _,
841     waiter_count: 0,
842     lock: 0,
843 };
844 pub const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = pthread_rwlock_t {
845     flags: 0,
846     owner: -1,
847     lock_sem: 0,
848     lock_count: 0,
849     reader_count: 0,
850     writer_count: 0,
851     waiters: [0 as *mut _; 2],
852 };
853 
854 pub const PTHREAD_MUTEX_DEFAULT: ::c_int = 0;
855 pub const PTHREAD_MUTEX_NORMAL: ::c_int = 1;
856 pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 2;
857 pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 3;
858 
859 pub const FIOCLEX: c_ulong = 0; // TODO: does not exist on Haiku!
860 
861 pub const RUSAGE_CHILDREN: ::c_int = -1;
862 
863 pub const SOCK_STREAM: ::c_int = 1;
864 pub const SOCK_DGRAM: ::c_int = 2;
865 pub const SOCK_RAW: ::c_int = 3;
866 pub const SOCK_SEQPACKET: ::c_int = 5;
867 
868 pub const SOL_SOCKET: ::c_int = -1;
869 pub const SO_ACCEPTCONN: ::c_int = 0x00000001;
870 pub const SO_BROADCAST: ::c_int = 0x00000002;
871 pub const SO_DEBUG: ::c_int = 0x00000004;
872 pub const SO_DONTROUTE: ::c_int = 0x00000008;
873 pub const SO_KEEPALIVE: ::c_int = 0x00000010;
874 pub const SO_OOBINLINE: ::c_int = 0x00000020;
875 pub const SO_REUSEADDR: ::c_int = 0x00000040;
876 pub const SO_REUSEPORT: ::c_int = 0x00000080;
877 pub const SO_USELOOPBACK: ::c_int = 0x00000100;
878 pub const SO_LINGER: ::c_int = 0x00000200;
879 pub const SO_SNDBUF: ::c_int = 0x40000001;
880 pub const SO_SNDLOWAT: ::c_int = 0x40000002;
881 pub const SO_SNDTIMEO: ::c_int = 0x40000003;
882 pub const SO_RCVBUF: ::c_int = 0x40000004;
883 pub const SO_RCVLOWAT: ::c_int = 0x40000005;
884 pub const SO_RCVTIMEO: ::c_int = 0x40000006;
885 pub const SO_ERROR: ::c_int = 0x40000007;
886 pub const SO_TYPE: ::c_int = 0x40000008;
887 pub const SO_NONBLOCK: ::c_int = 0x40000009;
888 pub const SO_BINDTODEVICE: ::c_int = 0x4000000a;
889 pub const SO_PEERCRED: ::c_int = 0x4000000b;
890 
891 pub const SCM_RIGHTS: ::c_int = 0x01;
892 
893 pub const NI_MAXHOST: ::size_t = 1025;
894 
895 pub const WNOHANG: ::c_int = 0x01;
896 pub const WUNTRACED: ::c_int = 0x02;
897 pub const WCONTINUED: ::c_int = 0x04;
898 pub const WEXITED: ::c_int = 0x08;
899 pub const WSTOPPED: ::c_int = 0x10;
900 pub const WNOWAIT: ::c_int = 0x20;
901 
902 pub const P_ALL: idtype_t = 0;
903 pub const P_PID: idtype_t = 1;
904 pub const P_PGID: idtype_t = 2;
905 
906 pub const VINTR: usize = 0;
907 pub const VQUIT: usize = 1;
908 pub const VERASE: usize = 2;
909 pub const VKILL: usize = 3;
910 pub const VEOF: usize = 4;
911 pub const VEOL: usize = 5;
912 pub const VMIN: usize = 4;
913 pub const VTIME: usize = 5;
914 pub const VEOL2: usize = 6;
915 pub const VSWTCH: usize = 7;
916 pub const VSTART: usize = 8;
917 pub const VSTOP: usize = 9;
918 pub const VSUSP: usize = 10;
919 
920 pub const IGNBRK: ::tcflag_t = 0x01;
921 pub const BRKINT: ::tcflag_t = 0x02;
922 pub const IGNPAR: ::tcflag_t = 0x04;
923 pub const PARMRK: ::tcflag_t = 0x08;
924 pub const INPCK: ::tcflag_t = 0x10;
925 pub const ISTRIP: ::tcflag_t = 0x20;
926 pub const INLCR: ::tcflag_t = 0x40;
927 pub const IGNCR: ::tcflag_t = 0x80;
928 pub const ICRNL: ::tcflag_t = 0x100;
929 pub const IUCLC: ::tcflag_t = 0x200;
930 pub const IXON: ::tcflag_t = 0x400;
931 pub const IXANY: ::tcflag_t = 0x800;
932 pub const IXOFF: ::tcflag_t = 0x1000;
933 
934 pub const OPOST:  ::tcflag_t = 0x00000001;
935 pub const OLCUC:  ::tcflag_t = 0x00000002;
936 pub const ONLCR:  ::tcflag_t = 0x00000004;
937 pub const OCRNL:  ::tcflag_t = 0x00000008;
938 pub const ONOCR:  ::tcflag_t = 0x00000010;
939 pub const ONLRET: ::tcflag_t = 0x00000020;
940 pub const OFILL:  ::tcflag_t = 0x00000040;
941 pub const OFDEL:  ::tcflag_t = 0x00000080;
942 pub const NLDLY:  ::tcflag_t = 0x00000100;
943 pub const NL0:    ::tcflag_t = 0x00000000;
944 pub const NL1:    ::tcflag_t = 0x00000100;
945 pub const CRDLY:  ::tcflag_t = 0x00000600;
946 pub const CR0:    ::tcflag_t = 0x00000000;
947 pub const CR1:    ::tcflag_t = 0x00000200;
948 pub const CR2:    ::tcflag_t = 0x00000400;
949 pub const CR3:    ::tcflag_t = 0x00000600;
950 pub const TABDLY: ::tcflag_t = 0x00001800;
951 pub const TAB0:   ::tcflag_t = 0x00000000;
952 pub const TAB1:   ::tcflag_t = 0x00000800;
953 pub const TAB2:   ::tcflag_t = 0x00001000;
954 pub const TAB3:   ::tcflag_t = 0x00001800;
955 pub const BSDLY:  ::tcflag_t = 0x00002000;
956 pub const BS0:    ::tcflag_t = 0x00000000;
957 pub const BS1:    ::tcflag_t = 0x00002000;
958 pub const VTDLY:  ::tcflag_t = 0x00004000;
959 pub const VT0:    ::tcflag_t = 0x00000000;
960 pub const VT1:    ::tcflag_t = 0x00004000;
961 pub const FFDLY:  ::tcflag_t = 0x00008000;
962 pub const FF0:    ::tcflag_t = 0x00000000;
963 pub const FF1:    ::tcflag_t = 0x00008000;
964 
965 pub const CSIZE:      ::tcflag_t = 0x00000020;
966 pub const CS5:        ::tcflag_t = 0x00000000;
967 pub const CS6:        ::tcflag_t = 0x00000000;
968 pub const CS7:        ::tcflag_t = 0x00000000;
969 pub const CS8:        ::tcflag_t = 0x00000020;
970 pub const CSTOPB:     ::tcflag_t = 0x00000040;
971 pub const CREAD:      ::tcflag_t = 0x00000080;
972 pub const PARENB:     ::tcflag_t = 0x00000100;
973 pub const PARODD:     ::tcflag_t = 0x00000200;
974 pub const HUPCL:      ::tcflag_t = 0x00000400;
975 pub const CLOCAL:     ::tcflag_t = 0x00000800;
976 pub const XLOBLK:     ::tcflag_t = 0x00001000;
977 pub const CTSFLOW:    ::tcflag_t = 0x00002000;
978 pub const RTSFLOW:    ::tcflag_t = 0x00004000;
979 pub const CRTSCTS:    ::tcflag_t = RTSFLOW | CTSFLOW;
980 
981 pub const ISIG:       ::tcflag_t = 0x00000001;
982 pub const ICANON:     ::tcflag_t = 0x00000002;
983 pub const XCASE:      ::tcflag_t = 0x00000004;
984 pub const ECHO:       ::tcflag_t = 0x00000008;
985 pub const ECHOE:      ::tcflag_t = 0x00000010;
986 pub const ECHOK:      ::tcflag_t = 0x00000020;
987 pub const ECHONL:     ::tcflag_t = 0x00000040;
988 pub const NOFLSH:     ::tcflag_t = 0x00000080;
989 pub const TOSTOP:     ::tcflag_t = 0x00000100;
990 pub const IEXTEN:     ::tcflag_t = 0x00000200;
991 pub const ECHOCTL:    ::tcflag_t = 0x00000400;
992 pub const ECHOPRT:    ::tcflag_t = 0x00000800;
993 pub const ECHOKE:     ::tcflag_t = 0x00001000;
994 pub const FLUSHO:     ::tcflag_t = 0x00002000;
995 pub const PENDIN:     ::tcflag_t = 0x00004000;
996 
997 pub const TCGB_CTS: ::c_int = 0x01;
998 pub const TCGB_DSR: ::c_int = 0x02;
999 pub const TCGB_RI: ::c_int = 0x04;
1000 pub const TCGB_DCD: ::c_int = 0x08;
1001 pub const TIOCM_CTS: ::c_int = TCGB_CTS;
1002 pub const TIOCM_CD: ::c_int = TCGB_DCD;
1003 pub const TIOCM_CAR: ::c_int = TIOCM_CD;
1004 pub const TIOCM_RI: ::c_int = TCGB_RI;
1005 pub const TIOCM_DSR: ::c_int = TCGB_DSR;
1006 pub const TIOCM_DTR: ::c_int = 0x10;
1007 pub const TIOCM_RTS: ::c_int = 0x20;
1008 
1009 pub const B0:      speed_t = 0x00;
1010 pub const B50:     speed_t = 0x01;
1011 pub const B75:     speed_t = 0x02;
1012 pub const B110:    speed_t = 0x03;
1013 pub const B134:    speed_t = 0x04;
1014 pub const B150:    speed_t = 0x05;
1015 pub const B200:    speed_t = 0x06;
1016 pub const B300:    speed_t = 0x07;
1017 pub const B600:    speed_t = 0x08;
1018 pub const B1200:   speed_t = 0x09;
1019 pub const B1800:   speed_t = 0x0A;
1020 pub const B2400:   speed_t = 0x0B;
1021 pub const B4800:   speed_t = 0x0C;
1022 pub const B9600:   speed_t = 0x0D;
1023 pub const B19200:  speed_t = 0x0E;
1024 pub const B38400:  speed_t = 0x0F;
1025 pub const B57600:  speed_t = 0x10;
1026 pub const B115200: speed_t = 0x11;
1027 pub const B230400: speed_t = 0x12;
1028 pub const B31250:  speed_t = 0x13;
1029 
1030 pub const TCSANOW: ::c_int = 0x01;
1031 pub const TCSADRAIN: ::c_int = 0x02;
1032 pub const TCSAFLUSH: ::c_int = 0x04;
1033 
1034 pub const TCOOFF: ::c_int = 0x01;
1035 pub const TCOON: ::c_int = 0x02;
1036 pub const TCIOFF: ::c_int = 0x04;
1037 pub const TCION: ::c_int = 0x08;
1038 
1039 pub const TCIFLUSH: ::c_int = 0x01;
1040 pub const TCOFLUSH: ::c_int = 0x02;
1041 pub const TCIOFLUSH: ::c_int = 0x03;
1042 
1043 f! {
1044     pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> () {
1045         let fd = fd as usize;
1046         let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
1047         (*set).fds_bits[fd / size] &= !(1 << (fd % size));
1048         return
1049     }
1050 
1051     pub fn FD_ISSET(fd: ::c_int, set: *mut fd_set) -> bool {
1052         let fd = fd as usize;
1053         let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
1054         return ((*set).fds_bits[fd / size] & (1 << (fd % size))) != 0
1055     }
1056 
1057     pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () {
1058         let fd = fd as usize;
1059         let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
1060         (*set).fds_bits[fd / size] |= 1 << (fd % size);
1061         return
1062     }
1063 
1064     pub fn FD_ZERO(set: *mut fd_set) -> () {
1065         for slot in (*set).fds_bits.iter_mut() {
1066             *slot = 0;
1067         }
1068     }
1069 
1070     pub fn WIFEXITED(status: ::c_int) -> bool {
1071         (status & !0xff) == 0
1072     }
1073 
1074     pub fn WEXITSTATUS(status: ::c_int) -> ::c_int {
1075         (status & 0xff)
1076     }
1077 
1078     pub fn WIFSIGNALED(status: ::c_int) -> bool {
1079         ((status >> 8) & 0xff) != 0
1080     }
1081 
1082     pub fn WTERMSIG(status: ::c_int) -> ::c_int {
1083         (status >> 8) & 0xff
1084     }
1085 
1086     pub fn WIFSTOPPED(status: ::c_int) -> bool {
1087         ((status >> 16) & 0xff) != 0
1088     }
1089 
1090     pub fn WSTOPSIG(status: ::c_int) -> ::c_int {
1091         (status >> 16) & 0xff
1092     }
1093 
1094     // actually WIFCORED, but this is used everywhere else
1095     pub fn WCOREDUMP(status: ::c_int) -> bool {
1096         (status & 0x10000) != 0
1097     }
1098 
1099     pub fn WIFCONTINUED(status: ::c_int) -> bool {
1100         (status & 0x20000) != 0
1101     }
1102 }
1103 
1104 extern {
abs(i: ::c_int) -> ::c_int1105     pub fn abs(i: ::c_int) -> ::c_int;
atof(s: *const ::c_char) -> ::c_double1106     pub fn atof(s: *const ::c_char) -> ::c_double;
labs(i: ::c_long) -> ::c_long1107     pub fn labs(i: ::c_long) -> ::c_long;
rand() -> ::c_int1108     pub fn rand() -> ::c_int;
srand(seed: ::c_uint)1109     pub fn srand(seed: ::c_uint);
1110 }
1111 
1112 #[link(name = "bsd")]
1113 extern {
sem_destroy(sem: *mut sem_t) -> ::c_int1114     pub fn sem_destroy(sem: *mut sem_t) -> ::c_int;
sem_init(sem: *mut sem_t, pshared: ::c_int, value: ::c_uint) -> ::c_int1115     pub fn sem_init(sem: *mut sem_t,
1116                     pshared: ::c_int,
1117                     value: ::c_uint)
1118                     -> ::c_int;
1119 
clock_gettime(clk_id: ::c_int, tp: *mut ::timespec) -> ::c_int1120     pub fn clock_gettime(clk_id: ::c_int, tp: *mut ::timespec) -> ::c_int;
clock_settime(clk_id: ::c_int, tp: *const ::timespec) -> ::c_int1121     pub fn clock_settime(clk_id: ::c_int, tp: *const ::timespec) -> ::c_int;
pthread_create(thread: *mut ::pthread_t, attr: *const ::pthread_attr_t, f: extern fn(*mut ::c_void) -> *mut ::c_void, value: *mut ::c_void) -> ::c_int1122     pub fn pthread_create(thread: *mut ::pthread_t,
1123                           attr: *const ::pthread_attr_t,
1124                           f: extern fn(*mut ::c_void) -> *mut ::c_void,
1125                           value: *mut ::c_void) -> ::c_int;
pthread_attr_getguardsize(attr: *const ::pthread_attr_t, guardsize: *mut ::size_t) -> ::c_int1126     pub fn pthread_attr_getguardsize(attr: *const ::pthread_attr_t,
1127                                      guardsize: *mut ::size_t) -> ::c_int;
pthread_attr_getstack(attr: *const ::pthread_attr_t, stackaddr: *mut *mut ::c_void, stacksize: *mut ::size_t) -> ::c_int1128     pub fn pthread_attr_getstack(attr: *const ::pthread_attr_t,
1129                                  stackaddr: *mut *mut ::c_void,
1130                                  stacksize: *mut ::size_t) -> ::c_int;
pthread_condattr_getclock(attr: *const pthread_condattr_t, clock_id: *mut clockid_t) -> ::c_int1131     pub fn pthread_condattr_getclock(attr: *const pthread_condattr_t,
1132                                      clock_id: *mut clockid_t) -> ::c_int;
pthread_condattr_setclock(attr: *mut pthread_condattr_t, clock_id: ::clockid_t) -> ::c_int1133     pub fn pthread_condattr_setclock(attr: *mut pthread_condattr_t,
1134                                      clock_id: ::clockid_t) -> ::c_int;
memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void1135     pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
setgroups(ngroups: ::size_t, ptr: *const ::gid_t) -> ::c_int1136     pub fn setgroups(ngroups: ::size_t,
1137                      ptr: *const ::gid_t) -> ::c_int;
ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int1138     pub fn ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int;
mprotect(addr: *const ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int1139     pub fn mprotect(addr: *const ::c_void, len: ::size_t, prot: ::c_int)
1140                     -> ::c_int;
dirfd(dirp: *mut ::DIR) -> ::c_int1141     pub fn dirfd(dirp: *mut ::DIR) -> ::c_int;
getnameinfo(sa: *const ::sockaddr, salen: ::socklen_t, host: *mut ::c_char, hostlen: ::size_t, serv: *mut ::c_char, sevlen: ::size_t, flags: ::c_int) -> ::c_int1142     pub fn getnameinfo(sa: *const ::sockaddr,
1143                        salen: ::socklen_t,
1144                        host: *mut ::c_char,
1145                        hostlen: ::size_t,
1146                        serv: *mut ::c_char,
1147                        sevlen: ::size_t,
1148                        flags: ::c_int) -> ::c_int;
pthread_mutex_timedlock(lock: *mut pthread_mutex_t, abstime: *const ::timespec) -> ::c_int1149     pub fn pthread_mutex_timedlock(lock: *mut pthread_mutex_t,
1150                                    abstime: *const ::timespec) -> ::c_int;
waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t, options: ::c_int) -> ::c_int1151     pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t,
1152                   options: ::c_int) -> ::c_int;
1153 
glob(pattern: *const ::c_char, flags: ::c_int, errfunc: ::Option<extern fn(epath: *const ::c_char, errno: ::c_int) -> ::c_int>, pglob: *mut ::glob_t) -> ::c_int1154     pub fn glob(pattern: *const ::c_char,
1155                 flags: ::c_int,
1156                 errfunc: ::Option<extern fn(epath: *const ::c_char,
1157                                           errno: ::c_int) -> ::c_int>,
1158                 pglob: *mut ::glob_t) -> ::c_int;
globfree(pglob: *mut ::glob_t)1159     pub fn globfree(pglob: *mut ::glob_t);
1160 
posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int) -> ::c_int1161     pub fn posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
1162                          -> ::c_int;
1163 
shm_open(name: *const ::c_char, oflag: ::c_int, mode: ::mode_t) -> ::c_int1164     pub fn shm_open(name: *const ::c_char, oflag: ::c_int, mode: ::mode_t)
1165                     -> ::c_int;
shm_unlink(name: *const ::c_char) -> ::c_int1166     pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
1167 
seekdir(dirp: *mut ::DIR, loc: ::c_long)1168     pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
1169 
telldir(dirp: *mut ::DIR) -> ::c_long1170     pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int) -> ::c_int1171     pub fn madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
1172                   -> ::c_int;
1173 
msync(addr: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::c_int1174     pub fn msync(addr: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::c_int;
1175 
recvfrom(socket: ::c_int, buf: *mut ::c_void, len: ::size_t, flags: ::c_int, addr: *mut ::sockaddr, addrlen: *mut ::socklen_t) -> ::ssize_t1176     pub fn recvfrom(socket: ::c_int, buf: *mut ::c_void, len: ::size_t,
1177                     flags: ::c_int, addr: *mut ::sockaddr,
1178                     addrlen: *mut ::socklen_t) -> ::ssize_t;
mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int1179     pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int1180     pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int;
lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int1181     pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int;
nl_langinfo(item: ::nl_item) -> *mut ::c_char1182     pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
1183 
bind(socket: ::c_int, address: *const ::sockaddr, address_len: ::socklen_t) -> ::c_int1184     pub fn bind(socket: ::c_int, address: *const ::sockaddr,
1185                 address_len: ::socklen_t) -> ::c_int;
1186 
writev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int) -> ::ssize_t1187     pub fn writev(fd: ::c_int,
1188                   iov: *const ::iovec,
1189                   iovcnt: ::c_int) -> ::ssize_t;
readv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int) -> ::ssize_t1190     pub fn readv(fd: ::c_int,
1191                  iov: *const ::iovec,
1192                  iovcnt: ::c_int) -> ::ssize_t;
1193 
sendmsg(fd: ::c_int, msg: *const ::msghdr, flags: ::c_int) -> ::ssize_t1194     pub fn sendmsg(fd: ::c_int,
1195                    msg: *const ::msghdr,
1196                    flags: ::c_int) -> ::ssize_t;
recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int) -> ::ssize_t1197     pub fn recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int)
1198                    -> ::ssize_t;
execvpe(file: *const ::c_char, argv: *const *const ::c_char, environment: *const *const ::c_char) -> ::c_int1199     pub fn execvpe(file: *const ::c_char, argv: *const *const ::c_char,
1200                    environment: *const *const ::c_char) -> ::c_int;
1201     #[cfg_attr(target_os = "solaris", link_name = "__posix_getgrgid_r")]
getgrgid_r(uid: ::uid_t, grp: *mut ::group, buf: *mut ::c_char, buflen: ::size_t, result: *mut *mut ::group) -> ::c_int1202     pub fn getgrgid_r(uid: ::uid_t,
1203                       grp: *mut ::group,
1204                       buf: *mut ::c_char,
1205                       buflen: ::size_t,
1206                       result: *mut *mut ::group) -> ::c_int;
1207     #[cfg_attr(all(target_os = "macos", target_arch = "x86"),
1208                link_name = "sigaltstack$UNIX2003")]
1209     #[cfg_attr(target_os = "netbsd", link_name = "__sigaltstack14")]
sigaltstack(ss: *const stack_t, oss: *mut stack_t) -> ::c_int1210     pub fn sigaltstack(ss: *const stack_t,
1211                        oss: *mut stack_t) -> ::c_int;
sem_close(sem: *mut sem_t) -> ::c_int1212     pub fn sem_close(sem: *mut sem_t) -> ::c_int;
getdtablesize() -> ::c_int1213     pub fn getdtablesize() -> ::c_int;
1214     #[cfg_attr(target_os = "solaris", link_name = "__posix_getgrnam_r")]
getgrnam_r(name: *const ::c_char, grp: *mut ::group, buf: *mut ::c_char, buflen: ::size_t, result: *mut *mut ::group) -> ::c_int1215     pub fn getgrnam_r(name: *const ::c_char,
1216                       grp: *mut ::group,
1217                       buf: *mut ::c_char,
1218                       buflen: ::size_t,
1219                       result: *mut *mut ::group) -> ::c_int;
1220     #[cfg_attr(all(target_os = "macos", target_arch = "x86"),
1221                link_name = "pthread_sigmask$UNIX2003")]
pthread_sigmask(how: ::c_int, set: *const sigset_t, oldset: *mut sigset_t) -> ::c_int1222     pub fn pthread_sigmask(how: ::c_int, set: *const sigset_t,
1223                            oldset: *mut sigset_t) -> ::c_int;
sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t1224     pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t;
getgrnam(name: *const ::c_char) -> *mut ::group1225     pub fn getgrnam(name: *const ::c_char) -> *mut ::group;
pthread_kill(thread: ::pthread_t, sig: ::c_int) -> ::c_int1226     pub fn pthread_kill(thread: ::pthread_t, sig: ::c_int) -> ::c_int;
sem_unlink(name: *const ::c_char) -> ::c_int1227     pub fn sem_unlink(name: *const ::c_char) -> ::c_int;
daemon(nochdir: ::c_int, noclose: ::c_int) -> ::c_int1228     pub fn daemon(nochdir: ::c_int, noclose: ::c_int) -> ::c_int;
1229     #[cfg_attr(target_os = "netbsd", link_name = "__getpwnam_r50")]
1230     #[cfg_attr(target_os = "solaris", link_name = "__posix_getpwnam_r")]
getpwnam_r(name: *const ::c_char, pwd: *mut passwd, buf: *mut ::c_char, buflen: ::size_t, result: *mut *mut passwd) -> ::c_int1231     pub fn getpwnam_r(name: *const ::c_char,
1232                       pwd: *mut passwd,
1233                       buf: *mut ::c_char,
1234                       buflen: ::size_t,
1235                       result: *mut *mut passwd) -> ::c_int;
1236     #[cfg_attr(target_os = "netbsd", link_name = "__getpwuid_r50")]
1237     #[cfg_attr(target_os = "solaris", link_name = "__posix_getpwuid_r")]
getpwuid_r(uid: ::uid_t, pwd: *mut passwd, buf: *mut ::c_char, buflen: ::size_t, result: *mut *mut passwd) -> ::c_int1238     pub fn getpwuid_r(uid: ::uid_t,
1239                       pwd: *mut passwd,
1240                       buf: *mut ::c_char,
1241                       buflen: ::size_t,
1242                       result: *mut *mut passwd) -> ::c_int;
1243     #[cfg_attr(all(target_os = "macos", target_arch ="x86"),
1244                link_name = "sigwait$UNIX2003")]
1245     #[cfg_attr(target_os = "solaris", link_name = "__posix_sigwait")]
sigwait(set: *const sigset_t, sig: *mut ::c_int) -> ::c_int1246     pub fn sigwait(set: *const sigset_t,
1247                    sig: *mut ::c_int) -> ::c_int;
pthread_atfork(prepare: ::Option<unsafe extern fn()>, parent: ::Option<unsafe extern fn()>, child: ::Option<unsafe extern fn()>) -> ::c_int1248     pub fn pthread_atfork(prepare: ::Option<unsafe extern fn()>,
1249                           parent: ::Option<unsafe extern fn()>,
1250                           child: ::Option<unsafe extern fn()>) -> ::c_int;
getgrgid(gid: ::gid_t) -> *mut ::group1251     pub fn getgrgid(gid: ::gid_t) -> *mut ::group;
1252     #[cfg_attr(all(target_os = "macos", target_arch = "x86"),
1253                link_name = "popen$UNIX2003")]
popen(command: *const c_char, mode: *const c_char) -> *mut ::FILE1254     pub fn popen(command: *const c_char,
1255                  mode: *const c_char) -> *mut ::FILE;
openpty(amaster: *mut ::c_int, aslave: *mut ::c_int, name: *mut ::c_char, termp: *mut termios, winp: *mut ::winsize) -> ::c_int1256     pub fn openpty(amaster: *mut ::c_int,
1257                    aslave: *mut ::c_int,
1258                    name: *mut ::c_char,
1259                    termp: *mut termios,
1260                    winp: *mut ::winsize) -> ::c_int;
forkpty(amaster: *mut ::c_int, name: *mut ::c_char, termp: *mut termios, winp: *mut ::winsize) -> ::pid_t1261     pub fn forkpty(amaster: *mut ::c_int,
1262                    name: *mut ::c_char,
1263                    termp: *mut termios,
1264                    winp: *mut ::winsize) -> ::pid_t;
sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int1265     pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int;
uname(buf: *mut ::utsname) -> ::c_int1266     pub fn uname(buf: *mut ::utsname) -> ::c_int;
1267 }
1268 
1269 cfg_if! {
1270     if #[cfg(target_pointer_width = "64")] {
1271         mod b64;
1272         pub use self::b64::*;
1273     } else {
1274         mod b32;
1275         pub use self::b32::*;
1276     }
1277 }
1278