1 pub type dev_t = u32;
2 pub type c_char = i8;
3 pub type wchar_t = i32;
4 pub type clock_t = u64;
5 pub type ino_t = u64;
6 pub type lwpid_t = i32;
7 pub type nlink_t = u32;
8 pub type blksize_t = i64;
9 pub type clockid_t = ::c_ulong;
10 
11 pub type c_long = i64;
12 pub type c_ulong = u64;
13 pub type time_t = i64;
14 pub type suseconds_t = i64;
15 
16 pub type uuid_t = ::uuid;
17 
18 pub type fsblkcnt_t = u64;
19 pub type fsfilcnt_t = u64;
20 pub type idtype_t = ::c_uint;
21 pub type shmatt_t = ::c_uint;
22 
23 pub type mqd_t = ::c_int;
24 pub type sem_t = *mut sem;
25 
26 pub type cpuset_t = cpumask_t;
27 pub type cpu_set_t = cpumask_t;
28 
29 pub type register_t = ::c_long;
30 pub type umtx_t = ::c_int;
31 pub type pthread_barrierattr_t = ::c_int;
32 pub type pthread_barrier_t = ::uintptr_t;
33 pub type pthread_spinlock_t = ::uintptr_t;
34 
35 #[cfg_attr(feature = "extra_traits", derive(Debug))]
36 pub enum sem {}
37 impl ::Copy for sem {}
38 impl ::Clone for sem {
clone(&self) -> sem39     fn clone(&self) -> sem {
40         *self
41     }
42 }
43 
44 s! {
45     pub struct kevent {
46         pub ident: ::uintptr_t,
47         pub filter: ::c_short,
48         pub flags: ::c_ushort,
49         pub fflags: ::c_uint,
50         pub data: ::intptr_t,
51         pub udata: *mut ::c_void,
52     }
53 
54     pub struct exit_status {
55         pub e_termination: u16,
56         pub e_exit: u16
57     }
58 
59     pub struct aiocb {
60         pub aio_fildes: ::c_int,
61         pub aio_offset: ::off_t,
62         pub aio_buf: *mut ::c_void,
63         pub aio_nbytes: ::size_t,
64         pub aio_sigevent: sigevent,
65         pub aio_lio_opcode: ::c_int,
66         pub aio_reqprio: ::c_int,
67         _aio_val: ::c_int,
68         _aio_err: ::c_int
69     }
70 
71     pub struct uuid {
72         pub time_low: u32,
73         pub time_mid: u16,
74         pub time_hi_and_version: u16,
75         pub clock_seq_hi_and_reserved: u8,
76         pub clock_seq_low: u8,
77         pub node: [u8; 6],
78     }
79 
80     pub struct mq_attr {
81         pub mq_flags: ::c_long,
82         pub mq_maxmsg: ::c_long,
83         pub mq_msgsize: ::c_long,
84         pub mq_curmsgs: ::c_long,
85     }
86 
87     pub struct statvfs {
88         pub f_bsize: ::c_ulong,
89         pub f_frsize: ::c_ulong,
90         pub f_blocks: ::fsblkcnt_t,
91         pub f_bfree: ::fsblkcnt_t,
92         pub f_bavail: ::fsblkcnt_t,
93         pub f_files: ::fsfilcnt_t,
94         pub f_ffree: ::fsfilcnt_t,
95         pub f_favail: ::fsfilcnt_t,
96         pub f_fsid: ::c_ulong,
97         pub f_flag: ::c_ulong,
98         pub f_namemax: ::c_ulong,
99         pub f_owner: ::uid_t,
100         pub f_type: ::c_uint,
101         pub f_syncreads: u64,
102         pub f_syncwrites: u64,
103         pub f_asyncreads: u64,
104         pub f_asyncwrites: u64,
105         pub f_fsid_uuid: ::uuid_t,
106         pub f_uid_uuid: ::uuid_t,
107     }
108 
109     #[deprecated(
110         since = "0.2.107",
111         note = "stat.st_blksize is an i64 and stat.st_qspare1 is replaced with \
112                 stat.st_blksize in DragonFly 5.8"
113     )]
114     pub struct stat {
115         pub st_ino: ::ino_t,
116         pub st_nlink: ::nlink_t,
117         pub st_dev: ::dev_t,
118         pub st_mode: ::mode_t,
119         pub st_padding1: u16,
120         pub st_uid: ::uid_t,
121         pub st_gid: ::gid_t,
122         pub st_rdev: ::dev_t,
123         pub st_atime: ::time_t,
124         pub st_atime_nsec: ::c_long,
125         pub st_mtime: ::time_t,
126         pub st_mtime_nsec: ::c_long,
127         pub st_ctime: ::time_t,
128         pub st_ctime_nsec: ::c_long,
129         pub st_size: ::off_t,
130         pub st_blocks: i64,
131         pub st_blksize: u32,
132         pub st_flags: u32,
133         pub st_gen: u32,
134         pub st_lspare: i32,
135         pub st_qspare1: i64,
136         pub st_qspare2: i64,
137     }
138 
139     pub struct if_data {
140         pub ifi_type: ::c_uchar,
141         pub ifi_physical: ::c_uchar,
142         pub ifi_addrlen: ::c_uchar,
143         pub ifi_hdrlen: ::c_uchar,
144         pub ifi_recvquota: ::c_uchar,
145         pub ifi_xmitquota: ::c_uchar,
146         pub ifi_mtu: ::c_ulong,
147         pub ifi_metric: ::c_ulong,
148         pub ifi_link_state: ::c_ulong,
149         pub ifi_baudrate: u64,
150         pub ifi_ipackets: ::c_ulong,
151         pub ifi_ierrors: ::c_ulong,
152         pub ifi_opackets: ::c_ulong,
153         pub ifi_oerrors: ::c_ulong,
154         pub ifi_collisions: ::c_ulong,
155         pub ifi_ibytes: ::c_ulong,
156         pub ifi_obytes: ::c_ulong,
157         pub ifi_imcasts: ::c_ulong,
158         pub ifi_omcasts: ::c_ulong,
159         pub ifi_iqdrops: ::c_ulong,
160         pub ifi_noproto: ::c_ulong,
161         pub ifi_hwassist: ::c_ulong,
162         pub ifi_oqdrops: ::c_ulong,
163         pub ifi_lastchange: ::timeval,
164     }
165 
166     pub struct if_msghdr {
167         pub ifm_msglen: ::c_ushort,
168         pub ifm_version: ::c_uchar,
169         pub ifm_type: ::c_uchar,
170         pub ifm_addrs: ::c_int,
171         pub ifm_flags: ::c_int,
172         pub ifm_index: ::c_ushort,
173         pub ifm_data: if_data,
174     }
175 
176     pub struct sockaddr_dl {
177         pub sdl_len: ::c_uchar,
178         pub sdl_family: ::c_uchar,
179         pub sdl_index: ::c_ushort,
180         pub sdl_type: ::c_uchar,
181         pub sdl_nlen: ::c_uchar,
182         pub sdl_alen: ::c_uchar,
183         pub sdl_slen: ::c_uchar,
184         pub sdl_data: [::c_char; 12],
185         pub sdl_rcf: ::c_ushort,
186         pub sdl_route: [::c_ushort; 16],
187     }
188 
189     pub struct xucred {
190         pub cr_version: ::c_uint,
191         pub cr_uid: ::uid_t,
192         pub cr_ngroups: ::c_short,
193         pub cr_groups: [::gid_t; 16],
194         __cr_unused1: *mut ::c_void,
195     }
196 
197     pub struct stack_t {
198         pub ss_sp: *mut ::c_void,
199         pub ss_size: ::size_t,
200         pub ss_flags: ::c_int,
201     }
202 
203     pub struct cpumask_t {
204         ary: [u64; 4],
205     }
206 
207     pub struct shmid_ds {
208         pub shm_perm: ::ipc_perm,
209         pub shm_segsz: ::size_t,
210         pub shm_lpid: ::pid_t,
211         pub shm_cpid: ::pid_t,
212         pub shm_nattch: ::shmatt_t,
213         pub shm_atime: ::time_t,
214         pub shm_dtime: ::time_t,
215         pub shm_ctime: ::time_t,
216         shm_internal: *mut ::c_void,
217     }
218 }
219 
220 s_no_extra_traits! {
221     pub struct utmpx {
222         pub ut_name: [::c_char; 32],
223         pub ut_id: [::c_char; 4],
224 
225         pub ut_line: [::c_char; 32],
226         pub ut_host: [::c_char; 256],
227 
228         pub ut_unused: [u8; 16],
229         pub ut_session: u16,
230         pub ut_type: u16,
231         pub ut_pid: ::pid_t,
232         ut_exit: exit_status,
233         ut_ss: ::sockaddr_storage,
234         pub ut_tv: ::timeval,
235         pub ut_unused2: [u8; 16],
236     }
237 
238     pub struct lastlogx {
239         pub ll_tv: ::timeval,
240         pub ll_line: [::c_char; _UTX_LINESIZE],
241         pub ll_host: [::c_char; _UTX_HOSTSIZE],
242         pub ll_ss: ::sockaddr_storage,
243     }
244 
245     pub struct dirent {
246         pub d_fileno: ::ino_t,
247         pub d_namlen: u16,
248         pub d_type: u8,
249         __unused1: u8,
250         __unused2: u32,
251         pub d_name: [::c_char; 256],
252     }
253 
254     pub struct statfs {
255         __spare2: ::c_long,
256         pub f_bsize: ::c_long,
257         pub f_iosize: ::c_long,
258         pub f_blocks: ::c_long,
259         pub f_bfree: ::c_long,
260         pub f_bavail: ::c_long,
261         pub f_files: ::c_long,
262         pub f_ffree: ::c_long,
263         pub f_fsid: ::fsid_t,
264         pub f_owner: ::uid_t,
265         pub f_type: ::c_int,
266         pub f_flags: ::c_int,
267         pub f_syncwrites: ::c_long,
268         pub f_asyncwrites: ::c_long,
269         pub f_fstypename: [::c_char; 16],
270         pub f_mntonname: [::c_char; 80],
271         pub f_syncreads: ::c_long,
272         pub f_asyncreads: ::c_long,
273         __spares1: ::c_short,
274         pub f_mntfromname: [::c_char; 80],
275         __spares2: ::c_short,
276         __spare: [::c_long; 2],
277     }
278 
279     pub struct sigevent {
280         pub sigev_notify: ::c_int,
281         // The union is 8-byte in size, so it is aligned at a 8-byte offset.
282         #[cfg(target_pointer_width = "64")]
283         __unused1: ::c_int,
284         pub sigev_signo: ::c_int,       //actually a union
285         // pad the union
286         #[cfg(target_pointer_width = "64")]
287         __unused2: ::c_int,
288         pub sigev_value: ::sigval,
289         __unused3: *mut ::c_void        //actually a function pointer
290     }
291 
292     pub struct mcontext_t {
293         pub mc_onstack: register_t,
294         pub mc_rdi: register_t,
295         pub mc_rsi: register_t,
296         pub mc_rdx: register_t,
297         pub mc_rcx: register_t,
298         pub mc_r8: register_t,
299         pub mc_r9: register_t,
300         pub mc_rax: register_t,
301         pub mc_rbx: register_t,
302         pub mc_rbp: register_t,
303         pub mc_r10: register_t,
304         pub mc_r11: register_t,
305         pub mc_r12: register_t,
306         pub mc_r13: register_t,
307         pub mc_r14: register_t,
308         pub mc_r15: register_t,
309         pub mc_xflags: register_t,
310         pub mc_trapno: register_t,
311         pub mc_addr: register_t,
312         pub mc_flags: register_t,
313         pub mc_err: register_t,
314         pub mc_rip: register_t,
315         pub mc_cs: register_t,
316         pub mc_rflags: register_t,
317         pub mc_rsp: register_t,
318         pub mc_ss: register_t,
319         pub mc_len: ::c_uint,
320         pub mc_fpformat: ::c_uint,
321         pub mc_ownedfp: ::c_uint,
322         __reserved: ::c_uint,
323         __unused: [::c_uint; 8],
324         pub mc_fpregs: [[::c_uint; 8]; 32],
325     }
326 
327     pub struct ucontext_t {
328         pub uc_sigmask: ::sigset_t,
329         pub uc_mcontext: mcontext_t,
330         pub uc_link: *mut ucontext_t,
331         pub uc_stack: stack_t,
332         pub uc_cofunc: ::Option<unsafe extern "C" fn(uc: *mut ucontext_t, arg: *mut ::c_void)>,
333         pub uc_arg: *mut ::c_void,
334         __pad: [::c_int; 4],
335     }
336 }
337 
338 cfg_if! {
339     if #[cfg(feature = "extra_traits")] {
340         impl PartialEq for utmpx {
341             fn eq(&self, other: &utmpx) -> bool {
342                 self.ut_name == other.ut_name
343                     && self.ut_id == other.ut_id
344                     && self.ut_line == other.ut_line
345                     && self
346                     .ut_host
347                     .iter()
348                     .zip(other.ut_host.iter())
349                     .all(|(a,b)| a == b)
350                     && self.ut_unused == other.ut_unused
351                     && self.ut_session == other.ut_session
352                     && self.ut_type == other.ut_type
353                     && self.ut_pid == other.ut_pid
354                     && self.ut_exit == other.ut_exit
355                     && self.ut_ss == other.ut_ss
356                     && self.ut_tv == other.ut_tv
357                     && self.ut_unused2 == other.ut_unused2
358             }
359         }
360         impl Eq for utmpx {}
361         impl ::fmt::Debug for utmpx {
362             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
363                 f.debug_struct("utmpx")
364                     .field("ut_name", &self.ut_name)
365                     .field("ut_id", &self.ut_id)
366                     .field("ut_line", &self.ut_line)
367                     // FIXME: .field("ut_host", &self.ut_host)
368                     .field("ut_unused", &self.ut_unused)
369                     .field("ut_session", &self.ut_session)
370                     .field("ut_type", &self.ut_type)
371                     .field("ut_pid", &self.ut_pid)
372                     .field("ut_exit", &self.ut_exit)
373                     .field("ut_ss", &self.ut_ss)
374                     .field("ut_tv", &self.ut_tv)
375                     .field("ut_unused2", &self.ut_unused2)
376                     .finish()
377             }
378         }
379         impl ::hash::Hash for utmpx {
380             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
381                 self.ut_name.hash(state);
382                 self.ut_id.hash(state);
383                 self.ut_line.hash(state);
384                 self.ut_host.hash(state);
385                 self.ut_unused.hash(state);
386                 self.ut_session.hash(state);
387                 self.ut_type.hash(state);
388                 self.ut_pid.hash(state);
389                 self.ut_exit.hash(state);
390                 self.ut_ss.hash(state);
391                 self.ut_tv.hash(state);
392                 self.ut_unused2.hash(state);
393             }
394         }
395         impl PartialEq for lastlogx {
396             fn eq(&self, other: &lastlogx) -> bool {
397                 self.ll_tv == other.ll_tv
398                     && self.ll_line == other.ll_line
399                     && self.ll_host == other.ll_host
400                     && self.ll_ss == other.ll_ss
401             }
402         }
403         impl Eq for lastlogx {}
404         impl ::fmt::Debug for lastlogx {
405             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
406                 f.debug_struct("lastlogx")
407                     .field("ll_tv", &self.ll_tv)
408                     .field("ll_line", &self.ll_line)
409                     .field("ll_host", &self.ll_host)
410                     .field("ll_ss", &self.ll_ss)
411                     .finish()
412             }
413         }
414         impl ::hash::Hash for lastlogx {
415             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
416                 self.ll_tv.hash(state);
417                 self.ll_line.hash(state);
418                 self.ll_host.hash(state);
419                 self.ll_ss.hash(state);
420             }
421         }
422 
423         impl PartialEq for dirent {
424             fn eq(&self, other: &dirent) -> bool {
425                 self.d_fileno == other.d_fileno
426                     && self.d_namlen == other.d_namlen
427                     && self.d_type == other.d_type
428                     // Ignore __unused1
429                     // Ignore __unused2
430                     && self
431                     .d_name
432                     .iter()
433                     .zip(other.d_name.iter())
434                     .all(|(a,b)| a == b)
435             }
436         }
437         impl Eq for dirent {}
438         impl ::fmt::Debug for dirent {
439             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
440                 f.debug_struct("dirent")
441                     .field("d_fileno", &self.d_fileno)
442                     .field("d_namlen", &self.d_namlen)
443                     .field("d_type", &self.d_type)
444                     // Ignore __unused1
445                     // Ignore __unused2
446                     // FIXME: .field("d_name", &self.d_name)
447                     .finish()
448             }
449         }
450         impl ::hash::Hash for dirent {
451             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
452                 self.d_fileno.hash(state);
453                 self.d_namlen.hash(state);
454                 self.d_type.hash(state);
455                     // Ignore __unused1
456                     // Ignore __unused2
457                 self.d_name.hash(state);
458             }
459         }
460 
461         impl PartialEq for statfs {
462             fn eq(&self, other: &statfs) -> bool {
463                 self.f_bsize == other.f_bsize
464                     && self.f_iosize == other.f_iosize
465                     && self.f_blocks == other.f_blocks
466                     && self.f_bfree == other.f_bfree
467                     && self.f_bavail == other.f_bavail
468                     && self.f_files == other.f_files
469                     && self.f_ffree == other.f_ffree
470                     && self.f_fsid == other.f_fsid
471                     && self.f_owner == other.f_owner
472                     && self.f_type == other.f_type
473                     && self.f_flags == other.f_flags
474                     && self.f_syncwrites == other.f_syncwrites
475                     && self.f_asyncwrites == other.f_asyncwrites
476                     && self.f_fstypename == other.f_fstypename
477                     && self
478                     .f_mntonname
479                     .iter()
480                     .zip(other.f_mntonname.iter())
481                     .all(|(a,b)| a == b)
482                     && self.f_syncreads == other.f_syncreads
483                     && self.f_asyncreads == other.f_asyncreads
484                     && self
485                     .f_mntfromname
486                     .iter()
487                     .zip(other.f_mntfromname.iter())
488                     .all(|(a,b)| a == b)
489             }
490         }
491         impl Eq for statfs {}
492         impl ::fmt::Debug for statfs {
493             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
494                 f.debug_struct("statfs")
495                     .field("f_bsize", &self.f_bsize)
496                     .field("f_iosize", &self.f_iosize)
497                     .field("f_blocks", &self.f_blocks)
498                     .field("f_bfree", &self.f_bfree)
499                     .field("f_bavail", &self.f_bavail)
500                     .field("f_files", &self.f_files)
501                     .field("f_ffree", &self.f_ffree)
502                     .field("f_fsid", &self.f_fsid)
503                     .field("f_owner", &self.f_owner)
504                     .field("f_type", &self.f_type)
505                     .field("f_flags", &self.f_flags)
506                     .field("f_syncwrites", &self.f_syncwrites)
507                     .field("f_asyncwrites", &self.f_asyncwrites)
508                     // FIXME: .field("f_mntonname", &self.f_mntonname)
509                     .field("f_syncreads", &self.f_syncreads)
510                     .field("f_asyncreads", &self.f_asyncreads)
511                     // FIXME: .field("f_mntfromname", &self.f_mntfromname)
512                     .finish()
513             }
514         }
515         impl ::hash::Hash for statfs {
516             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
517                 self.f_bsize.hash(state);
518                 self.f_iosize.hash(state);
519                 self.f_blocks.hash(state);
520                 self.f_bfree.hash(state);
521                 self.f_bavail.hash(state);
522                 self.f_files.hash(state);
523                 self.f_ffree.hash(state);
524                 self.f_fsid.hash(state);
525                 self.f_owner.hash(state);
526                 self.f_type.hash(state);
527                 self.f_flags.hash(state);
528                 self.f_syncwrites.hash(state);
529                 self.f_asyncwrites.hash(state);
530                 self.f_fstypename.hash(state);
531                 self.f_mntonname.hash(state);
532                 self.f_syncreads.hash(state);
533                 self.f_asyncreads.hash(state);
534                 self.f_mntfromname.hash(state);
535             }
536         }
537 
538         impl PartialEq for sigevent {
539             fn eq(&self, other: &sigevent) -> bool {
540                 self.sigev_notify == other.sigev_notify
541                     && self.sigev_signo == other.sigev_signo
542                     && self.sigev_value == other.sigev_value
543             }
544         }
545         impl Eq for sigevent {}
546         impl ::fmt::Debug for sigevent {
547             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
548                 f.debug_struct("sigevent")
549                     .field("sigev_notify", &self.sigev_notify)
550                     .field("sigev_signo", &self.sigev_signo)
551                     .field("sigev_value", &self.sigev_value)
552                     .finish()
553             }
554         }
555         impl ::hash::Hash for sigevent {
556             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
557                 self.sigev_notify.hash(state);
558                 self.sigev_signo.hash(state);
559                 self.sigev_value.hash(state);
560             }
561         }
562         impl PartialEq for mcontext_t {
563             fn eq(&self, other: &mcontext_t) -> bool {
564                 self.mc_onstack == other.mc_onstack &&
565                 self.mc_rdi == other.mc_rdi &&
566                 self.mc_rsi == other.mc_rsi &&
567                 self.mc_rdx == other.mc_rdx &&
568                 self.mc_rcx == other.mc_rcx &&
569                 self.mc_r8 == other.mc_r8 &&
570                 self.mc_r9 == other.mc_r9 &&
571                 self.mc_rax == other.mc_rax &&
572                 self.mc_rbx == other.mc_rbx &&
573                 self.mc_rbp == other.mc_rbp &&
574                 self.mc_r10 == other.mc_r10 &&
575                 self.mc_r11 == other.mc_r11 &&
576                 self.mc_r12 == other.mc_r12 &&
577                 self.mc_r13 == other.mc_r13 &&
578                 self.mc_r14 == other.mc_r14 &&
579                 self.mc_r15 == other.mc_r15 &&
580                 self.mc_xflags == other.mc_xflags &&
581                 self.mc_trapno == other.mc_trapno &&
582                 self.mc_addr == other.mc_addr &&
583                 self.mc_flags == other.mc_flags &&
584                 self.mc_err == other.mc_err &&
585                 self.mc_rip == other.mc_rip &&
586                 self.mc_cs == other.mc_cs &&
587                 self.mc_rflags == other.mc_rflags &&
588                 self.mc_rsp == other.mc_rsp &&
589                 self.mc_ss == other.mc_ss &&
590                 self.mc_len == other.mc_len &&
591                 self.mc_fpformat == other.mc_fpformat &&
592                 self.mc_ownedfp == other.mc_ownedfp &&
593                 self.mc_fpregs.iter().zip(other.mc_fpregs.iter()).
594                 all(|(a, b)| a == b)
595             }
596         }
597         impl Eq for mcontext_t {}
598         impl ::fmt::Debug for mcontext_t {
599             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
600                 f.debug_struct("mcontext_t")
601                     .field("mc_onstack", &self.mc_onstack)
602                     .field("mc_rdi", &self.mc_rdi)
603                     .field("mc_rsi", &self.mc_rsi)
604                     .field("mc_rdx", &self.mc_rdx)
605                     .field("mc_rcx", &self.mc_rcx)
606                     .field("mc_r8", &self.mc_r8)
607                     .field("mc_r9", &self.mc_r9)
608                     .field("mc_rax", &self.mc_rax)
609                     .field("mc_rbx", &self.mc_rbx)
610                     .field("mc_rbp", &self.mc_rbp)
611                     .field("mc_r10", &self.mc_r10)
612                     .field("mc_r11", &self.mc_r11)
613                     .field("mc_r12", &self.mc_r12)
614                     .field("mc_r13", &self.mc_r13)
615                     .field("mc_r14", &self.mc_r14)
616                     .field("mc_r15", &self.mc_r15)
617                     .field("mc_xflags", &self.mc_xflags)
618                     .field("mc_trapno", &self.mc_trapno)
619                     .field("mc_addr", &self.mc_addr)
620                     .field("mc_flags", &self.mc_flags)
621                     .field("mc_err", &self.mc_err)
622                     .field("mc_rip", &self.mc_rip)
623                     .field("mc_cs", &self.mc_cs)
624                     .field("mc_rflags", &self.mc_rflags)
625                     .field("mc_rsp", &self.mc_rsp)
626                     .field("mc_ss", &self.mc_ss)
627                     .field("mc_len", &self.mc_len)
628                     .field("mc_fpformat", &self.mc_fpformat)
629                     .field("mc_ownedfp", &self.mc_ownedfp)
630                     .field("mc_fpregs", &self.mc_fpregs)
631                     .finish()
632             }
633         }
634         impl ::hash::Hash for mcontext_t {
635             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
636                 self.mc_onstack.hash(state);
637                 self.mc_rdi.hash(state);
638                 self.mc_rsi.hash(state);
639                 self.mc_rdx.hash(state);
640                 self.mc_rcx.hash(state);
641                 self.mc_r8.hash(state);
642                 self.mc_r9.hash(state);
643                 self.mc_rax.hash(state);
644                 self.mc_rbx.hash(state);
645                 self.mc_rbp.hash(state);
646                 self.mc_r10.hash(state);
647                 self.mc_r11.hash(state);
648                 self.mc_r10.hash(state);
649                 self.mc_r11.hash(state);
650                 self.mc_r12.hash(state);
651                 self.mc_r13.hash(state);
652                 self.mc_r14.hash(state);
653                 self.mc_r15.hash(state);
654                 self.mc_xflags.hash(state);
655                 self.mc_trapno.hash(state);
656                 self.mc_addr.hash(state);
657                 self.mc_flags.hash(state);
658                 self.mc_err.hash(state);
659                 self.mc_rip.hash(state);
660                 self.mc_cs.hash(state);
661                 self.mc_rflags.hash(state);
662                 self.mc_rsp.hash(state);
663                 self.mc_ss.hash(state);
664                 self.mc_len.hash(state);
665                 self.mc_fpformat.hash(state);
666                 self.mc_ownedfp.hash(state);
667                 self.mc_fpregs.hash(state);
668             }
669         }
670         impl PartialEq for ucontext_t {
671             fn eq(&self, other: &ucontext_t) -> bool {
672                 self.uc_sigmask == other.uc_sigmask
673                     && self.uc_mcontext == other.uc_mcontext
674                     && self.uc_link == other.uc_link
675                     && self.uc_stack == other.uc_stack
676                     && self.uc_cofunc == other.uc_cofunc
677                     && self.uc_arg == other.uc_arg
678             }
679         }
680         impl Eq for ucontext_t {}
681         impl ::fmt::Debug for ucontext_t {
682             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
683                 f.debug_struct("ucontext_t")
684                     .field("uc_sigmask", &self.uc_sigmask)
685                     .field("uc_mcontext", &self.uc_mcontext)
686                     .field("uc_link", &self.uc_link)
687                     .field("uc_stack", &self.uc_stack)
688                     .field("uc_cofunc", &self.uc_cofunc)
689                     .field("uc_arg", &self.uc_arg)
690                     .finish()
691             }
692         }
693         impl ::hash::Hash for ucontext_t {
694             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
695                 self.uc_sigmask.hash(state);
696                 self.uc_mcontext.hash(state);
697                 self.uc_link.hash(state);
698                 self.uc_stack.hash(state);
699                 self.uc_cofunc.hash(state);
700                 self.uc_arg.hash(state);
701             }
702         }
703     }
704 }
705 
706 pub const RAND_MAX: ::c_int = 0x7fff_ffff;
707 pub const PTHREAD_STACK_MIN: ::size_t = 16384;
708 pub const SIGSTKSZ: ::size_t = 40960;
709 pub const SIGCKPT: ::c_int = 33;
710 pub const SIGCKPTEXIT: ::c_int = 34;
711 pub const CKPT_FREEZE: ::c_int = 0x1;
712 pub const CKPT_THAW: ::c_int = 0x2;
713 pub const MADV_INVAL: ::c_int = 10;
714 pub const MADV_SETMAP: ::c_int = 11;
715 pub const O_CLOEXEC: ::c_int = 0x00020000;
716 pub const O_DIRECTORY: ::c_int = 0x08000000;
717 pub const F_GETLK: ::c_int = 7;
718 pub const F_SETLK: ::c_int = 8;
719 pub const F_SETLKW: ::c_int = 9;
720 pub const ENOMEDIUM: ::c_int = 93;
721 pub const EASYNC: ::c_int = 99;
722 pub const ELAST: ::c_int = 99;
723 pub const RLIMIT_POSIXLOCKS: ::c_int = 11;
724 #[deprecated(since = "0.2.64", note = "Not stable across OS versions")]
725 pub const RLIM_NLIMITS: ::rlim_t = 12;
726 
727 #[deprecated(since = "0.2.105", note = "Only exists on FreeBSD, not DragonFly BSD")]
728 pub const XU_NGROUPS: ::c_int = 16;
729 
730 pub const Q_GETQUOTA: ::c_int = 0x300;
731 pub const Q_SETQUOTA: ::c_int = 0x400;
732 
733 pub const CTL_UNSPEC: ::c_int = 0;
734 pub const CTL_KERN: ::c_int = 1;
735 pub const CTL_VM: ::c_int = 2;
736 pub const CTL_VFS: ::c_int = 3;
737 pub const CTL_NET: ::c_int = 4;
738 pub const CTL_DEBUG: ::c_int = 5;
739 pub const CTL_HW: ::c_int = 6;
740 pub const CTL_MACHDEP: ::c_int = 7;
741 pub const CTL_USER: ::c_int = 8;
742 pub const CTL_P1003_1B: ::c_int = 9;
743 pub const CTL_LWKT: ::c_int = 10;
744 pub const CTL_MAXID: ::c_int = 11;
745 pub const KERN_OSTYPE: ::c_int = 1;
746 pub const KERN_OSRELEASE: ::c_int = 2;
747 pub const KERN_OSREV: ::c_int = 3;
748 pub const KERN_VERSION: ::c_int = 4;
749 pub const KERN_MAXVNODES: ::c_int = 5;
750 pub const KERN_MAXPROC: ::c_int = 6;
751 pub const KERN_MAXFILES: ::c_int = 7;
752 pub const KERN_ARGMAX: ::c_int = 8;
753 pub const KERN_SECURELVL: ::c_int = 9;
754 pub const KERN_HOSTNAME: ::c_int = 10;
755 pub const KERN_HOSTID: ::c_int = 11;
756 pub const KERN_CLOCKRATE: ::c_int = 12;
757 pub const KERN_VNODE: ::c_int = 13;
758 pub const KERN_PROC: ::c_int = 14;
759 pub const KERN_FILE: ::c_int = 15;
760 pub const KERN_PROF: ::c_int = 16;
761 pub const KERN_POSIX1: ::c_int = 17;
762 pub const KERN_NGROUPS: ::c_int = 18;
763 pub const KERN_JOB_CONTROL: ::c_int = 19;
764 pub const KERN_SAVED_IDS: ::c_int = 20;
765 pub const KERN_BOOTTIME: ::c_int = 21;
766 pub const KERN_NISDOMAINNAME: ::c_int = 22;
767 pub const KERN_UPDATEINTERVAL: ::c_int = 23;
768 pub const KERN_OSRELDATE: ::c_int = 24;
769 pub const KERN_NTP_PLL: ::c_int = 25;
770 pub const KERN_BOOTFILE: ::c_int = 26;
771 pub const KERN_MAXFILESPERPROC: ::c_int = 27;
772 pub const KERN_MAXPROCPERUID: ::c_int = 28;
773 pub const KERN_DUMPDEV: ::c_int = 29;
774 pub const KERN_IPC: ::c_int = 30;
775 pub const KERN_DUMMY: ::c_int = 31;
776 pub const KERN_PS_STRINGS: ::c_int = 32;
777 pub const KERN_USRSTACK: ::c_int = 33;
778 pub const KERN_LOGSIGEXIT: ::c_int = 34;
779 pub const KERN_IOV_MAX: ::c_int = 35;
780 pub const KERN_MAXPOSIXLOCKSPERUID: ::c_int = 36;
781 pub const KERN_MAXID: ::c_int = 37;
782 pub const KERN_PROC_ALL: ::c_int = 0;
783 pub const KERN_PROC_PID: ::c_int = 1;
784 pub const KERN_PROC_PGRP: ::c_int = 2;
785 pub const KERN_PROC_SESSION: ::c_int = 3;
786 pub const KERN_PROC_TTY: ::c_int = 4;
787 pub const KERN_PROC_UID: ::c_int = 5;
788 pub const KERN_PROC_RUID: ::c_int = 6;
789 pub const KERN_PROC_ARGS: ::c_int = 7;
790 pub const KERN_PROC_CWD: ::c_int = 8;
791 pub const KERN_PROC_PATHNAME: ::c_int = 9;
792 pub const KERN_PROC_FLAGMASK: ::c_int = 0x10;
793 pub const KERN_PROC_FLAG_LWP: ::c_int = 0x10;
794 pub const KIPC_MAXSOCKBUF: ::c_int = 1;
795 pub const KIPC_SOCKBUF_WASTE: ::c_int = 2;
796 pub const KIPC_SOMAXCONN: ::c_int = 3;
797 pub const KIPC_MAX_LINKHDR: ::c_int = 4;
798 pub const KIPC_MAX_PROTOHDR: ::c_int = 5;
799 pub const KIPC_MAX_HDR: ::c_int = 6;
800 pub const KIPC_MAX_DATALEN: ::c_int = 7;
801 pub const KIPC_MBSTAT: ::c_int = 8;
802 pub const KIPC_NMBCLUSTERS: ::c_int = 9;
803 pub const HW_MACHINE: ::c_int = 1;
804 pub const HW_MODEL: ::c_int = 2;
805 pub const HW_NCPU: ::c_int = 3;
806 pub const HW_BYTEORDER: ::c_int = 4;
807 pub const HW_PHYSMEM: ::c_int = 5;
808 pub const HW_USERMEM: ::c_int = 6;
809 pub const HW_PAGESIZE: ::c_int = 7;
810 pub const HW_DISKNAMES: ::c_int = 8;
811 pub const HW_DISKSTATS: ::c_int = 9;
812 pub const HW_FLOATINGPT: ::c_int = 10;
813 pub const HW_MACHINE_ARCH: ::c_int = 11;
814 pub const HW_MACHINE_PLATFORM: ::c_int = 12;
815 pub const HW_SENSORS: ::c_int = 13;
816 pub const HW_MAXID: ::c_int = 14;
817 pub const USER_CS_PATH: ::c_int = 1;
818 pub const USER_BC_BASE_MAX: ::c_int = 2;
819 pub const USER_BC_DIM_MAX: ::c_int = 3;
820 pub const USER_BC_SCALE_MAX: ::c_int = 4;
821 pub const USER_BC_STRING_MAX: ::c_int = 5;
822 pub const USER_COLL_WEIGHTS_MAX: ::c_int = 6;
823 pub const USER_EXPR_NEST_MAX: ::c_int = 7;
824 pub const USER_LINE_MAX: ::c_int = 8;
825 pub const USER_RE_DUP_MAX: ::c_int = 9;
826 pub const USER_POSIX2_VERSION: ::c_int = 10;
827 pub const USER_POSIX2_C_BIND: ::c_int = 11;
828 pub const USER_POSIX2_C_DEV: ::c_int = 12;
829 pub const USER_POSIX2_CHAR_TERM: ::c_int = 13;
830 pub const USER_POSIX2_FORT_DEV: ::c_int = 14;
831 pub const USER_POSIX2_FORT_RUN: ::c_int = 15;
832 pub const USER_POSIX2_LOCALEDEF: ::c_int = 16;
833 pub const USER_POSIX2_SW_DEV: ::c_int = 17;
834 pub const USER_POSIX2_UPE: ::c_int = 18;
835 pub const USER_STREAM_MAX: ::c_int = 19;
836 pub const USER_TZNAME_MAX: ::c_int = 20;
837 pub const USER_MAXID: ::c_int = 21;
838 pub const CTL_P1003_1B_ASYNCHRONOUS_IO: ::c_int = 1;
839 pub const CTL_P1003_1B_MAPPED_FILES: ::c_int = 2;
840 pub const CTL_P1003_1B_MEMLOCK: ::c_int = 3;
841 pub const CTL_P1003_1B_MEMLOCK_RANGE: ::c_int = 4;
842 pub const CTL_P1003_1B_MEMORY_PROTECTION: ::c_int = 5;
843 pub const CTL_P1003_1B_MESSAGE_PASSING: ::c_int = 6;
844 pub const CTL_P1003_1B_PRIORITIZED_IO: ::c_int = 7;
845 pub const CTL_P1003_1B_PRIORITY_SCHEDULING: ::c_int = 8;
846 pub const CTL_P1003_1B_REALTIME_SIGNALS: ::c_int = 9;
847 pub const CTL_P1003_1B_SEMAPHORES: ::c_int = 10;
848 pub const CTL_P1003_1B_FSYNC: ::c_int = 11;
849 pub const CTL_P1003_1B_SHARED_MEMORY_OBJECTS: ::c_int = 12;
850 pub const CTL_P1003_1B_SYNCHRONIZED_IO: ::c_int = 13;
851 pub const CTL_P1003_1B_TIMERS: ::c_int = 14;
852 pub const CTL_P1003_1B_AIO_LISTIO_MAX: ::c_int = 15;
853 pub const CTL_P1003_1B_AIO_MAX: ::c_int = 16;
854 pub const CTL_P1003_1B_AIO_PRIO_DELTA_MAX: ::c_int = 17;
855 pub const CTL_P1003_1B_DELAYTIMER_MAX: ::c_int = 18;
856 pub const CTL_P1003_1B_UNUSED1: ::c_int = 19;
857 pub const CTL_P1003_1B_PAGESIZE: ::c_int = 20;
858 pub const CTL_P1003_1B_RTSIG_MAX: ::c_int = 21;
859 pub const CTL_P1003_1B_SEM_NSEMS_MAX: ::c_int = 22;
860 pub const CTL_P1003_1B_SEM_VALUE_MAX: ::c_int = 23;
861 pub const CTL_P1003_1B_SIGQUEUE_MAX: ::c_int = 24;
862 pub const CTL_P1003_1B_TIMER_MAX: ::c_int = 25;
863 pub const CTL_P1003_1B_MAXID: ::c_int = 26;
864 
865 pub const EVFILT_READ: i16 = -1;
866 pub const EVFILT_WRITE: i16 = -2;
867 pub const EVFILT_AIO: i16 = -3;
868 pub const EVFILT_VNODE: i16 = -4;
869 pub const EVFILT_PROC: i16 = -5;
870 pub const EVFILT_SIGNAL: i16 = -6;
871 pub const EVFILT_TIMER: i16 = -7;
872 pub const EVFILT_EXCEPT: i16 = -8;
873 pub const EVFILT_USER: i16 = -9;
874 pub const EVFILT_FS: i16 = -10;
875 
876 pub const EV_ADD: u16 = 0x1;
877 pub const EV_DELETE: u16 = 0x2;
878 pub const EV_ENABLE: u16 = 0x4;
879 pub const EV_DISABLE: u16 = 0x8;
880 pub const EV_ONESHOT: u16 = 0x10;
881 pub const EV_CLEAR: u16 = 0x20;
882 pub const EV_RECEIPT: u16 = 0x40;
883 pub const EV_DISPATCH: u16 = 0x80;
884 pub const EV_NODATA: u16 = 0x1000;
885 pub const EV_FLAG1: u16 = 0x2000;
886 pub const EV_ERROR: u16 = 0x4000;
887 pub const EV_EOF: u16 = 0x8000;
888 pub const EV_SYSFLAGS: u16 = 0xf000;
889 
890 pub const FIODNAME: ::c_ulong = 0x80106678;
891 #[deprecated(
892     since = "0.2.106",
893     note = "FIODGNAME is not defined on DragonFly BSD. See FIODNAME."
894 )]
895 pub const FIODGNAME: ::c_ulong = 0x80106678;
896 
897 pub const NOTE_TRIGGER: u32 = 0x01000000;
898 pub const NOTE_FFNOP: u32 = 0x00000000;
899 pub const NOTE_FFAND: u32 = 0x40000000;
900 pub const NOTE_FFOR: u32 = 0x80000000;
901 pub const NOTE_FFCOPY: u32 = 0xc0000000;
902 pub const NOTE_FFCTRLMASK: u32 = 0xc0000000;
903 pub const NOTE_FFLAGSMASK: u32 = 0x00ffffff;
904 pub const NOTE_LOWAT: u32 = 0x00000001;
905 pub const NOTE_OOB: u32 = 0x00000002;
906 pub const NOTE_DELETE: u32 = 0x00000001;
907 pub const NOTE_WRITE: u32 = 0x00000002;
908 pub const NOTE_EXTEND: u32 = 0x00000004;
909 pub const NOTE_ATTRIB: u32 = 0x00000008;
910 pub const NOTE_LINK: u32 = 0x00000010;
911 pub const NOTE_RENAME: u32 = 0x00000020;
912 pub const NOTE_REVOKE: u32 = 0x00000040;
913 pub const NOTE_EXIT: u32 = 0x80000000;
914 pub const NOTE_FORK: u32 = 0x40000000;
915 pub const NOTE_EXEC: u32 = 0x20000000;
916 pub const NOTE_PDATAMASK: u32 = 0x000fffff;
917 pub const NOTE_PCTRLMASK: u32 = 0xf0000000;
918 pub const NOTE_TRACK: u32 = 0x00000001;
919 pub const NOTE_TRACKERR: u32 = 0x00000002;
920 pub const NOTE_CHILD: u32 = 0x00000004;
921 
922 pub const SO_SNDSPACE: ::c_int = 0x100a;
923 pub const SO_CPUHINT: ::c_int = 0x1030;
924 
925 pub const PT_FIRSTMACH: ::c_int = 32;
926 
927 pub const PROC_REAP_ACQUIRE: ::c_int = 0x0001;
928 pub const PROC_REAP_RELEASE: ::c_int = 0x0002;
929 pub const PROC_REAP_STATUS: ::c_int = 0x0003;
930 pub const PROC_PDEATHSIG_CTL: ::c_int = 0x0004;
931 pub const PROC_PDEATHSIG_STATUS: ::c_int = 0x0005;
932 
933 // https://github.com/DragonFlyBSD/DragonFlyBSD/blob/master/sys/net/if.h#L101
934 pub const IFF_UP: ::c_int = 0x1; // interface is up
935 pub const IFF_BROADCAST: ::c_int = 0x2; // broadcast address valid
936 pub const IFF_DEBUG: ::c_int = 0x4; // turn on debugging
937 pub const IFF_LOOPBACK: ::c_int = 0x8; // is a loopback net
938 pub const IFF_POINTOPOINT: ::c_int = 0x10; // interface is point-to-point link
939 pub const IFF_SMART: ::c_int = 0x20; // interface manages own routes
940 pub const IFF_RUNNING: ::c_int = 0x40; // resources allocated
941 pub const IFF_NOARP: ::c_int = 0x80; // no address resolution protocol
942 pub const IFF_PROMISC: ::c_int = 0x100; // receive all packets
943 pub const IFF_ALLMULTI: ::c_int = 0x200; // receive all multicast packets
944 pub const IFF_OACTIVE_COMPAT: ::c_int = 0x400; // was transmission in progress
945 pub const IFF_SIMPLEX: ::c_int = 0x800; // can't hear own transmissions
946 pub const IFF_LINK0: ::c_int = 0x1000; // per link layer defined bit
947 pub const IFF_LINK1: ::c_int = 0x2000; // per link layer defined bit
948 pub const IFF_LINK2: ::c_int = 0x4000; // per link layer defined bit
949 pub const IFF_ALTPHYS: ::c_int = IFF_LINK2; // use alternate physical connection
950 pub const IFF_MULTICAST: ::c_int = 0x8000; // supports multicast
951                                            // was interface is in polling mode
952 pub const IFF_POLLING_COMPAT: ::c_int = 0x10000;
953 pub const IFF_PPROMISC: ::c_int = 0x20000; // user-requested promisc mode
954 pub const IFF_MONITOR: ::c_int = 0x40000; // user-requested monitor mode
955 pub const IFF_STATICARP: ::c_int = 0x80000; // static ARP
956 pub const IFF_NPOLLING: ::c_int = 0x100000; // interface is in polling mode
957 pub const IFF_IDIRECT: ::c_int = 0x200000; // direct input
958 
959 //
960 // sys/netinet/in.h
961 // Protocols (RFC 1700)
962 // NOTE: These are in addition to the constants defined in src/unix/mod.rs
963 
964 // IPPROTO_IP defined in src/unix/mod.rs
965 /// IP6 hop-by-hop options
966 pub const IPPROTO_HOPOPTS: ::c_int = 0;
967 // IPPROTO_ICMP defined in src/unix/mod.rs
968 /// group mgmt protocol
969 pub const IPPROTO_IGMP: ::c_int = 2;
970 /// gateway^2 (deprecated)
971 pub const IPPROTO_GGP: ::c_int = 3;
972 /// for compatibility
973 pub const IPPROTO_IPIP: ::c_int = 4;
974 // IPPROTO_TCP defined in src/unix/mod.rs
975 /// Stream protocol II.
976 pub const IPPROTO_ST: ::c_int = 7;
977 /// exterior gateway protocol
978 pub const IPPROTO_EGP: ::c_int = 8;
979 /// private interior gateway
980 pub const IPPROTO_PIGP: ::c_int = 9;
981 /// BBN RCC Monitoring
982 pub const IPPROTO_RCCMON: ::c_int = 10;
983 /// network voice protocol
984 pub const IPPROTO_NVPII: ::c_int = 11;
985 /// pup
986 pub const IPPROTO_PUP: ::c_int = 12;
987 /// Argus
988 pub const IPPROTO_ARGUS: ::c_int = 13;
989 /// EMCON
990 pub const IPPROTO_EMCON: ::c_int = 14;
991 /// Cross Net Debugger
992 pub const IPPROTO_XNET: ::c_int = 15;
993 /// Chaos
994 pub const IPPROTO_CHAOS: ::c_int = 16;
995 // IPPROTO_UDP defined in src/unix/mod.rs
996 /// Multiplexing
997 pub const IPPROTO_MUX: ::c_int = 18;
998 /// DCN Measurement Subsystems
999 pub const IPPROTO_MEAS: ::c_int = 19;
1000 /// Host Monitoring
1001 pub const IPPROTO_HMP: ::c_int = 20;
1002 /// Packet Radio Measurement
1003 pub const IPPROTO_PRM: ::c_int = 21;
1004 /// xns idp
1005 pub const IPPROTO_IDP: ::c_int = 22;
1006 /// Trunk-1
1007 pub const IPPROTO_TRUNK1: ::c_int = 23;
1008 /// Trunk-2
1009 pub const IPPROTO_TRUNK2: ::c_int = 24;
1010 /// Leaf-1
1011 pub const IPPROTO_LEAF1: ::c_int = 25;
1012 /// Leaf-2
1013 pub const IPPROTO_LEAF2: ::c_int = 26;
1014 /// Reliable Data
1015 pub const IPPROTO_RDP: ::c_int = 27;
1016 /// Reliable Transaction
1017 pub const IPPROTO_IRTP: ::c_int = 28;
1018 /// tp-4 w/ class negotiation
1019 pub const IPPROTO_TP: ::c_int = 29;
1020 /// Bulk Data Transfer
1021 pub const IPPROTO_BLT: ::c_int = 30;
1022 /// Network Services
1023 pub const IPPROTO_NSP: ::c_int = 31;
1024 /// Merit Internodal
1025 pub const IPPROTO_INP: ::c_int = 32;
1026 /// Sequential Exchange
1027 pub const IPPROTO_SEP: ::c_int = 33;
1028 /// Third Party Connect
1029 pub const IPPROTO_3PC: ::c_int = 34;
1030 /// InterDomain Policy Routing
1031 pub const IPPROTO_IDPR: ::c_int = 35;
1032 /// XTP
1033 pub const IPPROTO_XTP: ::c_int = 36;
1034 /// Datagram Delivery
1035 pub const IPPROTO_DDP: ::c_int = 37;
1036 /// Control Message Transport
1037 pub const IPPROTO_CMTP: ::c_int = 38;
1038 /// TP++ Transport
1039 pub const IPPROTO_TPXX: ::c_int = 39;
1040 /// IL transport protocol
1041 pub const IPPROTO_IL: ::c_int = 40;
1042 // IPPROTO_IPV6 defined in src/unix/mod.rs
1043 /// Source Demand Routing
1044 pub const IPPROTO_SDRP: ::c_int = 42;
1045 /// IP6 routing header
1046 pub const IPPROTO_ROUTING: ::c_int = 43;
1047 /// IP6 fragmentation header
1048 pub const IPPROTO_FRAGMENT: ::c_int = 44;
1049 /// InterDomain Routing
1050 pub const IPPROTO_IDRP: ::c_int = 45;
1051 /// resource reservation
1052 pub const IPPROTO_RSVP: ::c_int = 46;
1053 /// General Routing Encap.
1054 pub const IPPROTO_GRE: ::c_int = 47;
1055 /// Mobile Host Routing
1056 pub const IPPROTO_MHRP: ::c_int = 48;
1057 /// BHA
1058 pub const IPPROTO_BHA: ::c_int = 49;
1059 /// IP6 Encap Sec. Payload
1060 pub const IPPROTO_ESP: ::c_int = 50;
1061 /// IP6 Auth Header
1062 pub const IPPROTO_AH: ::c_int = 51;
1063 /// Integ. Net Layer Security
1064 pub const IPPROTO_INLSP: ::c_int = 52;
1065 /// IP with encryption
1066 pub const IPPROTO_SWIPE: ::c_int = 53;
1067 /// Next Hop Resolution
1068 pub const IPPROTO_NHRP: ::c_int = 54;
1069 /// IP Mobility
1070 pub const IPPROTO_MOBILE: ::c_int = 55;
1071 /// Transport Layer Security
1072 pub const IPPROTO_TLSP: ::c_int = 56;
1073 /// SKIP
1074 pub const IPPROTO_SKIP: ::c_int = 57;
1075 // IPPROTO_ICMPV6 defined in src/unix/mod.rs
1076 /// IP6 no next header
1077 pub const IPPROTO_NONE: ::c_int = 59;
1078 /// IP6 destination option
1079 pub const IPPROTO_DSTOPTS: ::c_int = 60;
1080 /// any host internal protocol
1081 pub const IPPROTO_AHIP: ::c_int = 61;
1082 /// CFTP
1083 pub const IPPROTO_CFTP: ::c_int = 62;
1084 /// "hello" routing protocol
1085 pub const IPPROTO_HELLO: ::c_int = 63;
1086 /// SATNET/Backroom EXPAK
1087 pub const IPPROTO_SATEXPAK: ::c_int = 64;
1088 /// Kryptolan
1089 pub const IPPROTO_KRYPTOLAN: ::c_int = 65;
1090 /// Remote Virtual Disk
1091 pub const IPPROTO_RVD: ::c_int = 66;
1092 /// Pluribus Packet Core
1093 pub const IPPROTO_IPPC: ::c_int = 67;
1094 /// Any distributed FS
1095 pub const IPPROTO_ADFS: ::c_int = 68;
1096 /// Satnet Monitoring
1097 pub const IPPROTO_SATMON: ::c_int = 69;
1098 /// VISA Protocol
1099 pub const IPPROTO_VISA: ::c_int = 70;
1100 /// Packet Core Utility
1101 pub const IPPROTO_IPCV: ::c_int = 71;
1102 /// Comp. Prot. Net. Executive
1103 pub const IPPROTO_CPNX: ::c_int = 72;
1104 /// Comp. Prot. HeartBeat
1105 pub const IPPROTO_CPHB: ::c_int = 73;
1106 /// Wang Span Network
1107 pub const IPPROTO_WSN: ::c_int = 74;
1108 /// Packet Video Protocol
1109 pub const IPPROTO_PVP: ::c_int = 75;
1110 /// BackRoom SATNET Monitoring
1111 pub const IPPROTO_BRSATMON: ::c_int = 76;
1112 /// Sun net disk proto (temp.)
1113 pub const IPPROTO_ND: ::c_int = 77;
1114 /// WIDEBAND Monitoring
1115 pub const IPPROTO_WBMON: ::c_int = 78;
1116 /// WIDEBAND EXPAK
1117 pub const IPPROTO_WBEXPAK: ::c_int = 79;
1118 /// ISO cnlp
1119 pub const IPPROTO_EON: ::c_int = 80;
1120 /// VMTP
1121 pub const IPPROTO_VMTP: ::c_int = 81;
1122 /// Secure VMTP
1123 pub const IPPROTO_SVMTP: ::c_int = 82;
1124 /// Banyon VINES
1125 pub const IPPROTO_VINES: ::c_int = 83;
1126 /// TTP
1127 pub const IPPROTO_TTP: ::c_int = 84;
1128 /// NSFNET-IGP
1129 pub const IPPROTO_IGP: ::c_int = 85;
1130 /// dissimilar gateway prot.
1131 pub const IPPROTO_DGP: ::c_int = 86;
1132 /// TCF
1133 pub const IPPROTO_TCF: ::c_int = 87;
1134 /// Cisco/GXS IGRP
1135 pub const IPPROTO_IGRP: ::c_int = 88;
1136 /// OSPFIGP
1137 pub const IPPROTO_OSPFIGP: ::c_int = 89;
1138 /// Strite RPC protocol
1139 pub const IPPROTO_SRPC: ::c_int = 90;
1140 /// Locus Address Resoloution
1141 pub const IPPROTO_LARP: ::c_int = 91;
1142 /// Multicast Transport
1143 pub const IPPROTO_MTP: ::c_int = 92;
1144 /// AX.25 Frames
1145 pub const IPPROTO_AX25: ::c_int = 93;
1146 /// IP encapsulated in IP
1147 pub const IPPROTO_IPEIP: ::c_int = 94;
1148 /// Mobile Int.ing control
1149 pub const IPPROTO_MICP: ::c_int = 95;
1150 /// Semaphore Comm. security
1151 pub const IPPROTO_SCCSP: ::c_int = 96;
1152 /// Ethernet IP encapsulation
1153 pub const IPPROTO_ETHERIP: ::c_int = 97;
1154 /// encapsulation header
1155 pub const IPPROTO_ENCAP: ::c_int = 98;
1156 /// any private encr. scheme
1157 pub const IPPROTO_APES: ::c_int = 99;
1158 /// GMTP
1159 pub const IPPROTO_GMTP: ::c_int = 100;
1160 /// payload compression (IPComp)
1161 pub const IPPROTO_IPCOMP: ::c_int = 108;
1162 
1163 /* 101-254: Partly Unassigned */
1164 /// Protocol Independent Mcast
1165 pub const IPPROTO_PIM: ::c_int = 103;
1166 /// CARP
1167 pub const IPPROTO_CARP: ::c_int = 112;
1168 /// PGM
1169 pub const IPPROTO_PGM: ::c_int = 113;
1170 /// PFSYNC
1171 pub const IPPROTO_PFSYNC: ::c_int = 240;
1172 
1173 /* 255: Reserved */
1174 /* BSD Private, local use, namespace incursion, no longer used */
1175 /// divert pseudo-protocol
1176 pub const IPPROTO_DIVERT: ::c_int = 254;
1177 pub const IPPROTO_MAX: ::c_int = 256;
1178 /// last return value of *_input(), meaning "all job for this pkt is done".
1179 pub const IPPROTO_DONE: ::c_int = 257;
1180 
1181 /// Used by RSS: the layer3 protocol is unknown
1182 pub const IPPROTO_UNKNOWN: ::c_int = 258;
1183 
1184 // sys/netinet/tcp.h
1185 pub const TCP_SIGNATURE_ENABLE: ::c_int = 16;
1186 pub const TCP_KEEPINIT: ::c_int = 32;
1187 pub const TCP_FASTKEEP: ::c_int = 128;
1188 
1189 pub const AF_BLUETOOTH: ::c_int = 33;
1190 pub const AF_MPLS: ::c_int = 34;
1191 pub const AF_IEEE80211: ::c_int = 35;
1192 
1193 pub const PF_BLUETOOTH: ::c_int = AF_BLUETOOTH;
1194 
1195 pub const NET_RT_DUMP: ::c_int = 1;
1196 pub const NET_RT_FLAGS: ::c_int = 2;
1197 pub const NET_RT_IFLIST: ::c_int = 3;
1198 pub const NET_RT_MAXID: ::c_int = 4;
1199 
1200 pub const SOMAXOPT_SIZE: ::c_int = 65536;
1201 
1202 pub const MSG_UNUSED09: ::c_int = 0x00000200;
1203 pub const MSG_NOSIGNAL: ::c_int = 0x00000400;
1204 pub const MSG_SYNC: ::c_int = 0x00000800;
1205 pub const MSG_CMSG_CLOEXEC: ::c_int = 0x00001000;
1206 pub const MSG_FBLOCKING: ::c_int = 0x00010000;
1207 pub const MSG_FNONBLOCKING: ::c_int = 0x00020000;
1208 pub const MSG_FMASK: ::c_int = 0xFFFF0000;
1209 
1210 // utmpx entry types
1211 pub const EMPTY: ::c_short = 0;
1212 pub const RUN_LVL: ::c_short = 1;
1213 pub const BOOT_TIME: ::c_short = 2;
1214 pub const OLD_TIME: ::c_short = 3;
1215 pub const NEW_TIME: ::c_short = 4;
1216 pub const INIT_PROCESS: ::c_short = 5;
1217 pub const LOGIN_PROCESS: ::c_short = 6;
1218 pub const USER_PROCESS: ::c_short = 7;
1219 pub const DEAD_PROCESS: ::c_short = 8;
1220 pub const ACCOUNTING: ::c_short = 9;
1221 pub const SIGNATURE: ::c_short = 10;
1222 pub const DOWNTIME: ::c_short = 11;
1223 // utmpx database types
1224 pub const UTX_DB_UTMPX: ::c_uint = 0;
1225 pub const UTX_DB_WTMPX: ::c_uint = 1;
1226 pub const UTX_DB_LASTLOG: ::c_uint = 2;
1227 pub const _UTX_LINESIZE: usize = 32;
1228 pub const _UTX_USERSIZE: usize = 32;
1229 pub const _UTX_IDSIZE: usize = 4;
1230 pub const _UTX_HOSTSIZE: usize = 256;
1231 
1232 pub const LC_COLLATE_MASK: ::c_int = 1 << 0;
1233 pub const LC_CTYPE_MASK: ::c_int = 1 << 1;
1234 pub const LC_MONETARY_MASK: ::c_int = 1 << 2;
1235 pub const LC_NUMERIC_MASK: ::c_int = 1 << 3;
1236 pub const LC_TIME_MASK: ::c_int = 1 << 4;
1237 pub const LC_MESSAGES_MASK: ::c_int = 1 << 5;
1238 pub const LC_ALL_MASK: ::c_int = LC_COLLATE_MASK
1239     | LC_CTYPE_MASK
1240     | LC_MESSAGES_MASK
1241     | LC_MONETARY_MASK
1242     | LC_NUMERIC_MASK
1243     | LC_TIME_MASK;
1244 
1245 pub const TIOCSIG: ::c_uint = 0x2000745f;
1246 pub const BTUARTDISC: ::c_int = 0x7;
1247 pub const TIOCDCDTIMESTAMP: ::c_uint = 0x40107458;
1248 pub const TIOCISPTMASTER: ::c_uint = 0x20007455;
1249 pub const TIOCMODG: ::c_uint = 0x40047403;
1250 pub const TIOCMODS: ::c_ulong = 0x80047404;
1251 pub const TIOCREMOTE: ::c_ulong = 0x80047469;
1252 
1253 // Constants used by "at" family of system calls.
1254 pub const AT_FDCWD: ::c_int = 0xFFFAFDCD; // invalid file descriptor
1255 pub const AT_SYMLINK_NOFOLLOW: ::c_int = 1;
1256 pub const AT_REMOVEDIR: ::c_int = 2;
1257 pub const AT_EACCESS: ::c_int = 4;
1258 pub const AT_SYMLINK_FOLLOW: ::c_int = 8;
1259 
1260 pub const VCHECKPT: usize = 19;
1261 
1262 pub const _PC_2_SYMLINKS: ::c_int = 22;
1263 pub const _PC_TIMESTAMP_RESOLUTION: ::c_int = 23;
1264 
1265 pub const _SC_V7_ILP32_OFF32: ::c_int = 122;
1266 pub const _SC_V7_ILP32_OFFBIG: ::c_int = 123;
1267 pub const _SC_V7_LP64_OFF64: ::c_int = 124;
1268 pub const _SC_V7_LPBIG_OFFBIG: ::c_int = 125;
1269 pub const _SC_THREAD_ROBUST_PRIO_INHERIT: ::c_int = 126;
1270 pub const _SC_THREAD_ROBUST_PRIO_PROTECT: ::c_int = 127;
1271 
1272 pub const WCONTINUED: ::c_int = 0x4;
1273 pub const WSTOPPED: ::c_int = 0x2;
1274 pub const WNOWAIT: ::c_int = 0x8;
1275 pub const WEXITED: ::c_int = 0x10;
1276 pub const WTRAPPED: ::c_int = 0x20;
1277 
1278 // Similar to FreeBSD, only the standardized ones are exposed.
1279 // There are more.
1280 pub const P_PID: idtype_t = 0;
1281 pub const P_PGID: idtype_t = 2;
1282 pub const P_ALL: idtype_t = 7;
1283 
1284 // Values for struct rtprio (type_ field)
1285 pub const RTP_PRIO_REALTIME: ::c_ushort = 0;
1286 pub const RTP_PRIO_NORMAL: ::c_ushort = 1;
1287 pub const RTP_PRIO_IDLE: ::c_ushort = 2;
1288 pub const RTP_PRIO_THREAD: ::c_ushort = 3;
1289 
1290 // Flags for chflags(2)
1291 pub const UF_NOHISTORY: ::c_ulong = 0x00000040;
1292 pub const UF_CACHE: ::c_ulong = 0x00000080;
1293 pub const UF_XLINK: ::c_ulong = 0x00000100;
1294 pub const SF_NOHISTORY: ::c_ulong = 0x00400000;
1295 pub const SF_CACHE: ::c_ulong = 0x00800000;
1296 pub const SF_XLINK: ::c_ulong = 0x01000000;
1297 
1298 // timespec constants
1299 pub const UTIME_OMIT: c_long = -2;
1300 pub const UTIME_NOW: c_long = -1;
1301 
1302 const_fn! {
1303     {const} fn _CMSG_ALIGN(n: usize) -> usize {
1304         (n + 3) & !3
1305     }
1306 }
1307 
1308 f! {
1309     pub fn CMSG_DATA(cmsg: *const ::cmsghdr) -> *mut ::c_uchar {
1310         (cmsg as *mut ::c_uchar)
1311             .offset(_CMSG_ALIGN(::mem::size_of::<::cmsghdr>()) as isize)
1312     }
1313 
1314     pub fn CMSG_LEN(length: ::c_uint) -> ::c_uint {
1315         (_CMSG_ALIGN(::mem::size_of::<::cmsghdr>()) + length as usize)
1316             as ::c_uint
1317     }
1318 
1319     pub fn CMSG_NXTHDR(mhdr: *const ::msghdr, cmsg: *const ::cmsghdr)
1320         -> *mut ::cmsghdr
1321     {
1322         let next = cmsg as usize + _CMSG_ALIGN((*cmsg).cmsg_len as usize)
1323             + _CMSG_ALIGN(::mem::size_of::<::cmsghdr>());
1324         let max = (*mhdr).msg_control as usize
1325             + (*mhdr).msg_controllen as usize;
1326         if next <= max {
1327             (cmsg as usize + _CMSG_ALIGN((*cmsg).cmsg_len as usize))
1328                 as *mut ::cmsghdr
1329         } else {
1330             0 as *mut ::cmsghdr
1331         }
1332     }
1333 
1334     pub {const} fn CMSG_SPACE(length: ::c_uint) -> ::c_uint {
1335         (_CMSG_ALIGN(::mem::size_of::<::cmsghdr>()) +
1336             _CMSG_ALIGN(length as usize)) as ::c_uint
1337     }
1338 
1339     pub fn CPU_ZERO(cpuset: &mut cpu_set_t) -> () {
1340         for slot in cpuset.ary.iter_mut() {
1341             *slot = 0;
1342         }
1343     }
1344 
1345     pub fn CPU_SET(cpu: usize, cpuset: &mut cpu_set_t) -> () {
1346         let (idx, offset) = ((cpu >> 6) & 3, cpu & 63);
1347         cpuset.ary[idx] |= 1 << offset;
1348         ()
1349     }
1350 
1351     pub fn CPU_CLR(cpu: usize, cpuset: &mut cpu_set_t) -> () {
1352         let (idx, offset) = ((cpu >> 6) & 3, cpu & 63);
1353         cpuset.ary[idx] &= !(1 << offset);
1354         ()
1355     }
1356 
1357     pub fn CPU_ISSET(cpu: usize, cpuset: &cpu_set_t) -> bool {
1358         let (idx, offset) = ((cpu >> 6) & 3, cpu & 63);
1359         0 != cpuset.ary[idx] & (1 << offset)
1360     }
1361 }
1362 
1363 safe_f! {
1364     pub {const} fn WIFSIGNALED(status: ::c_int) -> bool {
1365         (status & 0o177) != 0o177 && (status & 0o177) != 0
1366     }
1367 }
1368 
1369 extern "C" {
__errno_location() -> *mut ::c_int1370     pub fn __errno_location() -> *mut ::c_int;
setgrent()1371     pub fn setgrent();
mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int1372     pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int;
1373 
setutxdb(_type: ::c_uint, file: *mut ::c_char) -> ::c_int1374     pub fn setutxdb(_type: ::c_uint, file: *mut ::c_char) -> ::c_int;
1375 
aio_waitcomplete(iocbp: *mut *mut aiocb, timeout: *mut ::timespec) -> ::c_int1376     pub fn aio_waitcomplete(iocbp: *mut *mut aiocb, timeout: *mut ::timespec) -> ::c_int;
1377 
1378     #[deprecated(since = "0.2.107", note = "len should be of type size_t")]
devname_r( dev: ::dev_t, mode: ::mode_t, buf: *mut ::c_char, len: ::c_int, ) -> *mut ::c_char1379     pub fn devname_r(
1380         dev: ::dev_t,
1381         mode: ::mode_t,
1382         buf: *mut ::c_char,
1383         len: ::c_int,
1384     ) -> *mut ::c_char;
1385 
waitid( idtype: idtype_t, id: ::id_t, infop: *mut ::siginfo_t, options: ::c_int, ) -> ::c_int1386     pub fn waitid(
1387         idtype: idtype_t,
1388         id: ::id_t,
1389         infop: *mut ::siginfo_t,
1390         options: ::c_int,
1391     ) -> ::c_int;
1392 
freelocale(loc: ::locale_t)1393     pub fn freelocale(loc: ::locale_t);
1394 
lwp_rtprio( function: ::c_int, pid: ::pid_t, lwpid: lwpid_t, rtp: *mut super::rtprio, ) -> ::c_int1395     pub fn lwp_rtprio(
1396         function: ::c_int,
1397         pid: ::pid_t,
1398         lwpid: lwpid_t,
1399         rtp: *mut super::rtprio,
1400     ) -> ::c_int;
1401 
statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int1402     pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int;
fstatfs(fd: ::c_int, buf: *mut statfs) -> ::c_int1403     pub fn fstatfs(fd: ::c_int, buf: *mut statfs) -> ::c_int;
uname(buf: *mut ::utsname) -> ::c_int1404     pub fn uname(buf: *mut ::utsname) -> ::c_int;
memmem( haystack: *const ::c_void, haystacklen: ::size_t, needle: *const ::c_void, needlelen: ::size_t, ) -> *mut ::c_void1405     pub fn memmem(
1406         haystack: *const ::c_void,
1407         haystacklen: ::size_t,
1408         needle: *const ::c_void,
1409         needlelen: ::size_t,
1410     ) -> *mut ::c_void;
pthread_spin_init(lock: *mut pthread_spinlock_t, pshared: ::c_int) -> ::c_int1411     pub fn pthread_spin_init(lock: *mut pthread_spinlock_t, pshared: ::c_int) -> ::c_int;
pthread_spin_destroy(lock: *mut pthread_spinlock_t) -> ::c_int1412     pub fn pthread_spin_destroy(lock: *mut pthread_spinlock_t) -> ::c_int;
pthread_spin_lock(lock: *mut pthread_spinlock_t) -> ::c_int1413     pub fn pthread_spin_lock(lock: *mut pthread_spinlock_t) -> ::c_int;
pthread_spin_trylock(lock: *mut pthread_spinlock_t) -> ::c_int1414     pub fn pthread_spin_trylock(lock: *mut pthread_spinlock_t) -> ::c_int;
pthread_spin_unlock(lock: *mut pthread_spinlock_t) -> ::c_int1415     pub fn pthread_spin_unlock(lock: *mut pthread_spinlock_t) -> ::c_int;
1416 
sched_getaffinity(pid: ::pid_t, cpusetsize: ::size_t, mask: *mut cpu_set_t) -> ::c_int1417     pub fn sched_getaffinity(pid: ::pid_t, cpusetsize: ::size_t, mask: *mut cpu_set_t) -> ::c_int;
sched_setaffinity(pid: ::pid_t, cpusetsize: ::size_t, mask: *const cpu_set_t) -> ::c_int1418     pub fn sched_setaffinity(pid: ::pid_t, cpusetsize: ::size_t, mask: *const cpu_set_t)
1419         -> ::c_int;
sched_getcpu() -> ::c_int1420     pub fn sched_getcpu() -> ::c_int;
setproctitle(fmt: *const ::c_char, ...)1421     pub fn setproctitle(fmt: *const ::c_char, ...);
1422 
shmget(key: ::key_t, size: ::size_t, shmflg: ::c_int) -> ::c_int1423     pub fn shmget(key: ::key_t, size: ::size_t, shmflg: ::c_int) -> ::c_int;
shmat(shmid: ::c_int, shmaddr: *const ::c_void, shmflg: ::c_int) -> *mut ::c_void1424     pub fn shmat(shmid: ::c_int, shmaddr: *const ::c_void, shmflg: ::c_int) -> *mut ::c_void;
shmdt(shmaddr: *const ::c_void) -> ::c_int1425     pub fn shmdt(shmaddr: *const ::c_void) -> ::c_int;
shmctl(shmid: ::c_int, cmd: ::c_int, buf: *mut ::shmid_ds) -> ::c_int1426     pub fn shmctl(shmid: ::c_int, cmd: ::c_int, buf: *mut ::shmid_ds) -> ::c_int;
procctl(idtype: ::idtype_t, id: ::id_t, cmd: ::c_int, data: *mut ::c_void) -> ::c_int1427     pub fn procctl(idtype: ::idtype_t, id: ::id_t, cmd: ::c_int, data: *mut ::c_void) -> ::c_int;
1428 
updwtmpx(file: *const ::c_char, ut: *const utmpx) -> ::c_int1429     pub fn updwtmpx(file: *const ::c_char, ut: *const utmpx) -> ::c_int;
getlastlogx(fname: *const ::c_char, uid: ::uid_t, ll: *mut lastlogx) -> *mut lastlogx1430     pub fn getlastlogx(fname: *const ::c_char, uid: ::uid_t, ll: *mut lastlogx) -> *mut lastlogx;
updlastlogx(fname: *const ::c_char, uid: ::uid_t, ll: *mut lastlogx) -> ::c_int1431     pub fn updlastlogx(fname: *const ::c_char, uid: ::uid_t, ll: *mut lastlogx) -> ::c_int;
getutxuser(name: *const ::c_char) -> utmpx1432     pub fn getutxuser(name: *const ::c_char) -> utmpx;
utmpxname(file: *const ::c_char) -> ::c_int1433     pub fn utmpxname(file: *const ::c_char) -> ::c_int;
1434 
sys_checkpoint(tpe: ::c_int, fd: ::c_int, pid: ::pid_t, retval: ::c_int) -> ::c_int1435     pub fn sys_checkpoint(tpe: ::c_int, fd: ::c_int, pid: ::pid_t, retval: ::c_int) -> ::c_int;
1436 }
1437 
1438 #[link(name = "rt")]
1439 extern "C" {
aio_cancel(fd: ::c_int, aiocbp: *mut aiocb) -> ::c_int1440     pub fn aio_cancel(fd: ::c_int, aiocbp: *mut aiocb) -> ::c_int;
aio_error(aiocbp: *const aiocb) -> ::c_int1441     pub fn aio_error(aiocbp: *const aiocb) -> ::c_int;
aio_fsync(op: ::c_int, aiocbp: *mut aiocb) -> ::c_int1442     pub fn aio_fsync(op: ::c_int, aiocbp: *mut aiocb) -> ::c_int;
aio_read(aiocbp: *mut aiocb) -> ::c_int1443     pub fn aio_read(aiocbp: *mut aiocb) -> ::c_int;
aio_return(aiocbp: *mut aiocb) -> ::ssize_t1444     pub fn aio_return(aiocbp: *mut aiocb) -> ::ssize_t;
aio_suspend( aiocb_list: *const *const aiocb, nitems: ::c_int, timeout: *const ::timespec, ) -> ::c_int1445     pub fn aio_suspend(
1446         aiocb_list: *const *const aiocb,
1447         nitems: ::c_int,
1448         timeout: *const ::timespec,
1449     ) -> ::c_int;
aio_write(aiocbp: *mut aiocb) -> ::c_int1450     pub fn aio_write(aiocbp: *mut aiocb) -> ::c_int;
lio_listio( mode: ::c_int, aiocb_list: *const *mut aiocb, nitems: ::c_int, sevp: *mut sigevent, ) -> ::c_int1451     pub fn lio_listio(
1452         mode: ::c_int,
1453         aiocb_list: *const *mut aiocb,
1454         nitems: ::c_int,
1455         sevp: *mut sigevent,
1456     ) -> ::c_int;
1457 
reallocf(ptr: *mut ::c_void, size: ::size_t) -> *mut ::c_void1458     pub fn reallocf(ptr: *mut ::c_void, size: ::size_t) -> *mut ::c_void;
freezero(ptr: *mut ::c_void, size: ::size_t)1459     pub fn freezero(ptr: *mut ::c_void, size: ::size_t);
1460 }
1461 
1462 cfg_if! {
1463     if #[cfg(libc_thread_local)] {
1464         mod errno;
1465         pub use self::errno::*;
1466     }
1467 }
1468