]> git.proxmox.com Git - rustc.git/blob - src/liblibc/src/unix/bsd/apple/mod.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / liblibc / src / unix / bsd / apple / mod.rs
1 //! Apple (ios/darwin)-specific definitions
2 //!
3 //! This covers *-apple-* triples currently
4
5 pub type clock_t = c_ulong;
6 pub type time_t = c_long;
7 pub type suseconds_t = i32;
8 pub type dev_t = i32;
9 pub type ino_t = u64;
10 pub type mode_t = u16;
11 pub type nlink_t = u16;
12 pub type blksize_t = i32;
13 pub type rlim_t = u64;
14 pub type mach_timebase_info_data_t = mach_timebase_info;
15 pub type pthread_key_t = c_ulong;
16 pub type sigset_t = u32;
17 pub type clockid_t = ::c_uint;
18 pub type fsblkcnt_t = ::c_uint;
19 pub type fsfilcnt_t = ::c_uint;
20 pub type speed_t = ::c_ulong;
21 pub type tcflag_t = ::c_ulong;
22 pub type nl_item = ::c_int;
23 pub type id_t = ::c_uint;
24 pub type sem_t = ::c_int;
25 pub type idtype_t = ::c_uint;
26 pub type integer_t = ::c_int;
27 pub type cpu_type_t = integer_t;
28 pub type cpu_subtype_t = integer_t;
29 pub type vm_prot_t = ::c_int;
30
31 pub enum timezone {}
32
33 s! {
34 pub struct aiocb {
35 pub aio_fildes: ::c_int,
36 pub aio_offset: ::off_t,
37 pub aio_buf: *mut ::c_void,
38 pub aio_nbytes: ::size_t,
39 pub aio_reqprio: ::c_int,
40 pub aio_sigevent: sigevent,
41 pub aio_lio_opcode: ::c_int
42 }
43
44 pub struct utmpx {
45 pub ut_user: [::c_char; _UTX_USERSIZE],
46 pub ut_id: [::c_char; _UTX_IDSIZE],
47 pub ut_line: [::c_char; _UTX_LINESIZE],
48 pub ut_pid: ::pid_t,
49 pub ut_type: ::c_short,
50 pub ut_tv: ::timeval,
51 pub ut_host: [::c_char; _UTX_HOSTSIZE],
52 ut_pad: [::uint32_t; 16],
53 }
54
55 pub struct glob_t {
56 pub gl_pathc: ::size_t,
57 __unused1: ::c_int,
58 pub gl_offs: ::size_t,
59 __unused2: ::c_int,
60 pub gl_pathv: *mut *mut ::c_char,
61
62 __unused3: *mut ::c_void,
63
64 __unused4: *mut ::c_void,
65 __unused5: *mut ::c_void,
66 __unused6: *mut ::c_void,
67 __unused7: *mut ::c_void,
68 __unused8: *mut ::c_void,
69 }
70
71 pub struct sockaddr_storage {
72 pub ss_len: u8,
73 pub ss_family: ::sa_family_t,
74 __ss_pad1: [u8; 6],
75 __ss_align: i64,
76 __ss_pad2: [u8; 112],
77 }
78
79 pub struct addrinfo {
80 pub ai_flags: ::c_int,
81 pub ai_family: ::c_int,
82 pub ai_socktype: ::c_int,
83 pub ai_protocol: ::c_int,
84 pub ai_addrlen: ::socklen_t,
85 pub ai_canonname: *mut ::c_char,
86 pub ai_addr: *mut ::sockaddr,
87 pub ai_next: *mut addrinfo,
88 }
89
90 pub struct mach_timebase_info {
91 pub numer: u32,
92 pub denom: u32,
93 }
94
95 pub struct stat {
96 pub st_dev: dev_t,
97 pub st_mode: mode_t,
98 pub st_nlink: nlink_t,
99 pub st_ino: ino_t,
100 pub st_uid: ::uid_t,
101 pub st_gid: ::gid_t,
102 pub st_rdev: dev_t,
103 pub st_atime: time_t,
104 pub st_atime_nsec: c_long,
105 pub st_mtime: time_t,
106 pub st_mtime_nsec: c_long,
107 pub st_ctime: time_t,
108 pub st_ctime_nsec: c_long,
109 pub st_birthtime: time_t,
110 pub st_birthtime_nsec: c_long,
111 pub st_size: ::off_t,
112 pub st_blocks: ::blkcnt_t,
113 pub st_blksize: blksize_t,
114 pub st_flags: ::uint32_t,
115 pub st_gen: ::uint32_t,
116 pub st_lspare: ::int32_t,
117 pub st_qspare: [::int64_t; 2],
118 }
119
120 pub struct dirent {
121 pub d_ino: u64,
122 pub d_seekoff: u64,
123 pub d_reclen: u16,
124 pub d_namlen: u16,
125 pub d_type: u8,
126 pub d_name: [::c_char; 1024],
127 }
128
129 pub struct pthread_mutex_t {
130 __sig: ::c_long,
131 __opaque: [u8; __PTHREAD_MUTEX_SIZE__],
132 }
133
134 pub struct pthread_mutexattr_t {
135 __sig: ::c_long,
136 __opaque: [u8; 8],
137 }
138
139 pub struct pthread_cond_t {
140 __sig: ::c_long,
141 __opaque: [u8; __PTHREAD_COND_SIZE__],
142 }
143
144 pub struct pthread_condattr_t {
145 __sig: ::c_long,
146 __opaque: [u8; __PTHREAD_CONDATTR_SIZE__],
147 }
148
149 pub struct pthread_rwlock_t {
150 __sig: ::c_long,
151 __opaque: [u8; __PTHREAD_RWLOCK_SIZE__],
152 }
153
154 pub struct pthread_rwlockattr_t {
155 __sig: ::c_long,
156 __opaque: [u8; __PTHREAD_RWLOCKATTR_SIZE__],
157 }
158
159 pub struct siginfo_t {
160 pub si_signo: ::c_int,
161 pub si_errno: ::c_int,
162 pub si_code: ::c_int,
163 pub si_pid: ::pid_t,
164 pub si_uid: ::uid_t,
165 pub si_status: ::c_int,
166 pub si_addr: *mut ::c_void,
167 _pad: [usize; 9],
168 }
169
170 pub struct sigaction {
171 pub sa_sigaction: ::sighandler_t,
172 pub sa_mask: sigset_t,
173 pub sa_flags: ::c_int,
174 }
175
176 pub struct stack_t {
177 pub ss_sp: *mut ::c_void,
178 pub ss_size: ::size_t,
179 pub ss_flags: ::c_int,
180 }
181
182 pub struct fstore_t {
183 pub fst_flags: ::c_uint,
184 pub fst_posmode: ::c_int,
185 pub fst_offset: ::off_t,
186 pub fst_length: ::off_t,
187 pub fst_bytesalloc: ::off_t,
188 }
189
190 pub struct radvisory {
191 pub ra_offset: ::off_t,
192 pub ra_count: ::c_int,
193 }
194
195 pub struct statvfs {
196 pub f_bsize: ::c_ulong,
197 pub f_frsize: ::c_ulong,
198 pub f_blocks: ::fsblkcnt_t,
199 pub f_bfree: ::fsblkcnt_t,
200 pub f_bavail: ::fsblkcnt_t,
201 pub f_files: ::fsfilcnt_t,
202 pub f_ffree: ::fsfilcnt_t,
203 pub f_favail: ::fsfilcnt_t,
204 pub f_fsid: ::c_ulong,
205 pub f_flag: ::c_ulong,
206 pub f_namemax: ::c_ulong,
207 }
208
209 pub struct Dl_info {
210 pub dli_fname: *const ::c_char,
211 pub dli_fbase: *mut ::c_void,
212 pub dli_sname: *const ::c_char,
213 pub dli_saddr: *mut ::c_void,
214 }
215
216 pub struct sockaddr_in {
217 pub sin_len: u8,
218 pub sin_family: ::sa_family_t,
219 pub sin_port: ::in_port_t,
220 pub sin_addr: ::in_addr,
221 pub sin_zero: [::c_char; 8],
222 }
223
224 pub struct statfs {
225 pub f_bsize: ::uint32_t,
226 pub f_iosize: ::int32_t,
227 pub f_blocks: ::uint64_t,
228 pub f_bfree: ::uint64_t,
229 pub f_bavail: ::uint64_t,
230 pub f_files: ::uint64_t,
231 pub f_ffree: ::uint64_t,
232 pub f_fsid: ::fsid_t,
233 pub f_owner: ::uid_t,
234 pub f_type: ::uint32_t,
235 pub f_flags: ::uint32_t,
236 pub f_fssubtype: ::uint32_t,
237 pub f_fstypename: [::c_char; 16],
238 pub f_mntonname: [::c_char; 1024],
239 pub f_mntfromname: [::c_char; 1024],
240 pub f_reserved: [::uint32_t; 8],
241 }
242
243 // FIXME: this should have align 4 but it's got align 8 on 64-bit
244 pub struct kevent {
245 pub ident: ::uintptr_t,
246 pub filter: ::int16_t,
247 pub flags: ::uint16_t,
248 pub fflags: ::uint32_t,
249 pub data: ::intptr_t,
250 pub udata: *mut ::c_void,
251 }
252
253 pub struct kevent64_s {
254 pub ident: ::uint64_t,
255 pub filter: ::int16_t,
256 pub flags: ::uint16_t,
257 pub fflags: ::uint32_t,
258 pub data: ::int64_t,
259 pub udata: ::uint64_t,
260 pub ext: [::uint64_t; 2],
261 }
262
263 pub struct dqblk {
264 pub dqb_bhardlimit: ::uint64_t,
265 pub dqb_bsoftlimit: ::uint64_t,
266 pub dqb_curbytes: ::uint64_t,
267 pub dqb_ihardlimit: ::uint32_t,
268 pub dqb_isoftlimit: ::uint32_t,
269 pub dqb_curinodes: ::uint32_t,
270 pub dqb_btime: ::uint32_t,
271 pub dqb_itime: ::uint32_t,
272 pub dqb_id: ::uint32_t,
273 pub dqb_spare: [::uint32_t; 4],
274 }
275
276 pub struct if_msghdr {
277 pub ifm_msglen: ::c_ushort,
278 pub ifm_version: ::c_uchar,
279 pub ifm_type: ::c_uchar,
280 pub ifm_addrs: ::c_int,
281 pub ifm_flags: ::c_int,
282 pub ifm_index: ::c_ushort,
283 pub ifm_data: if_data,
284 }
285
286 pub struct termios {
287 pub c_iflag: ::tcflag_t,
288 pub c_oflag: ::tcflag_t,
289 pub c_cflag: ::tcflag_t,
290 pub c_lflag: ::tcflag_t,
291 pub c_cc: [::cc_t; ::NCCS],
292 pub c_ispeed: ::speed_t,
293 pub c_ospeed: ::speed_t,
294 }
295
296 pub struct flock {
297 pub l_start: ::off_t,
298 pub l_len: ::off_t,
299 pub l_pid: ::pid_t,
300 pub l_type: ::c_short,
301 pub l_whence: ::c_short,
302 }
303
304 pub struct sf_hdtr {
305 pub headers: *mut ::iovec,
306 pub hdr_cnt: ::c_int,
307 pub trailers: *mut ::iovec,
308 pub trl_cnt: ::c_int,
309 }
310
311 pub struct lconv {
312 pub decimal_point: *mut ::c_char,
313 pub thousands_sep: *mut ::c_char,
314 pub grouping: *mut ::c_char,
315 pub int_curr_symbol: *mut ::c_char,
316 pub currency_symbol: *mut ::c_char,
317 pub mon_decimal_point: *mut ::c_char,
318 pub mon_thousands_sep: *mut ::c_char,
319 pub mon_grouping: *mut ::c_char,
320 pub positive_sign: *mut ::c_char,
321 pub negative_sign: *mut ::c_char,
322 pub int_frac_digits: ::c_char,
323 pub frac_digits: ::c_char,
324 pub p_cs_precedes: ::c_char,
325 pub p_sep_by_space: ::c_char,
326 pub n_cs_precedes: ::c_char,
327 pub n_sep_by_space: ::c_char,
328 pub p_sign_posn: ::c_char,
329 pub n_sign_posn: ::c_char,
330 pub int_p_cs_precedes: ::c_char,
331 pub int_n_cs_precedes: ::c_char,
332 pub int_p_sep_by_space: ::c_char,
333 pub int_n_sep_by_space: ::c_char,
334 pub int_p_sign_posn: ::c_char,
335 pub int_n_sign_posn: ::c_char,
336 }
337
338 pub struct sigevent {
339 pub sigev_notify: ::c_int,
340 pub sigev_signo: ::c_int,
341 pub sigev_value: ::sigval,
342 __unused1: *mut ::c_void, //actually a function pointer
343 pub sigev_notify_attributes: *mut ::pthread_attr_t
344 }
345
346 pub struct proc_taskinfo {
347 pub pti_virtual_size: u64,
348 pub pti_resident_size: u64,
349 pub pti_total_user: u64,
350 pub pti_total_system: u64,
351 pub pti_threads_user: u64,
352 pub pti_threads_system: u64,
353 pub pti_policy: i32,
354 pub pti_faults: i32,
355 pub pti_pageins: i32,
356 pub pti_cow_faults: i32,
357 pub pti_messages_sent: i32,
358 pub pti_messages_received: i32,
359 pub pti_syscalls_mach: i32,
360 pub pti_syscalls_unix: i32,
361 pub pti_csw: i32,
362 pub pti_threadnum: i32,
363 pub pti_numrunning: i32,
364 pub pti_priority: i32,
365 }
366
367 pub struct proc_bsdinfo {
368 pub pbi_flags: u32,
369 pub pbi_status: u32,
370 pub pbi_xstatus: u32,
371 pub pbi_pid: u32,
372 pub pbi_ppid: u32,
373 pub pbi_uid: ::uid_t,
374 pub pbi_gid: ::gid_t,
375 pub pbi_ruid: ::uid_t,
376 pub pbi_rgid: ::gid_t,
377 pub pbi_svuid: ::uid_t,
378 pub pbi_svgid: ::gid_t,
379 pub rfu_1: u32,
380 pub pbi_comm: [::c_char; MAXCOMLEN],
381 pub pbi_name: [::c_char; 32], // MAXCOMLEN * 2, but macro isn't happy...
382 pub pbi_nfiles: u32,
383 pub pbi_pgid: u32,
384 pub pbi_pjobc: u32,
385 pub e_tdev: u32,
386 pub e_tpgid: u32,
387 pub pbi_nice: i32,
388 pub pbi_start_tvsec: u64,
389 pub pbi_start_tvusec: u64,
390 }
391
392 pub struct proc_taskallinfo {
393 pub pbsd: proc_bsdinfo,
394 pub ptinfo: proc_taskinfo,
395 }
396
397 pub struct proc_threadinfo {
398 pub pth_user_time: u64,
399 pub pth_system_time: u64,
400 pub pth_cpu_usage: i32,
401 pub pth_policy: i32,
402 pub pth_run_state: i32,
403 pub pth_flags: i32,
404 pub pth_sleep_time: i32,
405 pub pth_curpri: i32,
406 pub pth_priority: i32,
407 pub pth_maxpriority: i32,
408 pub pth_name: [::c_char; MAXTHREADNAMESIZE],
409 }
410
411 pub struct xsw_usage {
412 pub xsu_total: u64,
413 pub xsu_avail: u64,
414 pub xsu_used: u64,
415 pub xsu_pagesize: u32,
416 pub xsu_encrypted: ::boolean_t,
417 }
418
419 pub struct xucred {
420 pub cr_version: ::c_uint,
421 pub cr_uid: ::uid_t,
422 pub cr_ngroups: ::c_short,
423 pub cr_groups: [::gid_t;16]
424 }
425
426 pub struct mach_header {
427 pub magic: u32,
428 pub cputype: cpu_type_t,
429 pub cpusubtype: cpu_subtype_t,
430 pub filetype: u32,
431 pub ncmds: u32,
432 pub sizeofcmds: u32,
433 pub flags: u32,
434 }
435
436 pub struct mach_header_64 {
437 pub magic: u32,
438 pub cputype: cpu_type_t,
439 pub cpusubtype: cpu_subtype_t,
440 pub filetype: u32,
441 pub ncmds: u32,
442 pub sizeofcmds: u32,
443 pub flags: u32,
444 pub reserved: u32,
445 }
446
447 pub struct segment_command {
448 pub cmd: u32,
449 pub cmdsize: u32,
450 pub segname: [::c_char; 16],
451 pub vmaddr: u32,
452 pub vmsize: u32,
453 pub fileoff: u32,
454 pub filesize: u32,
455 pub maxprot: vm_prot_t,
456 pub initprot: vm_prot_t,
457 pub nsects: u32,
458 pub flags: u32,
459 }
460
461 pub struct segment_command_64 {
462 pub cmd: u32,
463 pub cmdsize: u32,
464 pub segname: [::c_char; 16],
465 pub vmaddr: u64,
466 pub vmsize: u64,
467 pub fileoff: u64,
468 pub filesize: u64,
469 pub maxprot: vm_prot_t,
470 pub initprot: vm_prot_t,
471 pub nsects: u32,
472 pub flags: u32,
473 }
474
475 pub struct load_command {
476 pub cmd: u32,
477 pub cmdsize: u32,
478 }
479 }
480
481 pub const _UTX_USERSIZE: usize = 256;
482 pub const _UTX_LINESIZE: usize = 32;
483 pub const _UTX_IDSIZE: usize = 4;
484 pub const _UTX_HOSTSIZE: usize = 256;
485
486 pub const EMPTY: ::c_short = 0;
487 pub const RUN_LVL: ::c_short = 1;
488 pub const BOOT_TIME: ::c_short = 2;
489 pub const OLD_TIME: ::c_short = 3;
490 pub const NEW_TIME: ::c_short = 4;
491 pub const INIT_PROCESS: ::c_short = 5;
492 pub const LOGIN_PROCESS: ::c_short = 6;
493 pub const USER_PROCESS: ::c_short = 7;
494 pub const DEAD_PROCESS: ::c_short = 8;
495 pub const ACCOUNTING: ::c_short = 9;
496 pub const SIGNATURE: ::c_short = 10;
497 pub const SHUTDOWN_TIME: ::c_short = 11;
498
499 pub const LC_COLLATE_MASK: ::c_int = (1 << 0);
500 pub const LC_CTYPE_MASK: ::c_int = (1 << 1);
501 pub const LC_MESSAGES_MASK: ::c_int = (1 << 2);
502 pub const LC_MONETARY_MASK: ::c_int = (1 << 3);
503 pub const LC_NUMERIC_MASK: ::c_int = (1 << 4);
504 pub const LC_TIME_MASK: ::c_int = (1 << 5);
505 pub const LC_ALL_MASK: ::c_int = LC_COLLATE_MASK
506 | LC_CTYPE_MASK
507 | LC_MESSAGES_MASK
508 | LC_MONETARY_MASK
509 | LC_NUMERIC_MASK
510 | LC_TIME_MASK;
511
512 pub const CODESET: ::nl_item = 0;
513 pub const D_T_FMT: ::nl_item = 1;
514 pub const D_FMT: ::nl_item = 2;
515 pub const T_FMT: ::nl_item = 3;
516 pub const T_FMT_AMPM: ::nl_item = 4;
517 pub const AM_STR: ::nl_item = 5;
518 pub const PM_STR: ::nl_item = 6;
519
520 pub const DAY_1: ::nl_item = 7;
521 pub const DAY_2: ::nl_item = 8;
522 pub const DAY_3: ::nl_item = 9;
523 pub const DAY_4: ::nl_item = 10;
524 pub const DAY_5: ::nl_item = 11;
525 pub const DAY_6: ::nl_item = 12;
526 pub const DAY_7: ::nl_item = 13;
527
528 pub const ABDAY_1: ::nl_item = 14;
529 pub const ABDAY_2: ::nl_item = 15;
530 pub const ABDAY_3: ::nl_item = 16;
531 pub const ABDAY_4: ::nl_item = 17;
532 pub const ABDAY_5: ::nl_item = 18;
533 pub const ABDAY_6: ::nl_item = 19;
534 pub const ABDAY_7: ::nl_item = 20;
535
536 pub const MON_1: ::nl_item = 21;
537 pub const MON_2: ::nl_item = 22;
538 pub const MON_3: ::nl_item = 23;
539 pub const MON_4: ::nl_item = 24;
540 pub const MON_5: ::nl_item = 25;
541 pub const MON_6: ::nl_item = 26;
542 pub const MON_7: ::nl_item = 27;
543 pub const MON_8: ::nl_item = 28;
544 pub const MON_9: ::nl_item = 29;
545 pub const MON_10: ::nl_item = 30;
546 pub const MON_11: ::nl_item = 31;
547 pub const MON_12: ::nl_item = 32;
548
549 pub const ABMON_1: ::nl_item = 33;
550 pub const ABMON_2: ::nl_item = 34;
551 pub const ABMON_3: ::nl_item = 35;
552 pub const ABMON_4: ::nl_item = 36;
553 pub const ABMON_5: ::nl_item = 37;
554 pub const ABMON_6: ::nl_item = 38;
555 pub const ABMON_7: ::nl_item = 39;
556 pub const ABMON_8: ::nl_item = 40;
557 pub const ABMON_9: ::nl_item = 41;
558 pub const ABMON_10: ::nl_item = 42;
559 pub const ABMON_11: ::nl_item = 43;
560 pub const ABMON_12: ::nl_item = 44;
561
562 pub const CLOCK_REALTIME: ::clockid_t = 0;
563 pub const CLOCK_MONOTONIC: ::clockid_t = 6;
564 pub const CLOCK_PROCESS_CPUTIME_ID: ::clockid_t = 12;
565 pub const CLOCK_THREAD_CPUTIME_ID: ::clockid_t = 16;
566
567 pub const ERA: ::nl_item = 45;
568 pub const ERA_D_FMT: ::nl_item = 46;
569 pub const ERA_D_T_FMT: ::nl_item = 47;
570 pub const ERA_T_FMT: ::nl_item = 48;
571 pub const ALT_DIGITS: ::nl_item = 49;
572
573 pub const RADIXCHAR: ::nl_item = 50;
574 pub const THOUSEP: ::nl_item = 51;
575
576 pub const YESEXPR: ::nl_item = 52;
577 pub const NOEXPR: ::nl_item = 53;
578
579 pub const YESSTR: ::nl_item = 54;
580 pub const NOSTR: ::nl_item = 55;
581
582 pub const CRNCYSTR: ::nl_item = 56;
583
584 pub const D_MD_ORDER: ::nl_item = 57;
585
586 pub const EXIT_FAILURE: ::c_int = 1;
587 pub const EXIT_SUCCESS: ::c_int = 0;
588 pub const RAND_MAX: ::c_int = 2147483647;
589 pub const EOF: ::c_int = -1;
590 pub const SEEK_SET: ::c_int = 0;
591 pub const SEEK_CUR: ::c_int = 1;
592 pub const SEEK_END: ::c_int = 2;
593 pub const _IOFBF: ::c_int = 0;
594 pub const _IONBF: ::c_int = 2;
595 pub const _IOLBF: ::c_int = 1;
596 pub const BUFSIZ: ::c_uint = 1024;
597 pub const FOPEN_MAX: ::c_uint = 20;
598 pub const FILENAME_MAX: ::c_uint = 1024;
599 pub const L_tmpnam: ::c_uint = 1024;
600 pub const TMP_MAX: ::c_uint = 308915776;
601 pub const _PC_LINK_MAX: ::c_int = 1;
602 pub const _PC_MAX_CANON: ::c_int = 2;
603 pub const _PC_MAX_INPUT: ::c_int = 3;
604 pub const _PC_NAME_MAX: ::c_int = 4;
605 pub const _PC_PATH_MAX: ::c_int = 5;
606 pub const _PC_PIPE_BUF: ::c_int = 6;
607 pub const _PC_CHOWN_RESTRICTED: ::c_int = 7;
608 pub const _PC_NO_TRUNC: ::c_int = 8;
609 pub const _PC_VDISABLE: ::c_int = 9;
610 pub const O_DSYNC: ::c_int = 0x400000;
611 pub const O_NOCTTY: ::c_int = 0x20000;
612 pub const O_CLOEXEC: ::c_int = 0x1000000;
613 pub const O_DIRECTORY: ::c_int = 0x100000;
614 pub const S_IFIFO: mode_t = 4096;
615 pub const S_IFCHR: mode_t = 8192;
616 pub const S_IFBLK: mode_t = 24576;
617 pub const S_IFDIR: mode_t = 16384;
618 pub const S_IFREG: mode_t = 32768;
619 pub const S_IFLNK: mode_t = 40960;
620 pub const S_IFSOCK: mode_t = 49152;
621 pub const S_IFMT: mode_t = 61440;
622 pub const S_IEXEC: mode_t = 64;
623 pub const S_IWRITE: mode_t = 128;
624 pub const S_IREAD: mode_t = 256;
625 pub const S_IRWXU: mode_t = 448;
626 pub const S_IXUSR: mode_t = 64;
627 pub const S_IWUSR: mode_t = 128;
628 pub const S_IRUSR: mode_t = 256;
629 pub const S_IRWXG: mode_t = 56;
630 pub const S_IXGRP: mode_t = 8;
631 pub const S_IWGRP: mode_t = 16;
632 pub const S_IRGRP: mode_t = 32;
633 pub const S_IRWXO: mode_t = 7;
634 pub const S_IXOTH: mode_t = 1;
635 pub const S_IWOTH: mode_t = 2;
636 pub const S_IROTH: mode_t = 4;
637 pub const F_OK: ::c_int = 0;
638 pub const R_OK: ::c_int = 4;
639 pub const W_OK: ::c_int = 2;
640 pub const X_OK: ::c_int = 1;
641 pub const STDIN_FILENO: ::c_int = 0;
642 pub const STDOUT_FILENO: ::c_int = 1;
643 pub const STDERR_FILENO: ::c_int = 2;
644 pub const F_LOCK: ::c_int = 1;
645 pub const F_TEST: ::c_int = 3;
646 pub const F_TLOCK: ::c_int = 2;
647 pub const F_ULOCK: ::c_int = 0;
648 pub const F_GETLK: ::c_int = 7;
649 pub const F_SETLK: ::c_int = 8;
650 pub const F_SETLKW: ::c_int = 9;
651 pub const SIGHUP: ::c_int = 1;
652 pub const SIGINT: ::c_int = 2;
653 pub const SIGQUIT: ::c_int = 3;
654 pub const SIGILL: ::c_int = 4;
655 pub const SIGABRT: ::c_int = 6;
656 pub const SIGEMT: ::c_int = 7;
657 pub const SIGFPE: ::c_int = 8;
658 pub const SIGKILL: ::c_int = 9;
659 pub const SIGSEGV: ::c_int = 11;
660 pub const SIGPIPE: ::c_int = 13;
661 pub const SIGALRM: ::c_int = 14;
662 pub const SIGTERM: ::c_int = 15;
663
664 pub const PROT_NONE: ::c_int = 0;
665 pub const PROT_READ: ::c_int = 1;
666 pub const PROT_WRITE: ::c_int = 2;
667 pub const PROT_EXEC: ::c_int = 4;
668
669 pub const MAP_FILE: ::c_int = 0x0000;
670 pub const MAP_SHARED: ::c_int = 0x0001;
671 pub const MAP_PRIVATE: ::c_int = 0x0002;
672 pub const MAP_FIXED: ::c_int = 0x0010;
673 pub const MAP_ANON: ::c_int = 0x1000;
674
675 pub const VM_FLAGS_FIXED: ::c_int = 0x0000;
676 pub const VM_FLAGS_ANYWHERE: ::c_int = 0x0001;
677 pub const VM_FLAGS_PURGABLE: ::c_int = 0x0002;
678 pub const VM_FLAGS_RANDOM_ADDR: ::c_int = 0x0008;
679 pub const VM_FLAGS_NO_CACHE: ::c_int = 0x0010;
680 pub const VM_FLAGS_RESILIENT_CODESIGN: ::c_int = 0x0020;
681 pub const VM_FLAGS_RESILIENT_MEDIA: ::c_int = 0x0040;
682 pub const VM_FLAGS_OVERWRITE: ::c_int = 0x4000;
683 pub const VM_FLAGS_SUPERPAGE_MASK: ::c_int = 0x70000;
684 pub const VM_FLAGS_RETURN_DATA_ADDR: ::c_int = 0x100000;
685 pub const VM_FLAGS_RETURN_4K_DATA_ADDR: ::c_int = 0x800000;
686 pub const VM_FLAGS_ALIAS_MASK: ::c_int = 0xFF000000;
687 pub const VM_FLAGS_USER_ALLOCATE: ::c_int = VM_FLAGS_FIXED | VM_FLAGS_ANYWHERE |
688 VM_FLAGS_PURGABLE |
689 VM_FLAGS_RANDOM_ADDR |
690 VM_FLAGS_NO_CACHE |
691 VM_FLAGS_OVERWRITE |
692 VM_FLAGS_SUPERPAGE_MASK |
693 VM_FLAGS_ALIAS_MASK;
694 pub const VM_FLAGS_USER_MAP: ::c_int = VM_FLAGS_USER_ALLOCATE |
695 VM_FLAGS_RETURN_4K_DATA_ADDR |
696 VM_FLAGS_RETURN_DATA_ADDR;
697 pub const VM_FLAGS_USER_REMAP: ::c_int = VM_FLAGS_FIXED | VM_FLAGS_ANYWHERE |
698 VM_FLAGS_RANDOM_ADDR |
699 VM_FLAGS_OVERWRITE |
700 VM_FLAGS_RETURN_DATA_ADDR |
701 VM_FLAGS_RESILIENT_CODESIGN;
702
703 pub const VM_FLAGS_SUPERPAGE_SHIFT: ::c_int = 16;
704 pub const SUPERPAGE_NONE: ::c_int = 0;
705 pub const SUPERPAGE_SIZE_ANY: ::c_int = 1;
706 pub const VM_FLAGS_SUPERPAGE_NONE: ::c_int = SUPERPAGE_NONE <<
707 VM_FLAGS_SUPERPAGE_SHIFT;
708 pub const VM_FLAGS_SUPERPAGE_SIZE_ANY: ::c_int = SUPERPAGE_SIZE_ANY <<
709 VM_FLAGS_SUPERPAGE_SHIFT;
710 pub const SUPERPAGE_SIZE_2MB: ::c_int = 2;
711 pub const VM_FLAGS_SUPERPAGE_SIZE_2MB: ::c_int = SUPERPAGE_SIZE_2MB <<
712 VM_FLAGS_SUPERPAGE_SHIFT;
713
714 pub const VM_MEMORY_MALLOC: ::c_int = 1;
715 pub const VM_MEMORY_MALLOC_SMALL: ::c_int = 2;
716 pub const VM_MEMORY_MALLOC_LARGE: ::c_int = 3;
717 pub const VM_MEMORY_MALLOC_HUGE: ::c_int = 4;
718 pub const VM_MEMORY_SBRK: ::c_int = 5;
719 pub const VM_MEMORY_REALLOC: ::c_int = 6;
720 pub const VM_MEMORY_MALLOC_TINY: ::c_int = 7;
721 pub const VM_MEMORY_MALLOC_LARGE_REUSABLE: ::c_int = 8;
722 pub const VM_MEMORY_MALLOC_LARGE_REUSED: ::c_int = 9;
723 pub const VM_MEMORY_ANALYSIS_TOOL: ::c_int = 10;
724 pub const VM_MEMORY_MALLOC_NANO: ::c_int = 11;
725 pub const VM_MEMORY_MACH_MSG: ::c_int = 20;
726 pub const VM_MEMORY_IOKIT: ::c_int = 21;
727 pub const VM_MEMORY_STACK: ::c_int = 30;
728 pub const VM_MEMORY_GUARD: ::c_int = 31;
729 pub const VM_MEMORY_SHARED_PMAP: ::c_int = 32;
730 pub const VM_MEMORY_DYLIB: ::c_int = 33;
731 pub const VM_MEMORY_OBJC_DISPATCHERS: ::c_int = 34;
732 pub const VM_MEMORY_UNSHARED_PMAP: ::c_int = 35;
733 pub const VM_MEMORY_APPKIT: ::c_int = 40;
734 pub const VM_MEMORY_FOUNDATION: ::c_int = 41;
735 pub const VM_MEMORY_COREGRAPHICS: ::c_int = 42;
736 pub const VM_MEMORY_CORESERVICES: ::c_int = 43;
737 pub const VM_MEMORY_CARBON: ::c_int = VM_MEMORY_CORESERVICES;
738 pub const VM_MEMORY_JAVA: ::c_int = 44;
739 pub const VM_MEMORY_COREDATA: ::c_int = 45;
740 pub const VM_MEMORY_COREDATA_OBJECTIDS: ::c_int = 46;
741 pub const VM_MEMORY_ATS: ::c_int = 50;
742 pub const VM_MEMORY_LAYERKIT: ::c_int = 51;
743 pub const VM_MEMORY_CGIMAGE: ::c_int = 52;
744 pub const VM_MEMORY_TCMALLOC: ::c_int = 53;
745 pub const VM_MEMORY_COREGRAPHICS_DATA: ::c_int = 54;
746 pub const VM_MEMORY_COREGRAPHICS_SHARED: ::c_int = 55;
747 pub const VM_MEMORY_COREGRAPHICS_FRAMEBUFFERS: ::c_int = 56;
748 pub const VM_MEMORY_COREGRAPHICS_BACKINGSTORES: ::c_int = 57;
749 pub const VM_MEMORY_COREGRAPHICS_XALLOC: ::c_int = 58;
750 pub const VM_MEMORY_COREGRAPHICS_MISC: ::c_int = VM_MEMORY_COREGRAPHICS;
751 pub const VM_MEMORY_DYLD: ::c_int = 60;
752 pub const VM_MEMORY_DYLD_MALLOC: ::c_int = 61;
753 pub const VM_MEMORY_SQLITE: ::c_int = 62;
754 pub const VM_MEMORY_JAVASCRIPT_CORE: ::c_int = 63;
755 pub const VM_MEMORY_JAVASCRIPT_JIT_EXECUTABLE_ALLOCATOR: ::c_int = 64;
756 pub const VM_MEMORY_JAVASCRIPT_JIT_REGISTER_FILE: ::c_int = 65;
757 pub const VM_MEMORY_GLSL: ::c_int = 66;
758 pub const VM_MEMORY_OPENCL: ::c_int = 67;
759 pub const VM_MEMORY_COREIMAGE: ::c_int = 68;
760 pub const VM_MEMORY_WEBCORE_PURGEABLE_BUFFERS: ::c_int = 69;
761 pub const VM_MEMORY_IMAGEIO: ::c_int = 70;
762 pub const VM_MEMORY_COREPROFILE: ::c_int = 71;
763 pub const VM_MEMORY_ASSETSD: ::c_int = 72;
764 pub const VM_MEMORY_OS_ALLOC_ONCE: ::c_int = 73;
765 pub const VM_MEMORY_LIBDISPATCH: ::c_int = 74;
766 pub const VM_MEMORY_ACCELERATE: ::c_int = 75;
767 pub const VM_MEMORY_COREUI: ::c_int = 76;
768 pub const VM_MEMORY_COREUIFILE: ::c_int = 77;
769 pub const VM_MEMORY_GENEALOGY: ::c_int = 78;
770 pub const VM_MEMORY_RAWCAMERA: ::c_int = 79;
771 pub const VM_MEMORY_CORPSEINFO: ::c_int = 80;
772 pub const VM_MEMORY_ASL: ::c_int = 81;
773 pub const VM_MEMORY_SWIFT_RUNTIME: ::c_int = 82;
774 pub const VM_MEMORY_SWIFT_METADATA: ::c_int = 83;
775 pub const VM_MEMORY_DHMM: ::c_int = 84;
776 pub const VM_MEMORY_SCENEKIT: ::c_int = 86;
777 pub const VM_MEMORY_SKYWALK: ::c_int = 87;
778 pub const VM_MEMORY_APPLICATION_SPECIFIC_1: ::c_int = 240;
779 pub const VM_MEMORY_APPLICATION_SPECIFIC_16: ::c_int = 255;
780
781 pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void;
782
783 pub const MCL_CURRENT: ::c_int = 0x0001;
784 pub const MCL_FUTURE: ::c_int = 0x0002;
785
786 pub const MS_ASYNC: ::c_int = 0x0001;
787 pub const MS_INVALIDATE: ::c_int = 0x0002;
788 pub const MS_SYNC: ::c_int = 0x0010;
789
790 pub const MS_KILLPAGES: ::c_int = 0x0004;
791 pub const MS_DEACTIVATE: ::c_int = 0x0008;
792
793 pub const EPERM: ::c_int = 1;
794 pub const ENOENT: ::c_int = 2;
795 pub const ESRCH: ::c_int = 3;
796 pub const EINTR: ::c_int = 4;
797 pub const EIO: ::c_int = 5;
798 pub const ENXIO: ::c_int = 6;
799 pub const E2BIG: ::c_int = 7;
800 pub const ENOEXEC: ::c_int = 8;
801 pub const EBADF: ::c_int = 9;
802 pub const ECHILD: ::c_int = 10;
803 pub const EDEADLK: ::c_int = 11;
804 pub const ENOMEM: ::c_int = 12;
805 pub const EACCES: ::c_int = 13;
806 pub const EFAULT: ::c_int = 14;
807 pub const ENOTBLK: ::c_int = 15;
808 pub const EBUSY: ::c_int = 16;
809 pub const EEXIST: ::c_int = 17;
810 pub const EXDEV: ::c_int = 18;
811 pub const ENODEV: ::c_int = 19;
812 pub const ENOTDIR: ::c_int = 20;
813 pub const EISDIR: ::c_int = 21;
814 pub const EINVAL: ::c_int = 22;
815 pub const ENFILE: ::c_int = 23;
816 pub const EMFILE: ::c_int = 24;
817 pub const ENOTTY: ::c_int = 25;
818 pub const ETXTBSY: ::c_int = 26;
819 pub const EFBIG: ::c_int = 27;
820 pub const ENOSPC: ::c_int = 28;
821 pub const ESPIPE: ::c_int = 29;
822 pub const EROFS: ::c_int = 30;
823 pub const EMLINK: ::c_int = 31;
824 pub const EPIPE: ::c_int = 32;
825 pub const EDOM: ::c_int = 33;
826 pub const ERANGE: ::c_int = 34;
827 pub const EAGAIN: ::c_int = 35;
828 pub const EWOULDBLOCK: ::c_int = EAGAIN;
829 pub const EINPROGRESS: ::c_int = 36;
830 pub const EALREADY: ::c_int = 37;
831 pub const ENOTSOCK: ::c_int = 38;
832 pub const EDESTADDRREQ: ::c_int = 39;
833 pub const EMSGSIZE: ::c_int = 40;
834 pub const EPROTOTYPE: ::c_int = 41;
835 pub const ENOPROTOOPT: ::c_int = 42;
836 pub const EPROTONOSUPPORT: ::c_int = 43;
837 pub const ESOCKTNOSUPPORT: ::c_int = 44;
838 pub const ENOTSUP: ::c_int = 45;
839 pub const EPFNOSUPPORT: ::c_int = 46;
840 pub const EAFNOSUPPORT: ::c_int = 47;
841 pub const EADDRINUSE: ::c_int = 48;
842 pub const EADDRNOTAVAIL: ::c_int = 49;
843 pub const ENETDOWN: ::c_int = 50;
844 pub const ENETUNREACH: ::c_int = 51;
845 pub const ENETRESET: ::c_int = 52;
846 pub const ECONNABORTED: ::c_int = 53;
847 pub const ECONNRESET: ::c_int = 54;
848 pub const ENOBUFS: ::c_int = 55;
849 pub const EISCONN: ::c_int = 56;
850 pub const ENOTCONN: ::c_int = 57;
851 pub const ESHUTDOWN: ::c_int = 58;
852 pub const ETOOMANYREFS: ::c_int = 59;
853 pub const ETIMEDOUT: ::c_int = 60;
854 pub const ECONNREFUSED: ::c_int = 61;
855 pub const ELOOP: ::c_int = 62;
856 pub const ENAMETOOLONG: ::c_int = 63;
857 pub const EHOSTDOWN: ::c_int = 64;
858 pub const EHOSTUNREACH: ::c_int = 65;
859 pub const ENOTEMPTY: ::c_int = 66;
860 pub const EPROCLIM: ::c_int = 67;
861 pub const EUSERS: ::c_int = 68;
862 pub const EDQUOT: ::c_int = 69;
863 pub const ESTALE: ::c_int = 70;
864 pub const EREMOTE: ::c_int = 71;
865 pub const EBADRPC: ::c_int = 72;
866 pub const ERPCMISMATCH: ::c_int = 73;
867 pub const EPROGUNAVAIL: ::c_int = 74;
868 pub const EPROGMISMATCH: ::c_int = 75;
869 pub const EPROCUNAVAIL: ::c_int = 76;
870 pub const ENOLCK: ::c_int = 77;
871 pub const ENOSYS: ::c_int = 78;
872 pub const EFTYPE: ::c_int = 79;
873 pub const EAUTH: ::c_int = 80;
874 pub const ENEEDAUTH: ::c_int = 81;
875 pub const EPWROFF: ::c_int = 82;
876 pub const EDEVERR: ::c_int = 83;
877 pub const EOVERFLOW: ::c_int = 84;
878 pub const EBADEXEC: ::c_int = 85;
879 pub const EBADARCH: ::c_int = 86;
880 pub const ESHLIBVERS: ::c_int = 87;
881 pub const EBADMACHO: ::c_int = 88;
882 pub const ECANCELED: ::c_int = 89;
883 pub const EIDRM: ::c_int = 90;
884 pub const ENOMSG: ::c_int = 91;
885 pub const EILSEQ: ::c_int = 92;
886 pub const ENOATTR: ::c_int = 93;
887 pub const EBADMSG: ::c_int = 94;
888 pub const EMULTIHOP: ::c_int = 95;
889 pub const ENODATA: ::c_int = 96;
890 pub const ENOLINK: ::c_int = 97;
891 pub const ENOSR: ::c_int = 98;
892 pub const ENOSTR: ::c_int = 99;
893 pub const EPROTO: ::c_int = 100;
894 pub const ETIME: ::c_int = 101;
895 pub const EOPNOTSUPP: ::c_int = 102;
896 pub const ENOPOLICY: ::c_int = 103;
897 pub const ENOTRECOVERABLE: ::c_int = 104;
898 pub const EOWNERDEAD: ::c_int = 105;
899 pub const EQFULL: ::c_int = 106;
900 pub const ELAST: ::c_int = 106;
901
902 pub const EAI_SYSTEM: ::c_int = 11;
903
904 pub const F_DUPFD: ::c_int = 0;
905 pub const F_DUPFD_CLOEXEC: ::c_int = 67;
906 pub const F_GETFD: ::c_int = 1;
907 pub const F_SETFD: ::c_int = 2;
908 pub const F_GETFL: ::c_int = 3;
909 pub const F_SETFL: ::c_int = 4;
910 pub const F_PREALLOCATE: ::c_int = 42;
911 pub const F_RDADVISE: ::c_int = 44;
912 pub const F_RDAHEAD: ::c_int = 45;
913 pub const F_NOCACHE: ::c_int = 48;
914 pub const F_GETPATH: ::c_int = 50;
915 pub const F_FULLFSYNC: ::c_int = 51;
916 pub const F_FREEZE_FS: ::c_int = 53;
917 pub const F_THAW_FS: ::c_int = 54;
918 pub const F_GLOBAL_NOCACHE: ::c_int = 55;
919 pub const F_NODIRECT: ::c_int = 62;
920
921 pub const F_ALLOCATECONTIG: ::c_uint = 0x02;
922 pub const F_ALLOCATEALL: ::c_uint = 0x04;
923
924 pub const F_PEOFPOSMODE: ::c_int = 3;
925 pub const F_VOLPOSMODE: ::c_int = 4;
926
927 pub const AT_FDCWD: ::c_int = -2;
928 pub const AT_EACCESS: ::c_int = 0x0010;
929 pub const AT_SYMLINK_NOFOLLOW: ::c_int = 0x0020;
930 pub const AT_SYMLINK_FOLLOW: ::c_int = 0x0040;
931 pub const AT_REMOVEDIR: ::c_int = 0x0080;
932
933 pub const TIOCMODG: ::c_ulong = 0x40047403;
934 pub const TIOCMODS: ::c_ulong = 0x80047404;
935 pub const TIOCM_LE: ::c_int = 0x1;
936 pub const TIOCM_DTR: ::c_int = 0x2;
937 pub const TIOCM_RTS: ::c_int = 0x4;
938 pub const TIOCM_ST: ::c_int = 0x8;
939 pub const TIOCM_SR: ::c_int = 0x10;
940 pub const TIOCM_CTS: ::c_int = 0x20;
941 pub const TIOCM_CAR: ::c_int = 0x40;
942 pub const TIOCM_CD: ::c_int = 0x40;
943 pub const TIOCM_RNG: ::c_int = 0x80;
944 pub const TIOCM_RI: ::c_int = 0x80;
945 pub const TIOCM_DSR: ::c_int = 0x100;
946 pub const TIOCEXCL: ::c_int = 0x2000740d;
947 pub const TIOCNXCL: ::c_int = 0x2000740e;
948 pub const TIOCFLUSH: ::c_ulong = 0x80047410;
949 pub const TIOCGETD: ::c_ulong = 0x4004741a;
950 pub const TIOCSETD: ::c_ulong = 0x8004741b;
951 pub const TIOCIXON: ::c_uint = 0x20007481;
952 pub const TIOCIXOFF: ::c_uint = 0x20007480;
953 pub const TIOCSBRK: ::c_uint = 0x2000747b;
954 pub const TIOCCBRK: ::c_uint = 0x2000747a;
955 pub const TIOCSDTR: ::c_uint = 0x20007479;
956 pub const TIOCCDTR: ::c_uint = 0x20007478;
957 pub const TIOCGPGRP: ::c_ulong = 0x40047477;
958 pub const TIOCSPGRP: ::c_ulong = 0x80047476;
959 pub const TIOCOUTQ: ::c_ulong = 0x40047473;
960 pub const TIOCSTI: ::c_ulong = 0x80017472;
961 pub const TIOCNOTTY: ::c_uint = 0x20007471;
962 pub const TIOCPKT: ::c_ulong = 0x80047470;
963 pub const TIOCPKT_DATA: ::c_int = 0x0;
964 pub const TIOCPKT_FLUSHREAD: ::c_int = 0x1;
965 pub const TIOCPKT_FLUSHWRITE: ::c_int = 0x2;
966 pub const TIOCPKT_STOP: ::c_int = 0x4;
967 pub const TIOCPKT_START: ::c_int = 0x8;
968 pub const TIOCPKT_NOSTOP: ::c_int = 0x10;
969 pub const TIOCPKT_DOSTOP: ::c_int = 0x20;
970 pub const TIOCPKT_IOCTL: ::c_int = 0x40;
971 pub const TIOCSTOP: ::c_uint = 0x2000746f;
972 pub const TIOCSTART: ::c_uint = 0x2000746e;
973 pub const TIOCMSET: ::c_ulong = 0x8004746d;
974 pub const TIOCMBIS: ::c_ulong = 0x8004746c;
975 pub const TIOCMBIC: ::c_ulong = 0x8004746b;
976 pub const TIOCMGET: ::c_ulong = 0x4004746a;
977 pub const TIOCREMOTE: ::c_ulong = 0x80047469;
978 pub const TIOCGWINSZ: ::c_ulong = 0x40087468;
979 pub const TIOCSWINSZ: ::c_ulong = 0x80087467;
980 pub const TIOCUCNTL: ::c_ulong = 0x80047466;
981 pub const TIOCSTAT: ::c_uint = 0x20007465;
982 pub const TIOCSCONS: ::c_uint = 0x20007463;
983 pub const TIOCCONS: ::c_ulong = 0x80047462;
984 pub const TIOCSCTTY: ::c_uint = 0x20007461;
985 pub const TIOCEXT: ::c_ulong = 0x80047460;
986 pub const TIOCSIG: ::c_uint = 0x2000745f;
987 pub const TIOCDRAIN: ::c_uint = 0x2000745e;
988 pub const TIOCMSDTRWAIT: ::c_ulong = 0x8004745b;
989 pub const TIOCMGDTRWAIT: ::c_ulong = 0x4004745a;
990 pub const TIOCSDRAINWAIT: ::c_ulong = 0x80047457;
991 pub const TIOCGDRAINWAIT: ::c_ulong = 0x40047456;
992 pub const TIOCDSIMICROCODE: ::c_uint = 0x20007455;
993 pub const TIOCPTYGRANT: ::c_uint = 0x20007454;
994 pub const TIOCPTYGNAME: ::c_uint = 0x40807453;
995 pub const TIOCPTYUNLK: ::c_uint = 0x20007452;
996
997 pub const B0: speed_t = 0;
998 pub const B50: speed_t = 50;
999 pub const B75: speed_t = 75;
1000 pub const B110: speed_t = 110;
1001 pub const B134: speed_t = 134;
1002 pub const B150: speed_t = 150;
1003 pub const B200: speed_t = 200;
1004 pub const B300: speed_t = 300;
1005 pub const B600: speed_t = 600;
1006 pub const B1200: speed_t = 1200;
1007 pub const B1800: speed_t = 1800;
1008 pub const B2400: speed_t = 2400;
1009 pub const B4800: speed_t = 4800;
1010 pub const B9600: speed_t = 9600;
1011 pub const B19200: speed_t = 19200;
1012 pub const B38400: speed_t = 38400;
1013 pub const B7200: speed_t = 7200;
1014 pub const B14400: speed_t = 14400;
1015 pub const B28800: speed_t = 28800;
1016 pub const B57600: speed_t = 57600;
1017 pub const B76800: speed_t = 76800;
1018 pub const B115200: speed_t = 115200;
1019 pub const B230400: speed_t = 230400;
1020 pub const EXTA: speed_t = 19200;
1021 pub const EXTB: speed_t = 38400;
1022
1023 pub const SIGTRAP: ::c_int = 5;
1024
1025 pub const GLOB_APPEND : ::c_int = 0x0001;
1026 pub const GLOB_DOOFFS : ::c_int = 0x0002;
1027 pub const GLOB_ERR : ::c_int = 0x0004;
1028 pub const GLOB_MARK : ::c_int = 0x0008;
1029 pub const GLOB_NOCHECK : ::c_int = 0x0010;
1030 pub const GLOB_NOSORT : ::c_int = 0x0020;
1031 pub const GLOB_NOESCAPE: ::c_int = 0x2000;
1032
1033 pub const GLOB_NOSPACE : ::c_int = -1;
1034 pub const GLOB_ABORTED : ::c_int = -2;
1035 pub const GLOB_NOMATCH : ::c_int = -3;
1036
1037 pub const POSIX_MADV_NORMAL: ::c_int = 0;
1038 pub const POSIX_MADV_RANDOM: ::c_int = 1;
1039 pub const POSIX_MADV_SEQUENTIAL: ::c_int = 2;
1040 pub const POSIX_MADV_WILLNEED: ::c_int = 3;
1041 pub const POSIX_MADV_DONTNEED: ::c_int = 4;
1042
1043 pub const _SC_IOV_MAX: ::c_int = 56;
1044 pub const _SC_GETGR_R_SIZE_MAX: ::c_int = 70;
1045 pub const _SC_GETPW_R_SIZE_MAX: ::c_int = 71;
1046 pub const _SC_LOGIN_NAME_MAX: ::c_int = 73;
1047 pub const _SC_MQ_PRIO_MAX: ::c_int = 75;
1048 pub const _SC_THREAD_ATTR_STACKADDR: ::c_int = 82;
1049 pub const _SC_THREAD_ATTR_STACKSIZE: ::c_int = 83;
1050 pub const _SC_THREAD_DESTRUCTOR_ITERATIONS: ::c_int = 85;
1051 pub const _SC_THREAD_KEYS_MAX: ::c_int = 86;
1052 pub const _SC_THREAD_PRIO_INHERIT: ::c_int = 87;
1053 pub const _SC_THREAD_PRIO_PROTECT: ::c_int = 88;
1054 pub const _SC_THREAD_PRIORITY_SCHEDULING: ::c_int = 89;
1055 pub const _SC_THREAD_PROCESS_SHARED: ::c_int = 90;
1056 pub const _SC_THREAD_SAFE_FUNCTIONS: ::c_int = 91;
1057 pub const _SC_THREAD_STACK_MIN: ::c_int = 93;
1058 pub const _SC_THREAD_THREADS_MAX: ::c_int = 94;
1059 pub const _SC_THREADS: ::c_int = 96;
1060 pub const _SC_TTY_NAME_MAX: ::c_int = 101;
1061 pub const _SC_ATEXIT_MAX: ::c_int = 107;
1062 pub const _SC_XOPEN_CRYPT: ::c_int = 108;
1063 pub const _SC_XOPEN_ENH_I18N: ::c_int = 109;
1064 pub const _SC_XOPEN_LEGACY: ::c_int = 110;
1065 pub const _SC_XOPEN_REALTIME: ::c_int = 111;
1066 pub const _SC_XOPEN_REALTIME_THREADS: ::c_int = 112;
1067 pub const _SC_XOPEN_SHM: ::c_int = 113;
1068 pub const _SC_XOPEN_UNIX: ::c_int = 115;
1069 pub const _SC_XOPEN_VERSION: ::c_int = 116;
1070 pub const _SC_XOPEN_XCU_VERSION: ::c_int = 121;
1071
1072 pub const PTHREAD_PROCESS_PRIVATE: ::c_int = 2;
1073 pub const PTHREAD_PROCESS_SHARED: ::c_int = 1;
1074 pub const PTHREAD_CREATE_JOINABLE: ::c_int = 1;
1075 pub const PTHREAD_CREATE_DETACHED: ::c_int = 2;
1076 pub const PTHREAD_STACK_MIN: ::size_t = 8192;
1077
1078 pub const RLIMIT_CPU: ::c_int = 0;
1079 pub const RLIMIT_FSIZE: ::c_int = 1;
1080 pub const RLIMIT_DATA: ::c_int = 2;
1081 pub const RLIMIT_STACK: ::c_int = 3;
1082 pub const RLIMIT_CORE: ::c_int = 4;
1083 pub const RLIMIT_AS: ::c_int = 5;
1084 pub const RLIMIT_RSS: ::c_int = RLIMIT_AS;
1085 pub const RLIMIT_MEMLOCK: ::c_int = 6;
1086 pub const RLIMIT_NPROC: ::c_int = 7;
1087 pub const RLIMIT_NOFILE: ::c_int = 8;
1088 pub const RLIM_NLIMITS: ::c_int = 9;
1089 pub const _RLIMIT_POSIX_FLAG: ::c_int = 0x1000;
1090
1091 pub const RLIM_INFINITY: rlim_t = 0x7fff_ffff_ffff_ffff;
1092
1093 pub const RUSAGE_SELF: ::c_int = 0;
1094 pub const RUSAGE_CHILDREN: ::c_int = -1;
1095
1096 pub const MADV_NORMAL: ::c_int = 0;
1097 pub const MADV_RANDOM: ::c_int = 1;
1098 pub const MADV_SEQUENTIAL: ::c_int = 2;
1099 pub const MADV_WILLNEED: ::c_int = 3;
1100 pub const MADV_DONTNEED: ::c_int = 4;
1101 pub const MADV_FREE: ::c_int = 5;
1102 pub const MADV_ZERO_WIRED_PAGES: ::c_int = 6;
1103 pub const MADV_FREE_REUSABLE: ::c_int = 7;
1104 pub const MADV_FREE_REUSE: ::c_int = 8;
1105 pub const MADV_CAN_REUSE: ::c_int = 9;
1106
1107 pub const MINCORE_INCORE: ::c_int = 0x1;
1108 pub const MINCORE_REFERENCED: ::c_int = 0x2;
1109 pub const MINCORE_MODIFIED: ::c_int = 0x4;
1110 pub const MINCORE_REFERENCED_OTHER: ::c_int = 0x8;
1111 pub const MINCORE_MODIFIED_OTHER: ::c_int = 0x10;
1112
1113 //
1114 // sys/netinet/in.h
1115 // Protocols (RFC 1700)
1116 // NOTE: These are in addition to the constants defined in src/unix/mod.rs
1117
1118 // IPPROTO_IP defined in src/unix/mod.rs
1119 /// IP6 hop-by-hop options
1120 pub const IPPROTO_HOPOPTS: ::c_int = 0;
1121 // IPPROTO_ICMP defined in src/unix/mod.rs
1122 /// group mgmt protocol
1123 pub const IPPROTO_IGMP: ::c_int = 2;
1124 /// gateway<sup>2</sup> (deprecated)
1125 pub const IPPROTO_GGP: ::c_int = 3;
1126 /// for compatibility
1127 pub const IPPROTO_IPIP: ::c_int = 4;
1128 // IPPROTO_TCP defined in src/unix/mod.rs
1129 /// Stream protocol II.
1130 pub const IPPROTO_ST: ::c_int = 7;
1131 /// exterior gateway protocol
1132 pub const IPPROTO_EGP: ::c_int = 8;
1133 /// private interior gateway
1134 pub const IPPROTO_PIGP: ::c_int = 9;
1135 /// BBN RCC Monitoring
1136 pub const IPPROTO_RCCMON: ::c_int = 10;
1137 /// network voice protocol
1138 pub const IPPROTO_NVPII: ::c_int = 11;
1139 /// pup
1140 pub const IPPROTO_PUP: ::c_int = 12;
1141 /// Argus
1142 pub const IPPROTO_ARGUS: ::c_int = 13;
1143 /// EMCON
1144 pub const IPPROTO_EMCON: ::c_int = 14;
1145 /// Cross Net Debugger
1146 pub const IPPROTO_XNET: ::c_int = 15;
1147 /// Chaos
1148 pub const IPPROTO_CHAOS: ::c_int = 16;
1149 // IPPROTO_UDP defined in src/unix/mod.rs
1150 /// Multiplexing
1151 pub const IPPROTO_MUX: ::c_int = 18;
1152 /// DCN Measurement Subsystems
1153 pub const IPPROTO_MEAS: ::c_int = 19;
1154 /// Host Monitoring
1155 pub const IPPROTO_HMP: ::c_int = 20;
1156 /// Packet Radio Measurement
1157 pub const IPPROTO_PRM: ::c_int = 21;
1158 /// xns idp
1159 pub const IPPROTO_IDP: ::c_int = 22;
1160 /// Trunk-1
1161 pub const IPPROTO_TRUNK1: ::c_int = 23;
1162 /// Trunk-2
1163 pub const IPPROTO_TRUNK2: ::c_int = 24;
1164 /// Leaf-1
1165 pub const IPPROTO_LEAF1: ::c_int = 25;
1166 /// Leaf-2
1167 pub const IPPROTO_LEAF2: ::c_int = 26;
1168 /// Reliable Data
1169 pub const IPPROTO_RDP: ::c_int = 27;
1170 /// Reliable Transaction
1171 pub const IPPROTO_IRTP: ::c_int = 28;
1172 /// tp-4 w/ class negotiation
1173 pub const IPPROTO_TP: ::c_int = 29;
1174 /// Bulk Data Transfer
1175 pub const IPPROTO_BLT: ::c_int = 30;
1176 /// Network Services
1177 pub const IPPROTO_NSP: ::c_int = 31;
1178 /// Merit Internodal
1179 pub const IPPROTO_INP: ::c_int = 32;
1180 /// Sequential Exchange
1181 pub const IPPROTO_SEP: ::c_int = 33;
1182 /// Third Party Connect
1183 pub const IPPROTO_3PC: ::c_int = 34;
1184 /// InterDomain Policy Routing
1185 pub const IPPROTO_IDPR: ::c_int = 35;
1186 /// XTP
1187 pub const IPPROTO_XTP: ::c_int = 36;
1188 /// Datagram Delivery
1189 pub const IPPROTO_DDP: ::c_int = 37;
1190 /// Control Message Transport
1191 pub const IPPROTO_CMTP: ::c_int = 38;
1192 /// TP++ Transport
1193 pub const IPPROTO_TPXX: ::c_int = 39;
1194 /// IL transport protocol
1195 pub const IPPROTO_IL: ::c_int = 40;
1196 // IPPROTO_IPV6 defined in src/unix/mod.rs
1197 /// Source Demand Routing
1198 pub const IPPROTO_SDRP: ::c_int = 42;
1199 /// IP6 routing header
1200 pub const IPPROTO_ROUTING: ::c_int = 43;
1201 /// IP6 fragmentation header
1202 pub const IPPROTO_FRAGMENT: ::c_int = 44;
1203 /// InterDomain Routing
1204 pub const IPPROTO_IDRP: ::c_int = 45;
1205 /// resource reservation
1206 pub const IPPROTO_RSVP: ::c_int = 46;
1207 /// General Routing Encap.
1208 pub const IPPROTO_GRE: ::c_int = 47;
1209 /// Mobile Host Routing
1210 pub const IPPROTO_MHRP: ::c_int = 48;
1211 /// BHA
1212 pub const IPPROTO_BHA: ::c_int = 49;
1213 /// IP6 Encap Sec. Payload
1214 pub const IPPROTO_ESP: ::c_int = 50;
1215 /// IP6 Auth Header
1216 pub const IPPROTO_AH: ::c_int = 51;
1217 /// Integ. Net Layer Security
1218 pub const IPPROTO_INLSP: ::c_int = 52;
1219 /// IP with encryption
1220 pub const IPPROTO_SWIPE: ::c_int = 53;
1221 /// Next Hop Resolution
1222 pub const IPPROTO_NHRP: ::c_int = 54;
1223 /* 55-57: Unassigned */
1224 // IPPROTO_ICMPV6 defined in src/unix/mod.rs
1225 /// IP6 no next header
1226 pub const IPPROTO_NONE: ::c_int = 59;
1227 /// IP6 destination option
1228 pub const IPPROTO_DSTOPTS: ::c_int = 60;
1229 /// any host internal protocol
1230 pub const IPPROTO_AHIP: ::c_int = 61;
1231 /// CFTP
1232 pub const IPPROTO_CFTP: ::c_int = 62;
1233 /// "hello" routing protocol
1234 pub const IPPROTO_HELLO: ::c_int = 63;
1235 /// SATNET/Backroom EXPAK
1236 pub const IPPROTO_SATEXPAK: ::c_int = 64;
1237 /// Kryptolan
1238 pub const IPPROTO_KRYPTOLAN: ::c_int = 65;
1239 /// Remote Virtual Disk
1240 pub const IPPROTO_RVD: ::c_int = 66;
1241 /// Pluribus Packet Core
1242 pub const IPPROTO_IPPC: ::c_int = 67;
1243 /// Any distributed FS
1244 pub const IPPROTO_ADFS: ::c_int = 68;
1245 /// Satnet Monitoring
1246 pub const IPPROTO_SATMON: ::c_int = 69;
1247 /// VISA Protocol
1248 pub const IPPROTO_VISA: ::c_int = 70;
1249 /// Packet Core Utility
1250 pub const IPPROTO_IPCV: ::c_int = 71;
1251 /// Comp. Prot. Net. Executive
1252 pub const IPPROTO_CPNX: ::c_int = 72;
1253 /// Comp. Prot. HeartBeat
1254 pub const IPPROTO_CPHB: ::c_int = 73;
1255 /// Wang Span Network
1256 pub const IPPROTO_WSN: ::c_int = 74;
1257 /// Packet Video Protocol
1258 pub const IPPROTO_PVP: ::c_int = 75;
1259 /// BackRoom SATNET Monitoring
1260 pub const IPPROTO_BRSATMON: ::c_int = 76;
1261 /// Sun net disk proto (temp.)
1262 pub const IPPROTO_ND: ::c_int = 77;
1263 /// WIDEBAND Monitoring
1264 pub const IPPROTO_WBMON: ::c_int = 78;
1265 /// WIDEBAND EXPAK
1266 pub const IPPROTO_WBEXPAK: ::c_int = 79;
1267 /// ISO cnlp
1268 pub const IPPROTO_EON: ::c_int = 80;
1269 /// VMTP
1270 pub const IPPROTO_VMTP: ::c_int = 81;
1271 /// Secure VMTP
1272 pub const IPPROTO_SVMTP: ::c_int = 82;
1273 /// Banyon VINES
1274 pub const IPPROTO_VINES: ::c_int = 83;
1275 /// TTP
1276 pub const IPPROTO_TTP: ::c_int = 84;
1277 /// NSFNET-IGP
1278 pub const IPPROTO_IGP: ::c_int = 85;
1279 /// dissimilar gateway prot.
1280 pub const IPPROTO_DGP: ::c_int = 86;
1281 /// TCF
1282 pub const IPPROTO_TCF: ::c_int = 87;
1283 /// Cisco/GXS IGRP
1284 pub const IPPROTO_IGRP: ::c_int = 88;
1285 /// OSPFIGP
1286 pub const IPPROTO_OSPFIGP: ::c_int = 89;
1287 /// Strite RPC protocol
1288 pub const IPPROTO_SRPC: ::c_int = 90;
1289 /// Locus Address Resoloution
1290 pub const IPPROTO_LARP: ::c_int = 91;
1291 /// Multicast Transport
1292 pub const IPPROTO_MTP: ::c_int = 92;
1293 /// AX.25 Frames
1294 pub const IPPROTO_AX25: ::c_int = 93;
1295 /// IP encapsulated in IP
1296 pub const IPPROTO_IPEIP: ::c_int = 94;
1297 /// Mobile Int.ing control
1298 pub const IPPROTO_MICP: ::c_int = 95;
1299 /// Semaphore Comm. security
1300 pub const IPPROTO_SCCSP: ::c_int = 96;
1301 /// Ethernet IP encapsulation
1302 pub const IPPROTO_ETHERIP: ::c_int = 97;
1303 /// encapsulation header
1304 pub const IPPROTO_ENCAP: ::c_int = 98;
1305 /// any private encr. scheme
1306 pub const IPPROTO_APES: ::c_int = 99;
1307 /// GMTP
1308 pub const IPPROTO_GMTP: ::c_int = 100;
1309
1310 /* 101-254: Partly Unassigned */
1311 /// Protocol Independent Mcast
1312 pub const IPPROTO_PIM: ::c_int = 103;
1313 /// payload compression (IPComp)
1314 pub const IPPROTO_IPCOMP: ::c_int = 108;
1315 /// PGM
1316 pub const IPPROTO_PGM: ::c_int = 113;
1317 /// SCTP
1318 pub const IPPROTO_SCTP: ::c_int = 132;
1319
1320 /* 255: Reserved */
1321 /* BSD Private, local use, namespace incursion */
1322 /// divert pseudo-protocol
1323 pub const IPPROTO_DIVERT: ::c_int = 254;
1324 /// raw IP packet
1325 pub const IPPROTO_RAW: ::c_int = 255;
1326 pub const IPPROTO_MAX: ::c_int = 256;
1327 /// last return value of *_input(), meaning "all job for this pkt is done".
1328 pub const IPPROTO_DONE: ::c_int = 257;
1329
1330 pub const AF_UNSPEC: ::c_int = 0;
1331 pub const AF_LOCAL: ::c_int = 1;
1332 pub const AF_UNIX: ::c_int = AF_LOCAL;
1333 pub const AF_INET: ::c_int = 2;
1334 pub const AF_IMPLINK: ::c_int = 3;
1335 pub const AF_PUP: ::c_int = 4;
1336 pub const AF_CHAOS: ::c_int = 5;
1337 pub const AF_NS: ::c_int = 6;
1338 pub const AF_ISO: ::c_int = 7;
1339 pub const AF_OSI: ::c_int = AF_ISO;
1340 pub const AF_ECMA: ::c_int = 8;
1341 pub const AF_DATAKIT: ::c_int = 9;
1342 pub const AF_CCITT: ::c_int = 10;
1343 pub const AF_SNA: ::c_int = 11;
1344 pub const AF_DECnet: ::c_int = 12;
1345 pub const AF_DLI: ::c_int = 13;
1346 pub const AF_LAT: ::c_int = 14;
1347 pub const AF_HYLINK: ::c_int = 15;
1348 pub const AF_APPLETALK: ::c_int = 16;
1349 pub const AF_ROUTE: ::c_int = 17;
1350 pub const AF_LINK: ::c_int = 18;
1351 pub const pseudo_AF_XTP: ::c_int = 19;
1352 pub const AF_COIP: ::c_int = 20;
1353 pub const AF_CNT: ::c_int = 21;
1354 pub const pseudo_AF_RTIP: ::c_int = 22;
1355 pub const AF_IPX: ::c_int = 23;
1356 pub const AF_SIP: ::c_int = 24;
1357 pub const pseudo_AF_PIP: ::c_int = 25;
1358 pub const AF_ISDN: ::c_int = 28;
1359 pub const AF_E164: ::c_int = AF_ISDN;
1360 pub const pseudo_AF_KEY: ::c_int = 29;
1361 pub const AF_INET6: ::c_int = 30;
1362 pub const AF_NATM: ::c_int = 31;
1363 pub const AF_SYSTEM: ::c_int = 32;
1364 pub const AF_NETBIOS: ::c_int = 33;
1365 pub const AF_PPP: ::c_int = 34;
1366 pub const pseudo_AF_HDRCMPLT: ::c_int = 35;
1367 #[doc(hidden)]
1368 pub const AF_MAX: ::c_int = 40;
1369 pub const AF_SYS_CONTROL: ::c_int = 2;
1370
1371 pub const SYSPROTO_EVENT: ::c_int = 1;
1372 pub const SYSPROTO_CONTROL: ::c_int = 2;
1373
1374 pub const PF_UNSPEC: ::c_int = AF_UNSPEC;
1375 pub const PF_LOCAL: ::c_int = AF_LOCAL;
1376 pub const PF_UNIX: ::c_int = PF_LOCAL;
1377 pub const PF_INET: ::c_int = AF_INET;
1378 pub const PF_IMPLINK: ::c_int = AF_IMPLINK;
1379 pub const PF_PUP: ::c_int = AF_PUP;
1380 pub const PF_CHAOS: ::c_int = AF_CHAOS;
1381 pub const PF_NS: ::c_int = AF_NS;
1382 pub const PF_ISO: ::c_int = AF_ISO;
1383 pub const PF_OSI: ::c_int = AF_ISO;
1384 pub const PF_ECMA: ::c_int = AF_ECMA;
1385 pub const PF_DATAKIT: ::c_int = AF_DATAKIT;
1386 pub const PF_CCITT: ::c_int = AF_CCITT;
1387 pub const PF_SNA: ::c_int = AF_SNA;
1388 pub const PF_DECnet: ::c_int = AF_DECnet;
1389 pub const PF_DLI: ::c_int = AF_DLI;
1390 pub const PF_LAT: ::c_int = AF_LAT;
1391 pub const PF_HYLINK: ::c_int = AF_HYLINK;
1392 pub const PF_APPLETALK: ::c_int = AF_APPLETALK;
1393 pub const PF_ROUTE: ::c_int = AF_ROUTE;
1394 pub const PF_LINK: ::c_int = AF_LINK;
1395 pub const PF_XTP: ::c_int = pseudo_AF_XTP;
1396 pub const PF_COIP: ::c_int = AF_COIP;
1397 pub const PF_CNT: ::c_int = AF_CNT;
1398 pub const PF_SIP: ::c_int = AF_SIP;
1399 pub const PF_IPX: ::c_int = AF_IPX;
1400 pub const PF_RTIP: ::c_int = pseudo_AF_RTIP;
1401 pub const PF_PIP: ::c_int = pseudo_AF_PIP;
1402 pub const PF_ISDN: ::c_int = AF_ISDN;
1403 pub const PF_KEY: ::c_int = pseudo_AF_KEY;
1404 pub const PF_INET6: ::c_int = AF_INET6;
1405 pub const PF_NATM: ::c_int = AF_NATM;
1406 pub const PF_SYSTEM: ::c_int = AF_SYSTEM;
1407 pub const PF_NETBIOS: ::c_int = AF_NETBIOS;
1408 pub const PF_PPP: ::c_int = AF_PPP;
1409 #[doc(hidden)]
1410 pub const PF_MAX: ::c_int = AF_MAX;
1411
1412 #[doc(hidden)]
1413 pub const NET_MAXID: ::c_int = AF_MAX;
1414
1415 pub const NET_RT_DUMP: ::c_int = 1;
1416 pub const NET_RT_FLAGS: ::c_int = 2;
1417 pub const NET_RT_IFLIST: ::c_int = 3;
1418 #[doc(hidden)]
1419 pub const NET_RT_MAXID: ::c_int = 10;
1420
1421 pub const SOMAXCONN: ::c_int = 128;
1422
1423 pub const SOCK_MAXADDRLEN: ::c_int = 255;
1424
1425 pub const SOCK_STREAM: ::c_int = 1;
1426 pub const SOCK_DGRAM: ::c_int = 2;
1427 pub const SOCK_RAW: ::c_int = 3;
1428 pub const SOCK_RDM: ::c_int = 4;
1429 pub const SOCK_SEQPACKET: ::c_int = 5;
1430 pub const IP_TTL: ::c_int = 4;
1431 pub const IP_HDRINCL: ::c_int = 2;
1432 pub const IP_ADD_MEMBERSHIP: ::c_int = 12;
1433 pub const IP_DROP_MEMBERSHIP: ::c_int = 13;
1434 pub const IPV6_JOIN_GROUP: ::c_int = 12;
1435 pub const IPV6_LEAVE_GROUP: ::c_int = 13;
1436
1437 pub const TCP_NODELAY: ::c_int = 0x01;
1438 pub const TCP_KEEPALIVE: ::c_int = 0x10;
1439
1440 pub const SOL_LOCAL: ::c_int = 0;
1441
1442 pub const LOCAL_PEERCRED: ::c_int = 0x001;
1443 pub const LOCAL_PEERPID: ::c_int = 0x002;
1444 pub const LOCAL_PEEREPID: ::c_int = 0x003;
1445 pub const LOCAL_PEERUUID: ::c_int = 0x004;
1446 pub const LOCAL_PEEREUUID: ::c_int = 0x005;
1447
1448 pub const SOL_SOCKET: ::c_int = 0xffff;
1449
1450 pub const SO_DEBUG: ::c_int = 0x01;
1451 pub const SO_ACCEPTCONN: ::c_int = 0x0002;
1452 pub const SO_REUSEADDR: ::c_int = 0x0004;
1453 pub const SO_KEEPALIVE: ::c_int = 0x0008;
1454 pub const SO_DONTROUTE: ::c_int = 0x0010;
1455 pub const SO_BROADCAST: ::c_int = 0x0020;
1456 pub const SO_USELOOPBACK: ::c_int = 0x0040;
1457 pub const SO_LINGER: ::c_int = 0x0080;
1458 pub const SO_OOBINLINE: ::c_int = 0x0100;
1459 pub const SO_REUSEPORT: ::c_int = 0x0200;
1460 pub const SO_TIMESTAMP: ::c_int = 0x0400;
1461 pub const SO_TIMESTAMP_MONOTONIC: ::c_int = 0x0800;
1462 pub const SO_DONTTRUNC: ::c_int = 0x2000;
1463 pub const SO_WANTMORE: ::c_int = 0x4000;
1464 pub const SO_WANTOOBFLAG: ::c_int = 0x8000;
1465 pub const SO_SNDBUF: ::c_int = 0x1001;
1466 pub const SO_RCVBUF: ::c_int = 0x1002;
1467 pub const SO_SNDLOWAT: ::c_int = 0x1003;
1468 pub const SO_RCVLOWAT: ::c_int = 0x1004;
1469 pub const SO_SNDTIMEO: ::c_int = 0x1005;
1470 pub const SO_RCVTIMEO: ::c_int = 0x1006;
1471 pub const SO_ERROR: ::c_int = 0x1007;
1472 pub const SO_TYPE: ::c_int = 0x1008;
1473 pub const SO_LABEL: ::c_int = 0x1010;
1474 pub const SO_PEERLABEL: ::c_int = 0x1011;
1475 pub const SO_NREAD: ::c_int = 0x1020;
1476 pub const SO_NKE: ::c_int = 0x1021;
1477 pub const SO_NOSIGPIPE: ::c_int = 0x1022;
1478 pub const SO_NOADDRERR: ::c_int = 0x1023;
1479 pub const SO_NWRITE: ::c_int = 0x1024;
1480 pub const SO_REUSESHAREUID: ::c_int = 0x1025;
1481 pub const SO_NOTIFYCONFLICT: ::c_int = 0x1026;
1482 pub const SO_RANDOMPORT: ::c_int = 0x1082;
1483 pub const SO_NP_EXTENSIONS: ::c_int = 0x1083;
1484
1485 pub const MSG_OOB: ::c_int = 0x1;
1486 pub const MSG_PEEK: ::c_int = 0x2;
1487 pub const MSG_DONTROUTE: ::c_int = 0x4;
1488 pub const MSG_EOR: ::c_int = 0x8;
1489 pub const MSG_TRUNC: ::c_int = 0x10;
1490 pub const MSG_CTRUNC: ::c_int = 0x20;
1491 pub const MSG_WAITALL: ::c_int = 0x40;
1492 pub const MSG_DONTWAIT: ::c_int = 0x80;
1493 pub const MSG_EOF: ::c_int = 0x100;
1494 pub const MSG_FLUSH: ::c_int = 0x400;
1495 pub const MSG_HOLD: ::c_int = 0x800;
1496 pub const MSG_SEND: ::c_int = 0x1000;
1497 pub const MSG_HAVEMORE: ::c_int = 0x2000;
1498 pub const MSG_RCVMORE: ::c_int = 0x4000;
1499 // pub const MSG_COMPAT: ::c_int = 0x8000;
1500
1501 pub const SCM_TIMESTAMP: ::c_int = 0x02;
1502 pub const SCM_CREDS: ::c_int = 0x03;
1503
1504 /// https://github.com/aosm/xnu/blob/master/bsd/net/if.h#L140-L156
1505 pub const IFF_UP: ::c_int = 0x1; // interface is up
1506 pub const IFF_BROADCAST: ::c_int = 0x2; // broadcast address valid
1507 pub const IFF_DEBUG: ::c_int = 0x4; // turn on debugging
1508 pub const IFF_LOOPBACK: ::c_int = 0x8; // is a loopback net
1509 pub const IFF_POINTOPOINT: ::c_int = 0x10; // interface is point-to-point link
1510 pub const IFF_NOTRAILERS: ::c_int = 0x20; // obsolete: avoid use of trailers
1511 pub const IFF_RUNNING: ::c_int = 0x40; // resources allocated
1512 pub const IFF_NOARP: ::c_int = 0x80; // no address resolution protocol
1513 pub const IFF_PROMISC: ::c_int = 0x100;// receive all packets
1514 pub const IFF_ALLMULTI: ::c_int = 0x200;// receive all multicast packets
1515 pub const IFF_OACTIVE: ::c_int = 0x400;// transmission in progress
1516 pub const IFF_SIMPLEX: ::c_int = 0x800;// can't hear own transmissions
1517 pub const IFF_LINK0: ::c_int = 0x1000;// per link layer defined bit
1518 pub const IFF_LINK1: ::c_int = 0x2000;// per link layer defined bit
1519 pub const IFF_LINK2: ::c_int = 0x4000;// per link layer defined bit
1520 pub const IFF_ALTPHYS: ::c_int = IFF_LINK2;// use alternate physical connection
1521 pub const IFF_MULTICAST: ::c_int = 0x8000;// supports multicast
1522
1523 pub const SHUT_RD: ::c_int = 0;
1524 pub const SHUT_WR: ::c_int = 1;
1525 pub const SHUT_RDWR: ::c_int = 2;
1526
1527 pub const LOCK_SH: ::c_int = 1;
1528 pub const LOCK_EX: ::c_int = 2;
1529 pub const LOCK_NB: ::c_int = 4;
1530 pub const LOCK_UN: ::c_int = 8;
1531
1532 pub const MAP_COPY: ::c_int = 0x0002;
1533 pub const MAP_RENAME: ::c_int = 0x0020;
1534 pub const MAP_NORESERVE: ::c_int = 0x0040;
1535 pub const MAP_NOEXTEND: ::c_int = 0x0100;
1536 pub const MAP_HASSEMAPHORE: ::c_int = 0x0200;
1537 pub const MAP_NOCACHE: ::c_int = 0x0400;
1538 pub const MAP_JIT: ::c_int = 0x0800;
1539
1540 pub const _SC_ARG_MAX: ::c_int = 1;
1541 pub const _SC_CHILD_MAX: ::c_int = 2;
1542 pub const _SC_CLK_TCK: ::c_int = 3;
1543 pub const _SC_NGROUPS_MAX: ::c_int = 4;
1544 pub const _SC_OPEN_MAX: ::c_int = 5;
1545 pub const _SC_JOB_CONTROL: ::c_int = 6;
1546 pub const _SC_SAVED_IDS: ::c_int = 7;
1547 pub const _SC_VERSION: ::c_int = 8;
1548 pub const _SC_BC_BASE_MAX: ::c_int = 9;
1549 pub const _SC_BC_DIM_MAX: ::c_int = 10;
1550 pub const _SC_BC_SCALE_MAX: ::c_int = 11;
1551 pub const _SC_BC_STRING_MAX: ::c_int = 12;
1552 pub const _SC_COLL_WEIGHTS_MAX: ::c_int = 13;
1553 pub const _SC_EXPR_NEST_MAX: ::c_int = 14;
1554 pub const _SC_LINE_MAX: ::c_int = 15;
1555 pub const _SC_RE_DUP_MAX: ::c_int = 16;
1556 pub const _SC_2_VERSION: ::c_int = 17;
1557 pub const _SC_2_C_BIND: ::c_int = 18;
1558 pub const _SC_2_C_DEV: ::c_int = 19;
1559 pub const _SC_2_CHAR_TERM: ::c_int = 20;
1560 pub const _SC_2_FORT_DEV: ::c_int = 21;
1561 pub const _SC_2_FORT_RUN: ::c_int = 22;
1562 pub const _SC_2_LOCALEDEF: ::c_int = 23;
1563 pub const _SC_2_SW_DEV: ::c_int = 24;
1564 pub const _SC_2_UPE: ::c_int = 25;
1565 pub const _SC_STREAM_MAX: ::c_int = 26;
1566 pub const _SC_TZNAME_MAX: ::c_int = 27;
1567 pub const _SC_ASYNCHRONOUS_IO: ::c_int = 28;
1568 pub const _SC_PAGESIZE: ::c_int = 29;
1569 pub const _SC_MEMLOCK: ::c_int = 30;
1570 pub const _SC_MEMLOCK_RANGE: ::c_int = 31;
1571 pub const _SC_MEMORY_PROTECTION: ::c_int = 32;
1572 pub const _SC_MESSAGE_PASSING: ::c_int = 33;
1573 pub const _SC_PRIORITIZED_IO: ::c_int = 34;
1574 pub const _SC_PRIORITY_SCHEDULING: ::c_int = 35;
1575 pub const _SC_REALTIME_SIGNALS: ::c_int = 36;
1576 pub const _SC_SEMAPHORES: ::c_int = 37;
1577 pub const _SC_FSYNC: ::c_int = 38;
1578 pub const _SC_SHARED_MEMORY_OBJECTS: ::c_int = 39;
1579 pub const _SC_SYNCHRONIZED_IO: ::c_int = 40;
1580 pub const _SC_TIMERS: ::c_int = 41;
1581 pub const _SC_AIO_LISTIO_MAX: ::c_int = 42;
1582 pub const _SC_AIO_MAX: ::c_int = 43;
1583 pub const _SC_AIO_PRIO_DELTA_MAX: ::c_int = 44;
1584 pub const _SC_DELAYTIMER_MAX: ::c_int = 45;
1585 pub const _SC_MQ_OPEN_MAX: ::c_int = 46;
1586 pub const _SC_MAPPED_FILES: ::c_int = 47;
1587 pub const _SC_RTSIG_MAX: ::c_int = 48;
1588 pub const _SC_SEM_NSEMS_MAX: ::c_int = 49;
1589 pub const _SC_SEM_VALUE_MAX: ::c_int = 50;
1590 pub const _SC_SIGQUEUE_MAX: ::c_int = 51;
1591 pub const _SC_TIMER_MAX: ::c_int = 52;
1592 pub const _SC_NPROCESSORS_CONF: ::c_int = 57;
1593 pub const _SC_NPROCESSORS_ONLN: ::c_int = 58;
1594 pub const _SC_2_PBS: ::c_int = 59;
1595 pub const _SC_2_PBS_ACCOUNTING: ::c_int = 60;
1596 pub const _SC_2_PBS_CHECKPOINT: ::c_int = 61;
1597 pub const _SC_2_PBS_LOCATE: ::c_int = 62;
1598 pub const _SC_2_PBS_MESSAGE: ::c_int = 63;
1599 pub const _SC_2_PBS_TRACK: ::c_int = 64;
1600 pub const _SC_ADVISORY_INFO: ::c_int = 65;
1601 pub const _SC_BARRIERS: ::c_int = 66;
1602 pub const _SC_CLOCK_SELECTION: ::c_int = 67;
1603 pub const _SC_CPUTIME: ::c_int = 68;
1604 pub const _SC_FILE_LOCKING: ::c_int = 69;
1605 pub const _SC_HOST_NAME_MAX: ::c_int = 72;
1606 pub const _SC_MONOTONIC_CLOCK: ::c_int = 74;
1607 pub const _SC_READER_WRITER_LOCKS: ::c_int = 76;
1608 pub const _SC_REGEXP: ::c_int = 77;
1609 pub const _SC_SHELL: ::c_int = 78;
1610 pub const _SC_SPAWN: ::c_int = 79;
1611 pub const _SC_SPIN_LOCKS: ::c_int = 80;
1612 pub const _SC_SPORADIC_SERVER: ::c_int = 81;
1613 pub const _SC_THREAD_CPUTIME: ::c_int = 84;
1614 pub const _SC_THREAD_SPORADIC_SERVER: ::c_int = 92;
1615 pub const _SC_TIMEOUTS: ::c_int = 95;
1616 pub const _SC_TRACE: ::c_int = 97;
1617 pub const _SC_TRACE_EVENT_FILTER: ::c_int = 98;
1618 pub const _SC_TRACE_INHERIT: ::c_int = 99;
1619 pub const _SC_TRACE_LOG: ::c_int = 100;
1620 pub const _SC_TYPED_MEMORY_OBJECTS: ::c_int = 102;
1621 pub const _SC_V6_ILP32_OFF32: ::c_int = 103;
1622 pub const _SC_V6_ILP32_OFFBIG: ::c_int = 104;
1623 pub const _SC_V6_LP64_OFF64: ::c_int = 105;
1624 pub const _SC_V6_LPBIG_OFFBIG: ::c_int = 106;
1625 pub const _SC_IPV6: ::c_int = 118;
1626 pub const _SC_RAW_SOCKETS: ::c_int = 119;
1627 pub const _SC_SYMLOOP_MAX: ::c_int = 120;
1628 pub const _SC_PAGE_SIZE: ::c_int = _SC_PAGESIZE;
1629 pub const _SC_XOPEN_STREAMS: ::c_int = 114;
1630 pub const _SC_XBS5_ILP32_OFF32: ::c_int = 122;
1631 pub const _SC_XBS5_ILP32_OFFBIG: ::c_int = 123;
1632 pub const _SC_XBS5_LP64_OFF64: ::c_int = 124;
1633 pub const _SC_XBS5_LPBIG_OFFBIG: ::c_int = 125;
1634 pub const _SC_SS_REPL_MAX: ::c_int = 126;
1635 pub const _SC_TRACE_EVENT_NAME_MAX: ::c_int = 127;
1636 pub const _SC_TRACE_NAME_MAX: ::c_int = 128;
1637 pub const _SC_TRACE_SYS_MAX: ::c_int = 129;
1638 pub const _SC_TRACE_USER_EVENT_MAX: ::c_int = 130;
1639 pub const _SC_PASS_MAX: ::c_int = 131;
1640
1641 pub const PTHREAD_MUTEX_NORMAL: ::c_int = 0;
1642 pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 1;
1643 pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 2;
1644 pub const PTHREAD_MUTEX_DEFAULT: ::c_int = PTHREAD_MUTEX_NORMAL;
1645 pub const _PTHREAD_MUTEX_SIG_init: ::c_long = 0x32AAABA7;
1646 pub const _PTHREAD_COND_SIG_init: ::c_long = 0x3CB0B1BB;
1647 pub const _PTHREAD_RWLOCK_SIG_init: ::c_long = 0x2DA8B3B4;
1648 pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
1649 __sig: _PTHREAD_MUTEX_SIG_init,
1650 __opaque: [0; __PTHREAD_MUTEX_SIZE__],
1651 };
1652 pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t {
1653 __sig: _PTHREAD_COND_SIG_init,
1654 __opaque: [0; __PTHREAD_COND_SIZE__],
1655 };
1656 pub const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = pthread_rwlock_t {
1657 __sig: _PTHREAD_RWLOCK_SIG_init,
1658 __opaque: [0; __PTHREAD_RWLOCK_SIZE__],
1659 };
1660
1661 pub const SIGSTKSZ: ::size_t = 131072;
1662
1663 pub const FD_SETSIZE: usize = 1024;
1664
1665 pub const ST_NOSUID: ::c_ulong = 2;
1666
1667 pub const EVFILT_READ: ::int16_t = -1;
1668 pub const EVFILT_WRITE: ::int16_t = -2;
1669 pub const EVFILT_AIO: ::int16_t = -3;
1670 pub const EVFILT_VNODE: ::int16_t = -4;
1671 pub const EVFILT_PROC: ::int16_t = -5;
1672 pub const EVFILT_SIGNAL: ::int16_t = -6;
1673 pub const EVFILT_TIMER: ::int16_t = -7;
1674 pub const EVFILT_MACHPORT: ::int16_t = -8;
1675 pub const EVFILT_FS: ::int16_t = -9;
1676 pub const EVFILT_USER: ::int16_t = -10;
1677 pub const EVFILT_VM: ::int16_t = -12;
1678
1679 pub const EV_ADD: ::uint16_t = 0x1;
1680 pub const EV_DELETE: ::uint16_t = 0x2;
1681 pub const EV_ENABLE: ::uint16_t = 0x4;
1682 pub const EV_DISABLE: ::uint16_t = 0x8;
1683 pub const EV_ONESHOT: ::uint16_t = 0x10;
1684 pub const EV_CLEAR: ::uint16_t = 0x20;
1685 pub const EV_RECEIPT: ::uint16_t = 0x40;
1686 pub const EV_DISPATCH: ::uint16_t = 0x80;
1687 pub const EV_FLAG0: ::uint16_t = 0x1000;
1688 pub const EV_POLL: ::uint16_t = 0x1000;
1689 pub const EV_FLAG1: ::uint16_t = 0x2000;
1690 pub const EV_OOBAND: ::uint16_t = 0x2000;
1691 pub const EV_ERROR: ::uint16_t = 0x4000;
1692 pub const EV_EOF: ::uint16_t = 0x8000;
1693 pub const EV_SYSFLAGS: ::uint16_t = 0xf000;
1694
1695 pub const NOTE_TRIGGER: ::uint32_t = 0x01000000;
1696 pub const NOTE_FFNOP: ::uint32_t = 0x00000000;
1697 pub const NOTE_FFAND: ::uint32_t = 0x40000000;
1698 pub const NOTE_FFOR: ::uint32_t = 0x80000000;
1699 pub const NOTE_FFCOPY: ::uint32_t = 0xc0000000;
1700 pub const NOTE_FFCTRLMASK: ::uint32_t = 0xc0000000;
1701 pub const NOTE_FFLAGSMASK: ::uint32_t = 0x00ffffff;
1702 pub const NOTE_LOWAT: ::uint32_t = 0x00000001;
1703 pub const NOTE_DELETE: ::uint32_t = 0x00000001;
1704 pub const NOTE_WRITE: ::uint32_t = 0x00000002;
1705 pub const NOTE_EXTEND: ::uint32_t = 0x00000004;
1706 pub const NOTE_ATTRIB: ::uint32_t = 0x00000008;
1707 pub const NOTE_LINK: ::uint32_t = 0x00000010;
1708 pub const NOTE_RENAME: ::uint32_t = 0x00000020;
1709 pub const NOTE_REVOKE: ::uint32_t = 0x00000040;
1710 pub const NOTE_NONE: ::uint32_t = 0x00000080;
1711 pub const NOTE_EXIT: ::uint32_t = 0x80000000;
1712 pub const NOTE_FORK: ::uint32_t = 0x40000000;
1713 pub const NOTE_EXEC: ::uint32_t = 0x20000000;
1714 pub const NOTE_REAP: ::uint32_t = 0x10000000;
1715 pub const NOTE_SIGNAL: ::uint32_t = 0x08000000;
1716 pub const NOTE_EXITSTATUS: ::uint32_t = 0x04000000;
1717 pub const NOTE_EXIT_DETAIL: ::uint32_t = 0x02000000;
1718 pub const NOTE_PDATAMASK: ::uint32_t = 0x000fffff;
1719 pub const NOTE_PCTRLMASK: ::uint32_t = 0xfff00000;
1720 pub const NOTE_EXIT_REPARENTED: ::uint32_t = 0x00080000;
1721 pub const NOTE_EXIT_DETAIL_MASK: ::uint32_t = 0x00070000;
1722 pub const NOTE_EXIT_DECRYPTFAIL: ::uint32_t = 0x00010000;
1723 pub const NOTE_EXIT_MEMORY: ::uint32_t = 0x00020000;
1724 pub const NOTE_EXIT_CSERROR: ::uint32_t = 0x00040000;
1725 pub const NOTE_VM_PRESSURE: ::uint32_t = 0x80000000;
1726 pub const NOTE_VM_PRESSURE_TERMINATE: ::uint32_t = 0x40000000;
1727 pub const NOTE_VM_PRESSURE_SUDDEN_TERMINATE: ::uint32_t = 0x20000000;
1728 pub const NOTE_VM_ERROR: ::uint32_t = 0x10000000;
1729 pub const NOTE_SECONDS: ::uint32_t = 0x00000001;
1730 pub const NOTE_USECONDS: ::uint32_t = 0x00000002;
1731 pub const NOTE_NSECONDS: ::uint32_t = 0x00000004;
1732 pub const NOTE_ABSOLUTE: ::uint32_t = 0x00000008;
1733 pub const NOTE_LEEWAY: ::uint32_t = 0x00000010;
1734 pub const NOTE_CRITICAL: ::uint32_t = 0x00000020;
1735 pub const NOTE_BACKGROUND: ::uint32_t = 0x00000040;
1736 pub const NOTE_TRACK: ::uint32_t = 0x00000001;
1737 pub const NOTE_TRACKERR: ::uint32_t = 0x00000002;
1738 pub const NOTE_CHILD: ::uint32_t = 0x00000004;
1739
1740 pub const OCRNL: ::c_int = 0x00000010;
1741 pub const ONOCR: ::c_int = 0x00000020;
1742 pub const ONLRET: ::c_int = 0x00000040;
1743 pub const OFILL: ::c_int = 0x00000080;
1744 pub const NLDLY: ::c_int = 0x00000300;
1745 pub const TABDLY: ::c_int = 0x00000c04;
1746 pub const CRDLY: ::c_int = 0x00003000;
1747 pub const FFDLY: ::c_int = 0x00004000;
1748 pub const BSDLY: ::c_int = 0x00008000;
1749 pub const VTDLY: ::c_int = 0x00010000;
1750 pub const OFDEL: ::c_int = 0x00020000;
1751
1752 pub const NL0: ::c_int = 0x00000000;
1753 pub const NL1: ::c_int = 0x00000100;
1754 pub const TAB0: ::c_int = 0x00000000;
1755 pub const TAB1: ::c_int = 0x00000400;
1756 pub const TAB2: ::c_int = 0x00000800;
1757 pub const CR0: ::c_int = 0x00000000;
1758 pub const CR1: ::c_int = 0x00001000;
1759 pub const CR2: ::c_int = 0x00002000;
1760 pub const CR3: ::c_int = 0x00003000;
1761 pub const FF0: ::c_int = 0x00000000;
1762 pub const FF1: ::c_int = 0x00004000;
1763 pub const BS0: ::c_int = 0x00000000;
1764 pub const BS1: ::c_int = 0x00008000;
1765 pub const TAB3: ::c_int = 0x00000004;
1766 pub const VT0: ::c_int = 0x00000000;
1767 pub const VT1: ::c_int = 0x00010000;
1768 pub const IUTF8: ::tcflag_t = 0x00004000;
1769 pub const CRTSCTS: ::tcflag_t = 0x00030000;
1770
1771 pub const NI_MAXHOST: ::socklen_t = 1025;
1772
1773 pub const Q_GETQUOTA: ::c_int = 0x300;
1774 pub const Q_SETQUOTA: ::c_int = 0x400;
1775
1776 pub const RTLD_LOCAL: ::c_int = 0x4;
1777 pub const RTLD_FIRST: ::c_int = 0x100;
1778 pub const RTLD_NODELETE: ::c_int = 0x80;
1779 pub const RTLD_NOLOAD: ::c_int = 0x10;
1780 pub const RTLD_GLOBAL: ::c_int = 0x8;
1781
1782 pub const _WSTOPPED: ::c_int = 0o177;
1783
1784 pub const LOG_NETINFO: ::c_int = 12 << 3;
1785 pub const LOG_REMOTEAUTH: ::c_int = 13 << 3;
1786 pub const LOG_INSTALL: ::c_int = 14 << 3;
1787 pub const LOG_RAS: ::c_int = 15 << 3;
1788 pub const LOG_LAUNCHD: ::c_int = 24 << 3;
1789 pub const LOG_NFACILITIES: ::c_int = 25;
1790
1791 pub const CTLTYPE: ::c_int = 0xf;
1792 pub const CTLTYPE_NODE: ::c_int = 1;
1793 pub const CTLTYPE_INT: ::c_int = 2;
1794 pub const CTLTYPE_STRING: ::c_int = 3;
1795 pub const CTLTYPE_QUAD: ::c_int = 4;
1796 pub const CTLTYPE_OPAQUE: ::c_int = 5;
1797 pub const CTLTYPE_STRUCT: ::c_int = CTLTYPE_OPAQUE;
1798 pub const CTLFLAG_RD: ::c_int = 0x80000000;
1799 pub const CTLFLAG_WR: ::c_int = 0x40000000;
1800 pub const CTLFLAG_RW: ::c_int = CTLFLAG_RD | CTLFLAG_WR;
1801 pub const CTLFLAG_NOLOCK: ::c_int = 0x20000000;
1802 pub const CTLFLAG_ANYBODY: ::c_int = 0x10000000;
1803 pub const CTLFLAG_SECURE: ::c_int = 0x08000000;
1804 pub const CTLFLAG_MASKED: ::c_int = 0x04000000;
1805 pub const CTLFLAG_NOAUTO: ::c_int = 0x02000000;
1806 pub const CTLFLAG_KERN: ::c_int = 0x01000000;
1807 pub const CTLFLAG_LOCKED: ::c_int = 0x00800000;
1808 pub const CTLFLAG_OID2: ::c_int = 0x00400000;
1809 pub const CTL_UNSPEC: ::c_int = 0;
1810 pub const CTL_KERN: ::c_int = 1;
1811 pub const CTL_VM: ::c_int = 2;
1812 pub const CTL_VFS: ::c_int = 3;
1813 pub const CTL_NET: ::c_int = 4;
1814 pub const CTL_DEBUG: ::c_int = 5;
1815 pub const CTL_HW: ::c_int = 6;
1816 pub const CTL_MACHDEP: ::c_int = 7;
1817 pub const CTL_USER: ::c_int = 8;
1818 pub const CTL_MAXID: ::c_int = 9;
1819 pub const KERN_OSTYPE: ::c_int = 1;
1820 pub const KERN_OSRELEASE: ::c_int = 2;
1821 pub const KERN_OSREV: ::c_int = 3;
1822 pub const KERN_VERSION: ::c_int = 4;
1823 pub const KERN_MAXVNODES: ::c_int = 5;
1824 pub const KERN_MAXPROC: ::c_int = 6;
1825 pub const KERN_MAXFILES: ::c_int = 7;
1826 pub const KERN_ARGMAX: ::c_int = 8;
1827 pub const KERN_SECURELVL: ::c_int = 9;
1828 pub const KERN_HOSTNAME: ::c_int = 10;
1829 pub const KERN_HOSTID: ::c_int = 11;
1830 pub const KERN_CLOCKRATE: ::c_int = 12;
1831 pub const KERN_VNODE: ::c_int = 13;
1832 pub const KERN_PROC: ::c_int = 14;
1833 pub const KERN_FILE: ::c_int = 15;
1834 pub const KERN_PROF: ::c_int = 16;
1835 pub const KERN_POSIX1: ::c_int = 17;
1836 pub const KERN_NGROUPS: ::c_int = 18;
1837 pub const KERN_JOB_CONTROL: ::c_int = 19;
1838 pub const KERN_SAVED_IDS: ::c_int = 20;
1839 pub const KERN_BOOTTIME: ::c_int = 21;
1840 pub const KERN_NISDOMAINNAME: ::c_int = 22;
1841 pub const KERN_DOMAINNAME: ::c_int = KERN_NISDOMAINNAME;
1842 pub const KERN_MAXPARTITIONS: ::c_int = 23;
1843 pub const KERN_KDEBUG: ::c_int = 24;
1844 pub const KERN_UPDATEINTERVAL: ::c_int = 25;
1845 pub const KERN_OSRELDATE: ::c_int = 26;
1846 pub const KERN_NTP_PLL: ::c_int = 27;
1847 pub const KERN_BOOTFILE: ::c_int = 28;
1848 pub const KERN_MAXFILESPERPROC: ::c_int = 29;
1849 pub const KERN_MAXPROCPERUID: ::c_int = 30;
1850 pub const KERN_DUMPDEV: ::c_int = 31;
1851 pub const KERN_IPC: ::c_int = 32;
1852 pub const KERN_DUMMY: ::c_int = 33;
1853 pub const KERN_PS_STRINGS: ::c_int = 34;
1854 pub const KERN_USRSTACK32: ::c_int = 35;
1855 pub const KERN_LOGSIGEXIT: ::c_int = 36;
1856 pub const KERN_SYMFILE: ::c_int = 37;
1857 pub const KERN_PROCARGS: ::c_int = 38;
1858 pub const KERN_NETBOOT: ::c_int = 40;
1859 pub const KERN_SYSV: ::c_int = 42;
1860 pub const KERN_AFFINITY: ::c_int = 43;
1861 pub const KERN_TRANSLATE: ::c_int = 44;
1862 pub const KERN_CLASSIC: ::c_int = KERN_TRANSLATE;
1863 pub const KERN_EXEC: ::c_int = 45;
1864 pub const KERN_CLASSICHANDLER: ::c_int = KERN_EXEC;
1865 pub const KERN_AIOMAX: ::c_int = 46;
1866 pub const KERN_AIOPROCMAX: ::c_int = 47;
1867 pub const KERN_AIOTHREADS: ::c_int = 48;
1868 pub const KERN_COREFILE: ::c_int = 50;
1869 pub const KERN_COREDUMP: ::c_int = 51;
1870 pub const KERN_SUGID_COREDUMP: ::c_int = 52;
1871 pub const KERN_PROCDELAYTERM: ::c_int = 53;
1872 pub const KERN_SHREG_PRIVATIZABLE: ::c_int = 54;
1873 pub const KERN_LOW_PRI_WINDOW: ::c_int = 56;
1874 pub const KERN_LOW_PRI_DELAY: ::c_int = 57;
1875 pub const KERN_POSIX: ::c_int = 58;
1876 pub const KERN_USRSTACK64: ::c_int = 59;
1877 pub const KERN_NX_PROTECTION: ::c_int = 60;
1878 pub const KERN_TFP: ::c_int = 61;
1879 pub const KERN_PROCNAME: ::c_int = 62;
1880 pub const KERN_THALTSTACK: ::c_int = 63;
1881 pub const KERN_SPECULATIVE_READS: ::c_int = 64;
1882 pub const KERN_OSVERSION: ::c_int = 65;
1883 pub const KERN_SAFEBOOT: ::c_int = 66;
1884 pub const KERN_RAGEVNODE: ::c_int = 68;
1885 pub const KERN_TTY: ::c_int = 69;
1886 pub const KERN_CHECKOPENEVT: ::c_int = 70;
1887 pub const KERN_THREADNAME: ::c_int = 71;
1888 pub const KERN_MAXID: ::c_int = 72;
1889 pub const KERN_RAGE_PROC: ::c_int = 1;
1890 pub const KERN_RAGE_THREAD: ::c_int = 2;
1891 pub const KERN_UNRAGE_PROC: ::c_int = 3;
1892 pub const KERN_UNRAGE_THREAD: ::c_int = 4;
1893 pub const KERN_OPENEVT_PROC: ::c_int = 1;
1894 pub const KERN_UNOPENEVT_PROC: ::c_int = 2;
1895 pub const KERN_TFP_POLICY: ::c_int = 1;
1896 pub const KERN_TFP_POLICY_DENY: ::c_int = 0;
1897 pub const KERN_TFP_POLICY_DEFAULT: ::c_int = 2;
1898 pub const KERN_KDEFLAGS: ::c_int = 1;
1899 pub const KERN_KDDFLAGS: ::c_int = 2;
1900 pub const KERN_KDENABLE: ::c_int = 3;
1901 pub const KERN_KDSETBUF: ::c_int = 4;
1902 pub const KERN_KDGETBUF: ::c_int = 5;
1903 pub const KERN_KDSETUP: ::c_int = 6;
1904 pub const KERN_KDREMOVE: ::c_int = 7;
1905 pub const KERN_KDSETREG: ::c_int = 8;
1906 pub const KERN_KDGETREG: ::c_int = 9;
1907 pub const KERN_KDREADTR: ::c_int = 10;
1908 pub const KERN_KDPIDTR: ::c_int = 11;
1909 pub const KERN_KDTHRMAP: ::c_int = 12;
1910 pub const KERN_KDPIDEX: ::c_int = 14;
1911 pub const KERN_KDSETRTCDEC: ::c_int = 15;
1912 pub const KERN_KDGETENTROPY: ::c_int = 16;
1913 pub const KERN_KDWRITETR: ::c_int = 17;
1914 pub const KERN_KDWRITEMAP: ::c_int = 18;
1915 pub const KERN_KDENABLE_BG_TRACE: ::c_int = 19;
1916 pub const KERN_KDDISABLE_BG_TRACE: ::c_int = 20;
1917 pub const KERN_KDREADCURTHRMAP: ::c_int = 21;
1918 pub const KERN_KDSET_TYPEFILTER: ::c_int = 22;
1919 pub const KERN_KDBUFWAIT: ::c_int = 23;
1920 pub const KERN_KDCPUMAP: ::c_int = 24;
1921 pub const KERN_PROC_ALL: ::c_int = 0;
1922 pub const KERN_PROC_PID: ::c_int = 1;
1923 pub const KERN_PROC_PGRP: ::c_int = 2;
1924 pub const KERN_PROC_SESSION: ::c_int = 3;
1925 pub const KERN_PROC_TTY: ::c_int = 4;
1926 pub const KERN_PROC_UID: ::c_int = 5;
1927 pub const KERN_PROC_RUID: ::c_int = 6;
1928 pub const KERN_PROC_LCID: ::c_int = 7;
1929 pub const KIPC_MAXSOCKBUF: ::c_int = 1;
1930 pub const KIPC_SOCKBUF_WASTE: ::c_int = 2;
1931 pub const KIPC_SOMAXCONN: ::c_int = 3;
1932 pub const KIPC_MAX_LINKHDR: ::c_int = 4;
1933 pub const KIPC_MAX_PROTOHDR: ::c_int = 5;
1934 pub const KIPC_MAX_HDR: ::c_int = 6;
1935 pub const KIPC_MAX_DATALEN: ::c_int = 7;
1936 pub const KIPC_MBSTAT: ::c_int = 8;
1937 pub const KIPC_NMBCLUSTERS: ::c_int = 9;
1938 pub const KIPC_SOQLIMITCOMPAT: ::c_int = 10;
1939 pub const VM_METER: ::c_int = 1;
1940 pub const VM_LOADAVG: ::c_int = 2;
1941 pub const VM_MACHFACTOR: ::c_int = 4;
1942 pub const VM_SWAPUSAGE: ::c_int = 5;
1943 pub const VM_MAXID: ::c_int = 6;
1944 pub const HW_MACHINE: ::c_int = 1;
1945 pub const HW_MODEL: ::c_int = 2;
1946 pub const HW_NCPU: ::c_int = 3;
1947 pub const HW_BYTEORDER: ::c_int = 4;
1948 pub const HW_PHYSMEM: ::c_int = 5;
1949 pub const HW_USERMEM: ::c_int = 6;
1950 pub const HW_PAGESIZE: ::c_int = 7;
1951 pub const HW_DISKNAMES: ::c_int = 8;
1952 pub const HW_DISKSTATS: ::c_int = 9;
1953 pub const HW_EPOCH: ::c_int = 10;
1954 pub const HW_FLOATINGPT: ::c_int = 11;
1955 pub const HW_MACHINE_ARCH: ::c_int = 12;
1956 pub const HW_VECTORUNIT: ::c_int = 13;
1957 pub const HW_BUS_FREQ: ::c_int = 14;
1958 pub const HW_CPU_FREQ: ::c_int = 15;
1959 pub const HW_CACHELINE: ::c_int = 16;
1960 pub const HW_L1ICACHESIZE: ::c_int = 17;
1961 pub const HW_L1DCACHESIZE: ::c_int = 18;
1962 pub const HW_L2SETTINGS: ::c_int = 19;
1963 pub const HW_L2CACHESIZE: ::c_int = 20;
1964 pub const HW_L3SETTINGS: ::c_int = 21;
1965 pub const HW_L3CACHESIZE: ::c_int = 22;
1966 pub const HW_TB_FREQ: ::c_int = 23;
1967 pub const HW_MEMSIZE: ::c_int = 24;
1968 pub const HW_AVAILCPU: ::c_int = 25;
1969 pub const HW_MAXID: ::c_int = 26;
1970 pub const USER_CS_PATH: ::c_int = 1;
1971 pub const USER_BC_BASE_MAX: ::c_int = 2;
1972 pub const USER_BC_DIM_MAX: ::c_int = 3;
1973 pub const USER_BC_SCALE_MAX: ::c_int = 4;
1974 pub const USER_BC_STRING_MAX: ::c_int = 5;
1975 pub const USER_COLL_WEIGHTS_MAX: ::c_int = 6;
1976 pub const USER_EXPR_NEST_MAX: ::c_int = 7;
1977 pub const USER_LINE_MAX: ::c_int = 8;
1978 pub const USER_RE_DUP_MAX: ::c_int = 9;
1979 pub const USER_POSIX2_VERSION: ::c_int = 10;
1980 pub const USER_POSIX2_C_BIND: ::c_int = 11;
1981 pub const USER_POSIX2_C_DEV: ::c_int = 12;
1982 pub const USER_POSIX2_CHAR_TERM: ::c_int = 13;
1983 pub const USER_POSIX2_FORT_DEV: ::c_int = 14;
1984 pub const USER_POSIX2_FORT_RUN: ::c_int = 15;
1985 pub const USER_POSIX2_LOCALEDEF: ::c_int = 16;
1986 pub const USER_POSIX2_SW_DEV: ::c_int = 17;
1987 pub const USER_POSIX2_UPE: ::c_int = 18;
1988 pub const USER_STREAM_MAX: ::c_int = 19;
1989 pub const USER_TZNAME_MAX: ::c_int = 20;
1990 pub const USER_MAXID: ::c_int = 21;
1991 pub const CTL_DEBUG_NAME: ::c_int = 0;
1992 pub const CTL_DEBUG_VALUE: ::c_int = 1;
1993 pub const CTL_DEBUG_MAXID: ::c_int = 20;
1994
1995 pub const PRIO_DARWIN_THREAD: ::c_int = 3;
1996 pub const PRIO_DARWIN_PROCESS: ::c_int = 4;
1997 pub const PRIO_DARWIN_BG: ::c_int = 0x1000;
1998 pub const PRIO_DARWIN_NONUI: ::c_int = 0x1001;
1999
2000 pub const SEM_FAILED: *mut sem_t = -1isize as *mut ::sem_t;
2001
2002 pub const SIGEV_NONE: ::c_int = 0;
2003 pub const SIGEV_SIGNAL: ::c_int = 1;
2004 pub const SIGEV_THREAD: ::c_int = 3;
2005
2006 pub const AIO_CANCELED: ::c_int = 2;
2007 pub const AIO_NOTCANCELED: ::c_int = 4;
2008 pub const AIO_ALLDONE: ::c_int = 1;
2009 pub const AIO_LISTIO_MAX: ::c_int = 16;
2010 pub const LIO_NOP: ::c_int = 0;
2011 pub const LIO_WRITE: ::c_int = 2;
2012 pub const LIO_READ: ::c_int = 1;
2013 pub const LIO_WAIT: ::c_int = 2;
2014 pub const LIO_NOWAIT: ::c_int = 1;
2015
2016 pub const WEXITED: ::c_int = 0x00000004;
2017 pub const WSTOPPED: ::c_int = 0x00000008;
2018 pub const WCONTINUED: ::c_int = 0x00000010;
2019 pub const WNOWAIT: ::c_int = 0x00000020;
2020
2021 pub const P_ALL: idtype_t = 0;
2022 pub const P_PID: idtype_t = 1;
2023 pub const P_PGID: idtype_t = 2;
2024
2025 pub const XATTR_NOFOLLOW: ::c_int = 0x0001;
2026 pub const XATTR_CREATE: ::c_int = 0x0002;
2027 pub const XATTR_REPLACE: ::c_int = 0x0004;
2028 pub const XATTR_NOSECURITY: ::c_int = 0x0008;
2029 pub const XATTR_NODEFAULT: ::c_int = 0x0010;
2030 pub const XATTR_SHOWCOMPRESSION: ::c_int = 0x0020;
2031
2032 pub const NET_RT_IFLIST2: ::c_int = 0x0006;
2033 pub const RTM_IFINFO2: ::c_int = 0x0012;
2034
2035 pub const KERN_PROCARGS2: ::c_int = 49;
2036
2037 pub const PROC_PIDTASKALLINFO: ::c_int = 2;
2038 pub const PROC_PIDTASKINFO: ::c_int = 4;
2039 pub const PROC_PIDTHREADINFO: ::c_int = 5;
2040 pub const MAXCOMLEN: usize = 16;
2041 pub const MAXTHREADNAMESIZE: usize = 64;
2042
2043 pub const XUCRED_VERSION: ::c_uint = 0;
2044
2045 pub const LC_SEGMENT: u32 = 0x1;
2046 pub const LC_SEGMENT_64: u32 = 0x19;
2047
2048 pub const MH_MAGIC: u32 = 0xfeedface;
2049 pub const MH_MAGIC_64: u32 = 0xfeedfacf;
2050
2051 f! {
2052 pub fn WSTOPSIG(status: ::c_int) -> ::c_int {
2053 status >> 8
2054 }
2055
2056 pub fn _WSTATUS(status: ::c_int) -> ::c_int {
2057 status & 0x7f
2058 }
2059
2060 pub fn WIFCONTINUED(status: ::c_int) -> bool {
2061 _WSTATUS(status) == _WSTOPPED && WSTOPSIG(status) == 0x13
2062 }
2063
2064 pub fn WIFSIGNALED(status: ::c_int) -> bool {
2065 _WSTATUS(status) != _WSTOPPED && _WSTATUS(status) != 0
2066 }
2067
2068 pub fn WIFSTOPPED(status: ::c_int) -> bool {
2069 _WSTATUS(status) == _WSTOPPED && WSTOPSIG(status) != 0x13
2070 }
2071 }
2072
2073 extern {
2074 pub fn aio_read(aiocbp: *mut aiocb) -> ::c_int;
2075 pub fn aio_write(aiocbp: *mut aiocb) -> ::c_int;
2076 pub fn aio_fsync(op: ::c_int, aiocbp: *mut aiocb) -> ::c_int;
2077 pub fn aio_error(aiocbp: *const aiocb) -> ::c_int;
2078 pub fn aio_return(aiocbp: *mut aiocb) -> ::ssize_t;
2079 #[cfg_attr(all(target_os = "macos", target_arch = "x86"),
2080 link_name = "aio_suspend$UNIX2003")]
2081 pub fn aio_suspend(aiocb_list: *const *const aiocb, nitems: ::c_int,
2082 timeout: *const ::timespec) -> ::c_int;
2083 pub fn aio_cancel(fd: ::c_int, aiocbp: *mut aiocb) -> ::c_int;
2084 pub fn clock_getres(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
2085 pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
2086 pub fn lio_listio(mode: ::c_int, aiocb_list: *const *mut aiocb,
2087 nitems: ::c_int, sevp: *mut sigevent) -> ::c_int;
2088
2089 pub fn dirfd(dirp: *mut ::DIR) -> ::c_int;
2090
2091 pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int;
2092
2093 pub fn getutxent() -> *mut utmpx;
2094 pub fn getutxid(ut: *const utmpx) -> *mut utmpx;
2095 pub fn getutxline(ut: *const utmpx) -> *mut utmpx;
2096 pub fn pututxline(ut: *const utmpx) -> *mut utmpx;
2097 pub fn setutxent();
2098 pub fn endutxent();
2099 pub fn utmpxname(file: *const ::c_char) -> ::c_int;
2100
2101 pub fn getnameinfo(sa: *const ::sockaddr,
2102 salen: ::socklen_t,
2103 host: *mut ::c_char,
2104 hostlen: ::socklen_t,
2105 serv: *mut ::c_char,
2106 sevlen: ::socklen_t,
2107 flags: ::c_int) -> ::c_int;
2108 pub fn mincore(addr: *const ::c_void, len: ::size_t,
2109 vec: *mut ::c_char) -> ::c_int;
2110 pub fn sysctlnametomib(name: *const ::c_char,
2111 mibp: *mut ::c_int,
2112 sizep: *mut ::size_t)
2113 -> ::c_int;
2114 #[cfg_attr(all(target_os = "macos", target_arch = "x86"),
2115 link_name = "mprotect$UNIX2003")]
2116 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int)
2117 -> ::c_int;
2118 pub fn shm_open(name: *const ::c_char, oflag: ::c_int, ...) -> ::c_int;
2119 pub fn sysctl(name: *mut ::c_int,
2120 namelen: ::c_uint,
2121 oldp: *mut ::c_void,
2122 oldlenp: *mut ::size_t,
2123 newp: *mut ::c_void,
2124 newlen: ::size_t)
2125 -> ::c_int;
2126 pub fn sysctlbyname(name: *const ::c_char,
2127 oldp: *mut ::c_void,
2128 oldlenp: *mut ::size_t,
2129 newp: *mut ::c_void,
2130 newlen: ::size_t)
2131 -> ::c_int;
2132 pub fn mach_absolute_time() -> u64;
2133 pub fn mach_timebase_info(info: *mut ::mach_timebase_info) -> ::c_int;
2134 pub fn pthread_setname_np(name: *const ::c_char) -> ::c_int;
2135 pub fn pthread_get_stackaddr_np(thread: ::pthread_t) -> *mut ::c_void;
2136 pub fn pthread_get_stacksize_np(thread: ::pthread_t) -> ::size_t;
2137 pub fn pthread_condattr_setpshared(attr: *mut pthread_condattr_t,
2138 pshared: ::c_int) -> ::c_int;
2139 pub fn pthread_condattr_getpshared(attr: *const pthread_condattr_t,
2140 pshared: *mut ::c_int) -> ::c_int;
2141 pub fn pthread_mutexattr_setpshared(attr: *mut pthread_mutexattr_t,
2142 pshared: ::c_int) -> ::c_int;
2143 pub fn pthread_mutexattr_getpshared(attr: *const pthread_mutexattr_t,
2144 pshared: *mut ::c_int) -> ::c_int;
2145 pub fn pthread_rwlockattr_getpshared(attr: *const pthread_rwlockattr_t,
2146 val: *mut ::c_int) -> ::c_int;
2147 pub fn pthread_rwlockattr_setpshared(attr: *mut pthread_rwlockattr_t,
2148 val: ::c_int) -> ::c_int;
2149 pub fn __error() -> *mut ::c_int;
2150 pub fn backtrace(buf: *mut *mut ::c_void,
2151 sz: ::c_int) -> ::c_int;
2152 #[cfg_attr(target_os = "macos", link_name = "statfs$INODE64")]
2153 pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int;
2154 #[cfg_attr(target_os = "macos", link_name = "fstatfs$INODE64")]
2155 pub fn fstatfs(fd: ::c_int, buf: *mut statfs) -> ::c_int;
2156 pub fn kevent(kq: ::c_int,
2157 changelist: *const ::kevent,
2158 nchanges: ::c_int,
2159 eventlist: *mut ::kevent,
2160 nevents: ::c_int,
2161 timeout: *const ::timespec) -> ::c_int;
2162 pub fn kevent64(kq: ::c_int,
2163 changelist: *const ::kevent64_s,
2164 nchanges: ::c_int,
2165 eventlist: *mut ::kevent64_s,
2166 nevents: ::c_int,
2167 flags: ::c_uint,
2168 timeout: *const ::timespec) -> ::c_int;
2169 pub fn mount(src: *const ::c_char,
2170 target: *const ::c_char,
2171 flags: ::c_int,
2172 data: *mut ::c_void) -> ::c_int;
2173 pub fn ptrace(request: ::c_int,
2174 pid: ::pid_t,
2175 addr: *mut ::c_char,
2176 data: ::c_int) -> ::c_int;
2177 pub fn quotactl(special: *const ::c_char,
2178 cmd: ::c_int,
2179 id: ::c_int,
2180 data: *mut ::c_char) -> ::c_int;
2181 pub fn sethostname(name: *const ::c_char, len: ::c_int) -> ::c_int;
2182 pub fn sendfile(fd: ::c_int,
2183 s: ::c_int,
2184 offset: ::off_t,
2185 len: *mut ::off_t,
2186 hdtr: *mut ::sf_hdtr,
2187 flags: ::c_int) -> ::c_int;
2188 pub fn openpty(amaster: *mut ::c_int,
2189 aslave: *mut ::c_int,
2190 name: *mut ::c_char,
2191 termp: *mut termios,
2192 winp: *mut ::winsize) -> ::c_int;
2193 pub fn forkpty(amaster: *mut ::c_int,
2194 name: *mut ::c_char,
2195 termp: *mut termios,
2196 winp: *mut ::winsize) -> ::pid_t;
2197 pub fn duplocale(base: ::locale_t) -> ::locale_t;
2198 pub fn freelocale(loc: ::locale_t) -> ::c_int;
2199 pub fn localeconv_l(loc: ::locale_t) -> *mut lconv;
2200 pub fn newlocale(mask: ::c_int,
2201 locale: *const ::c_char,
2202 base: ::locale_t) -> ::locale_t;
2203 pub fn uselocale(loc: ::locale_t) -> ::locale_t;
2204 pub fn querylocale(mask: ::c_int, loc: ::locale_t) -> *const ::c_char;
2205 pub fn getpriority(which: ::c_int, who: ::id_t) -> ::c_int;
2206 pub fn setpriority(which: ::c_int, who: ::id_t, prio: ::c_int) -> ::c_int;
2207
2208 pub fn getxattr(path: *const ::c_char, name: *const ::c_char,
2209 value: *mut ::c_void, size: ::size_t, position: u32,
2210 flags: ::c_int) -> ::ssize_t;
2211 pub fn fgetxattr(filedes: ::c_int, name: *const ::c_char,
2212 value: *mut ::c_void, size: ::size_t, position: u32,
2213 flags: ::c_int) -> ::ssize_t;
2214 pub fn setxattr(path: *const ::c_char, name: *const ::c_char,
2215 value: *const ::c_void, size: ::size_t, position: u32,
2216 flags: ::c_int) -> ::c_int;
2217 pub fn fsetxattr(filedes: ::c_int, name: *const ::c_char,
2218 value: *const ::c_void, size: ::size_t, position: u32,
2219 flags: ::c_int) -> ::c_int;
2220 pub fn listxattr(path: *const ::c_char, list: *mut ::c_char,
2221 size: ::size_t, flags: ::c_int) -> ::ssize_t;
2222 pub fn flistxattr(filedes: ::c_int, list: *mut ::c_char,
2223 size: ::size_t, flags: ::c_int) -> ::ssize_t;
2224 pub fn removexattr(path: *const ::c_char, name: *const ::c_char,
2225 flags: ::c_int) -> ::c_int;
2226 pub fn fremovexattr(filedes: ::c_int, name: *const ::c_char,
2227 flags: ::c_int) -> ::c_int;
2228
2229 pub fn getgrouplist(name: *const ::c_char,
2230 basegid: ::c_int,
2231 groups: *mut ::c_int,
2232 ngroups: *mut ::c_int) -> ::c_int;
2233 pub fn initgroups(user: *const ::c_char, basegroup: ::c_int) -> ::c_int;
2234
2235 #[cfg_attr(all(target_os = "macos", target_arch = "x86"),
2236 link_name = "waitid$UNIX2003")]
2237 pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t,
2238 options: ::c_int) -> ::c_int;
2239 pub fn brk(addr: *const ::c_void) -> *mut ::c_void;
2240 pub fn sbrk(increment: ::c_int) -> *mut ::c_void;
2241 pub fn settimeofday(tv: *const ::timeval, tz: *const ::timezone) -> ::c_int;
2242 pub fn _dyld_image_count() -> u32;
2243 pub fn _dyld_get_image_header(image_index: u32) -> *const mach_header;
2244 pub fn _dyld_get_image_vmaddr_slide(image_index: u32) -> ::intptr_t;
2245 pub fn _dyld_get_image_name(image_index: u32) -> *const ::c_char;
2246 }
2247
2248 cfg_if! {
2249 if #[cfg(any(target_arch = "arm", target_arch = "x86"))] {
2250 mod b32;
2251 pub use self::b32::*;
2252 } else if #[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))] {
2253 mod b64;
2254 pub use self::b64::*;
2255 } else {
2256 // Unknown target_arch
2257 }
2258 }