]> git.proxmox.com Git - rustc.git/blame - vendor/libc/src/unix/bsd/freebsdlike/freebsd/mod.rs
New upstream version 1.46.0~beta.2+dfsg1
[rustc.git] / vendor / libc / src / unix / bsd / freebsdlike / freebsd / mod.rs
CommitLineData
476ff2be
SL
1pub type fflags_t = u32;
2pub type clock_t = i32;
416331ca 3
8bb4bdeb 4pub type lwpid_t = i32;
0531ce1d 5pub type blksize_t = i32;
476ff2be 6pub type clockid_t = ::c_int;
8bb4bdeb 7pub type sem_t = _sem;
476ff2be 8
416331ca
XL
9pub type fsblkcnt_t = u64;
10pub type fsfilcnt_t = u64;
8bb4bdeb 11pub type idtype_t = ::c_uint;
476ff2be 12
7cac9316
XL
13pub type key_t = ::c_long;
14pub type msglen_t = ::c_ulong;
15pub type msgqnum_t = ::c_ulong;
16
532ac7d7 17pub type mqd_t = *mut ::c_void;
2c00a5a8
XL
18pub type posix_spawnattr_t = *mut ::c_void;
19pub type posix_spawn_file_actions_t = *mut ::c_void;
20
476ff2be 21s! {
8bb4bdeb
XL
22 pub struct aiocb {
23 pub aio_fildes: ::c_int,
24 pub aio_offset: ::off_t,
25 pub aio_buf: *mut ::c_void,
26 pub aio_nbytes: ::size_t,
27 __unused1: [::c_int; 2],
28 __unused2: *mut ::c_void,
29 pub aio_lio_opcode: ::c_int,
30 pub aio_reqprio: ::c_int,
31 // unused 3 through 5 are the __aiocb_private structure
32 __unused3: ::c_long,
33 __unused4: ::c_long,
34 __unused5: *mut ::c_void,
35 pub aio_sigevent: sigevent
36 }
37
8bb4bdeb
XL
38 pub struct jail {
39 pub version: u32,
40 pub path: *mut ::c_char,
41 pub hostname: *mut ::c_char,
42 pub jailname: *mut ::c_char,
43 pub ip4s: ::c_uint,
44 pub ip6s: ::c_uint,
45 pub ip4: *mut ::in_addr,
46 pub ip6: *mut ::in6_addr,
47 }
48
476ff2be
SL
49 pub struct statvfs {
50 pub f_bavail: ::fsblkcnt_t,
51 pub f_bfree: ::fsblkcnt_t,
52 pub f_blocks: ::fsblkcnt_t,
53 pub f_favail: ::fsfilcnt_t,
54 pub f_ffree: ::fsfilcnt_t,
55 pub f_files: ::fsfilcnt_t,
56 pub f_bsize: ::c_ulong,
57 pub f_flag: ::c_ulong,
58 pub f_frsize: ::c_ulong,
59 pub f_fsid: ::c_ulong,
60 pub f_namemax: ::c_ulong,
61 }
8bb4bdeb
XL
62
63 // internal structure has changed over time
64 pub struct _sem {
65 data: [u32; 4],
66 }
7cac9316
XL
67
68 pub struct ipc_perm {
69 pub cuid: ::uid_t,
70 pub cgid: ::gid_t,
71 pub uid: ::uid_t,
72 pub gid: ::gid_t,
73 pub mode: ::mode_t,
74 pub seq: ::c_ushort,
75 pub key: ::key_t,
76 }
77
78 pub struct msqid_ds {
79 pub msg_perm: ::ipc_perm,
80 __unused1: *mut ::c_void,
81 __unused2: *mut ::c_void,
82 pub msg_cbytes: ::msglen_t,
83 pub msg_qnum: ::msgqnum_t,
84 pub msg_qbytes: ::msglen_t,
85 pub msg_lspid: ::pid_t,
86 pub msg_lrpid: ::pid_t,
87 pub msg_stime: ::time_t,
88 pub msg_rtime: ::time_t,
89 pub msg_ctime: ::time_t,
90 }
91
abe05a73
XL
92 pub struct xucred {
93 pub cr_version: ::c_uint,
94 pub cr_uid: ::uid_t,
95 pub cr_ngroups: ::c_short,
96 pub cr_groups: [::gid_t;16],
97 __cr_unused1: *mut ::c_void,
98 }
2c00a5a8 99
532ac7d7
XL
100 pub struct stack_t {
101 pub ss_sp: *mut ::c_void,
102 pub ss_size: ::size_t,
103 pub ss_flags: ::c_int,
104 }
105
106 pub struct mmsghdr {
107 pub msg_hdr: ::msghdr,
108 pub msg_len: ::ssize_t,
109 }
f035d41b
XL
110
111 pub struct sockcred {
112 pub sc_uid: ::uid_t,
113 pub sc_euid: ::uid_t,
114 pub sc_gid: ::gid_t,
115 pub sc_egid: ::gid_t,
116 pub sc_ngroups: ::c_int,
117 pub sc_groups: [::gid_t; 1],
118 }
532ac7d7
XL
119}
120
121s_no_extra_traits! {
122 pub struct utmpx {
123 pub ut_type: ::c_short,
124 pub ut_tv: ::timeval,
125 pub ut_id: [::c_char; 8],
126 pub ut_pid: ::pid_t,
127 pub ut_user: [::c_char; 32],
128 pub ut_line: [::c_char; 16],
129 pub ut_host: [::c_char; 128],
130 pub __ut_spare: [::c_char; 64],
131 }
132
2c00a5a8
XL
133 pub struct sockaddr_dl {
134 pub sdl_len: ::c_uchar,
135 pub sdl_family: ::c_uchar,
136 pub sdl_index: ::c_ushort,
137 pub sdl_type: ::c_uchar,
138 pub sdl_nlen: ::c_uchar,
139 pub sdl_alen: ::c_uchar,
140 pub sdl_slen: ::c_uchar,
141 pub sdl_data: [::c_char; 46],
142 }
416331ca
XL
143
144 pub struct mq_attr {
145 pub mq_flags: ::c_long,
146 pub mq_maxmsg: ::c_long,
147 pub mq_msgsize: ::c_long,
148 pub mq_curmsgs: ::c_long,
149 __reserved: [::c_long; 4]
150 }
151
152 pub struct sigevent {
153 pub sigev_notify: ::c_int,
154 pub sigev_signo: ::c_int,
155 pub sigev_value: ::sigval,
156 //The rest of the structure is actually a union. We expose only
157 //sigev_notify_thread_id because it's the most useful union member.
158 pub sigev_notify_thread_id: ::lwpid_t,
159 #[cfg(target_pointer_width = "64")]
160 __unused1: ::c_int,
161 __unused2: [::c_long; 7]
162 }
476ff2be
SL
163}
164
532ac7d7
XL
165cfg_if! {
166 if #[cfg(feature = "extra_traits")] {
167 impl PartialEq for utmpx {
168 fn eq(&self, other: &utmpx) -> bool {
169 self.ut_type == other.ut_type
170 && self.ut_tv == other.ut_tv
171 && self.ut_id == other.ut_id
172 && self.ut_pid == other.ut_pid
173 && self.ut_user == other.ut_user
174 && self.ut_line == other.ut_line
175 && self
176 .ut_host
177 .iter()
178 .zip(other.ut_host.iter())
179 .all(|(a,b)| a == b)
180 && self
181 .__ut_spare
182 .iter()
183 .zip(other.__ut_spare.iter())
184 .all(|(a,b)| a == b)
185 }
186 }
187 impl Eq for utmpx {}
188 impl ::fmt::Debug for utmpx {
189 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
190 f.debug_struct("utmpx")
191 .field("ut_type", &self.ut_type)
192 .field("ut_tv", &self.ut_tv)
193 .field("ut_id", &self.ut_id)
194 .field("ut_pid", &self.ut_pid)
195 .field("ut_user", &self.ut_user)
196 .field("ut_line", &self.ut_line)
197 // FIXME: .field("ut_host", &self.ut_host)
198 // FIXME: .field("__ut_spare", &self.__ut_spare)
199 .finish()
200 }
201 }
202 impl ::hash::Hash for utmpx {
203 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
204 self.ut_type.hash(state);
205 self.ut_tv.hash(state);
206 self.ut_id.hash(state);
207 self.ut_pid.hash(state);
208 self.ut_user.hash(state);
209 self.ut_line.hash(state);
210 self.ut_host.hash(state);
211 self.__ut_spare.hash(state);
212 }
213 }
214
532ac7d7
XL
215 impl PartialEq for sockaddr_dl {
216 fn eq(&self, other: &sockaddr_dl) -> bool {
217 self.sdl_len == other.sdl_len
218 && self.sdl_family == other.sdl_family
219 && self.sdl_index == other.sdl_index
220 && self.sdl_type == other.sdl_type
221 && self.sdl_nlen == other.sdl_nlen
222 && self.sdl_alen == other.sdl_alen
223 && self.sdl_slen == other.sdl_slen
224 && self
225 .sdl_data
226 .iter()
227 .zip(other.sdl_data.iter())
228 .all(|(a,b)| a == b)
229 }
230 }
231 impl Eq for sockaddr_dl {}
232 impl ::fmt::Debug for sockaddr_dl {
233 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
234 f.debug_struct("sockaddr_dl")
235 .field("sdl_len", &self.sdl_len)
236 .field("sdl_family", &self.sdl_family)
237 .field("sdl_index", &self.sdl_index)
238 .field("sdl_type", &self.sdl_type)
239 .field("sdl_nlen", &self.sdl_nlen)
240 .field("sdl_alen", &self.sdl_alen)
241 .field("sdl_slen", &self.sdl_slen)
242 // FIXME: .field("sdl_data", &self.sdl_data)
243 .finish()
244 }
245 }
246 impl ::hash::Hash for sockaddr_dl {
247 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
248 self.sdl_len.hash(state);
249 self.sdl_family.hash(state);
250 self.sdl_index.hash(state);
251 self.sdl_type.hash(state);
252 self.sdl_nlen.hash(state);
253 self.sdl_alen.hash(state);
254 self.sdl_slen.hash(state);
255 self.sdl_data.hash(state);
256 }
257 }
416331ca
XL
258
259 impl PartialEq for mq_attr {
260 fn eq(&self, other: &mq_attr) -> bool {
261 self.mq_flags == other.mq_flags &&
262 self.mq_maxmsg == other.mq_maxmsg &&
263 self.mq_msgsize == other.mq_msgsize &&
264 self.mq_curmsgs == other.mq_curmsgs
265 }
266 }
267 impl Eq for mq_attr {}
268 impl ::fmt::Debug for mq_attr {
269 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
270 f.debug_struct("mq_attr")
271 .field("mq_flags", &self.mq_flags)
272 .field("mq_maxmsg", &self.mq_maxmsg)
273 .field("mq_msgsize", &self.mq_msgsize)
274 .field("mq_curmsgs", &self.mq_curmsgs)
275 .finish()
276 }
277 }
278 impl ::hash::Hash for mq_attr {
279 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
280 self.mq_flags.hash(state);
281 self.mq_maxmsg.hash(state);
282 self.mq_msgsize.hash(state);
283 self.mq_curmsgs.hash(state);
284 }
285 }
286
287 impl PartialEq for sigevent {
288 fn eq(&self, other: &sigevent) -> bool {
289 self.sigev_notify == other.sigev_notify
290 && self.sigev_signo == other.sigev_signo
291 && self.sigev_value == other.sigev_value
292 && self.sigev_notify_thread_id
293 == other.sigev_notify_thread_id
294 }
295 }
296 impl Eq for sigevent {}
297 impl ::fmt::Debug for sigevent {
298 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
299 f.debug_struct("sigevent")
300 .field("sigev_notify", &self.sigev_notify)
301 .field("sigev_signo", &self.sigev_signo)
302 .field("sigev_value", &self.sigev_value)
303 .field("sigev_notify_thread_id",
304 &self.sigev_notify_thread_id)
305 .finish()
306 }
307 }
308 impl ::hash::Hash for sigevent {
309 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
310 self.sigev_notify.hash(state);
311 self.sigev_signo.hash(state);
312 self.sigev_value.hash(state);
313 self.sigev_notify_thread_id.hash(state);
314 }
315 }
532ac7d7
XL
316 }
317}
318
8bb4bdeb
XL
319pub const SIGEV_THREAD_ID: ::c_int = 4;
320
69743fb6
XL
321pub const EXTATTR_NAMESPACE_EMPTY: ::c_int = 0;
322pub const EXTATTR_NAMESPACE_USER: ::c_int = 1;
323pub const EXTATTR_NAMESPACE_SYSTEM: ::c_int = 2;
324
476ff2be
SL
325pub const RAND_MAX: ::c_int = 0x7fff_fffd;
326pub const PTHREAD_STACK_MIN: ::size_t = 2048;
8bb4bdeb 327pub const PTHREAD_MUTEX_ADAPTIVE_NP: ::c_int = 4;
476ff2be
SL
328pub const SIGSTKSZ: ::size_t = 34816;
329pub const SF_NODISKIO: ::c_int = 0x00000001;
330pub const SF_MNOWAIT: ::c_int = 0x00000002;
331pub const SF_SYNC: ::c_int = 0x00000004;
8faf50e0
XL
332pub const SF_USER_READAHEAD: ::c_int = 0x00000008;
333pub const SF_NOCACHE: ::c_int = 0x00000010;
476ff2be 334pub const O_CLOEXEC: ::c_int = 0x00100000;
041b39d2
XL
335pub const O_DIRECTORY: ::c_int = 0x00020000;
336pub const O_EXEC: ::c_int = 0x00040000;
337pub const O_TTY_INIT: ::c_int = 0x00080000;
476ff2be
SL
338pub const F_GETLK: ::c_int = 11;
339pub const F_SETLK: ::c_int = 12;
340pub const F_SETLKW: ::c_int = 13;
2c00a5a8
XL
341pub const ENOTCAPABLE: ::c_int = 93;
342pub const ECAPMODE: ::c_int = 94;
343pub const ENOTRECOVERABLE: ::c_int = 95;
344pub const EOWNERDEAD: ::c_int = 96;
476ff2be
SL
345pub const RLIMIT_NPTS: ::c_int = 11;
346pub const RLIMIT_SWAP: ::c_int = 12;
0531ce1d
XL
347pub const RLIMIT_KQUEUES: ::c_int = 13;
348pub const RLIMIT_UMTXP: ::c_int = 14;
e74abb32 349#[deprecated(since = "0.2.64", note = "Not stable across OS versions")]
0531ce1d 350pub const RLIM_NLIMITS: ::rlim_t = 15;
476ff2be 351
f035d41b
XL
352pub const NI_NOFQDN: ::c_int = 0x00000001;
353pub const NI_NUMERICHOST: ::c_int = 0x00000002;
354pub const NI_NAMEREQD: ::c_int = 0x00000004;
355pub const NI_NUMERICSERV: ::c_int = 0x00000008;
356pub const NI_DGRAM: ::c_int = 0x00000010;
357pub const NI_NUMERICSCOPE: ::c_int = 0x00000020;
358
476ff2be
SL
359pub const Q_GETQUOTA: ::c_int = 0x700;
360pub const Q_SETQUOTA: ::c_int = 0x800;
361
362pub const POSIX_FADV_NORMAL: ::c_int = 0;
363pub const POSIX_FADV_RANDOM: ::c_int = 1;
364pub const POSIX_FADV_SEQUENTIAL: ::c_int = 2;
365pub const POSIX_FADV_WILLNEED: ::c_int = 3;
366pub const POSIX_FADV_DONTNEED: ::c_int = 4;
367pub const POSIX_FADV_NOREUSE: ::c_int = 5;
368
ea8adc8c
XL
369pub const POLLINIGNEOF: ::c_short = 0x2000;
370
416331ca
XL
371pub const EVFILT_READ: i16 = -1;
372pub const EVFILT_WRITE: i16 = -2;
373pub const EVFILT_AIO: i16 = -3;
374pub const EVFILT_VNODE: i16 = -4;
375pub const EVFILT_PROC: i16 = -5;
376pub const EVFILT_SIGNAL: i16 = -6;
377pub const EVFILT_TIMER: i16 = -7;
378pub const EVFILT_PROCDESC: i16 = -8;
379pub const EVFILT_FS: i16 = -9;
380pub const EVFILT_LIO: i16 = -10;
381pub const EVFILT_USER: i16 = -11;
382pub const EVFILT_SENDFILE: i16 = -12;
383pub const EVFILT_EMPTY: i16 = -13;
384
385pub const EV_ADD: u16 = 0x1;
386pub const EV_DELETE: u16 = 0x2;
387pub const EV_ENABLE: u16 = 0x4;
388pub const EV_DISABLE: u16 = 0x8;
389pub const EV_ONESHOT: u16 = 0x10;
390pub const EV_CLEAR: u16 = 0x20;
391pub const EV_RECEIPT: u16 = 0x40;
392pub const EV_DISPATCH: u16 = 0x80;
393pub const EV_DROP: u16 = 0x1000;
394pub const EV_FLAG1: u16 = 0x2000;
395pub const EV_ERROR: u16 = 0x4000;
396pub const EV_EOF: u16 = 0x8000;
397pub const EV_SYSFLAGS: u16 = 0xf000;
398
399pub const NOTE_TRIGGER: u32 = 0x01000000;
400pub const NOTE_FFNOP: u32 = 0x00000000;
401pub const NOTE_FFAND: u32 = 0x40000000;
402pub const NOTE_FFOR: u32 = 0x80000000;
403pub const NOTE_FFCOPY: u32 = 0xc0000000;
404pub const NOTE_FFCTRLMASK: u32 = 0xc0000000;
405pub const NOTE_FFLAGSMASK: u32 = 0x00ffffff;
406pub const NOTE_LOWAT: u32 = 0x00000001;
407pub const NOTE_DELETE: u32 = 0x00000001;
408pub const NOTE_WRITE: u32 = 0x00000002;
409pub const NOTE_EXTEND: u32 = 0x00000004;
410pub const NOTE_ATTRIB: u32 = 0x00000008;
411pub const NOTE_LINK: u32 = 0x00000010;
412pub const NOTE_RENAME: u32 = 0x00000020;
413pub const NOTE_REVOKE: u32 = 0x00000040;
414pub const NOTE_EXIT: u32 = 0x80000000;
415pub const NOTE_FORK: u32 = 0x40000000;
416pub const NOTE_EXEC: u32 = 0x20000000;
417pub const NOTE_PDATAMASK: u32 = 0x000fffff;
418pub const NOTE_PCTRLMASK: u32 = 0xf0000000;
419pub const NOTE_TRACK: u32 = 0x00000001;
420pub const NOTE_TRACKERR: u32 = 0x00000002;
421pub const NOTE_CHILD: u32 = 0x00000004;
422pub const NOTE_SECONDS: u32 = 0x00000001;
423pub const NOTE_MSECONDS: u32 = 0x00000002;
424pub const NOTE_USECONDS: u32 = 0x00000004;
425pub const NOTE_NSECONDS: u32 = 0x00000008;
476ff2be
SL
426
427pub const MADV_PROTECT: ::c_int = 10;
428pub const RUSAGE_THREAD: ::c_int = 1;
429
ea8adc8c
XL
430pub const CLOCK_REALTIME: ::clockid_t = 0;
431pub const CLOCK_VIRTUAL: ::clockid_t = 1;
432pub const CLOCK_PROF: ::clockid_t = 2;
433pub const CLOCK_MONOTONIC: ::clockid_t = 4;
434pub const CLOCK_UPTIME: ::clockid_t = 5;
435pub const CLOCK_UPTIME_PRECISE: ::clockid_t = 7;
436pub const CLOCK_UPTIME_FAST: ::clockid_t = 8;
437pub const CLOCK_REALTIME_PRECISE: ::clockid_t = 9;
438pub const CLOCK_REALTIME_FAST: ::clockid_t = 10;
439pub const CLOCK_MONOTONIC_PRECISE: ::clockid_t = 11;
440pub const CLOCK_MONOTONIC_FAST: ::clockid_t = 12;
441pub const CLOCK_SECOND: ::clockid_t = 13;
442pub const CLOCK_THREAD_CPUTIME_ID: ::clockid_t = 14;
443pub const CLOCK_PROCESS_CPUTIME_ID: ::clockid_t = 15;
476ff2be
SL
444
445pub const CTL_UNSPEC: ::c_int = 0;
446pub const CTL_KERN: ::c_int = 1;
447pub const CTL_VM: ::c_int = 2;
448pub const CTL_VFS: ::c_int = 3;
449pub const CTL_NET: ::c_int = 4;
450pub const CTL_DEBUG: ::c_int = 5;
451pub const CTL_HW: ::c_int = 6;
452pub const CTL_MACHDEP: ::c_int = 7;
453pub const CTL_USER: ::c_int = 8;
454pub const CTL_P1003_1B: ::c_int = 9;
476ff2be
SL
455pub const KERN_OSTYPE: ::c_int = 1;
456pub const KERN_OSRELEASE: ::c_int = 2;
457pub const KERN_OSREV: ::c_int = 3;
458pub const KERN_VERSION: ::c_int = 4;
459pub const KERN_MAXVNODES: ::c_int = 5;
460pub const KERN_MAXPROC: ::c_int = 6;
461pub const KERN_MAXFILES: ::c_int = 7;
462pub const KERN_ARGMAX: ::c_int = 8;
463pub const KERN_SECURELVL: ::c_int = 9;
464pub const KERN_HOSTNAME: ::c_int = 10;
465pub const KERN_HOSTID: ::c_int = 11;
466pub const KERN_CLOCKRATE: ::c_int = 12;
467pub const KERN_VNODE: ::c_int = 13;
468pub const KERN_PROC: ::c_int = 14;
469pub const KERN_FILE: ::c_int = 15;
470pub const KERN_PROF: ::c_int = 16;
471pub const KERN_POSIX1: ::c_int = 17;
472pub const KERN_NGROUPS: ::c_int = 18;
473pub const KERN_JOB_CONTROL: ::c_int = 19;
474pub const KERN_SAVED_IDS: ::c_int = 20;
475pub const KERN_BOOTTIME: ::c_int = 21;
476pub const KERN_NISDOMAINNAME: ::c_int = 22;
477pub const KERN_UPDATEINTERVAL: ::c_int = 23;
478pub const KERN_OSRELDATE: ::c_int = 24;
479pub const KERN_NTP_PLL: ::c_int = 25;
480pub const KERN_BOOTFILE: ::c_int = 26;
481pub const KERN_MAXFILESPERPROC: ::c_int = 27;
482pub const KERN_MAXPROCPERUID: ::c_int = 28;
483pub const KERN_DUMPDEV: ::c_int = 29;
484pub const KERN_IPC: ::c_int = 30;
485pub const KERN_DUMMY: ::c_int = 31;
486pub const KERN_PS_STRINGS: ::c_int = 32;
487pub const KERN_USRSTACK: ::c_int = 33;
488pub const KERN_LOGSIGEXIT: ::c_int = 34;
489pub const KERN_IOV_MAX: ::c_int = 35;
490pub const KERN_HOSTUUID: ::c_int = 36;
491pub const KERN_ARND: ::c_int = 37;
476ff2be
SL
492pub const KERN_PROC_ALL: ::c_int = 0;
493pub const KERN_PROC_PID: ::c_int = 1;
494pub const KERN_PROC_PGRP: ::c_int = 2;
495pub const KERN_PROC_SESSION: ::c_int = 3;
496pub const KERN_PROC_TTY: ::c_int = 4;
497pub const KERN_PROC_UID: ::c_int = 5;
498pub const KERN_PROC_RUID: ::c_int = 6;
499pub const KERN_PROC_ARGS: ::c_int = 7;
500pub const KERN_PROC_PROC: ::c_int = 8;
501pub const KERN_PROC_SV_NAME: ::c_int = 9;
502pub const KERN_PROC_RGID: ::c_int = 10;
503pub const KERN_PROC_GID: ::c_int = 11;
504pub const KERN_PROC_PATHNAME: ::c_int = 12;
505pub const KERN_PROC_OVMMAP: ::c_int = 13;
506pub const KERN_PROC_OFILEDESC: ::c_int = 14;
507pub const KERN_PROC_KSTACK: ::c_int = 15;
508pub const KERN_PROC_INC_THREAD: ::c_int = 0x10;
509pub const KERN_PROC_VMMAP: ::c_int = 32;
510pub const KERN_PROC_FILEDESC: ::c_int = 33;
511pub const KERN_PROC_GROUPS: ::c_int = 34;
512pub const KERN_PROC_ENV: ::c_int = 35;
513pub const KERN_PROC_AUXV: ::c_int = 36;
514pub const KERN_PROC_RLIMIT: ::c_int = 37;
515pub const KERN_PROC_PS_STRINGS: ::c_int = 38;
516pub const KERN_PROC_UMASK: ::c_int = 39;
517pub const KERN_PROC_OSREL: ::c_int = 40;
518pub const KERN_PROC_SIGTRAMP: ::c_int = 41;
519pub const KIPC_MAXSOCKBUF: ::c_int = 1;
520pub const KIPC_SOCKBUF_WASTE: ::c_int = 2;
521pub const KIPC_SOMAXCONN: ::c_int = 3;
522pub const KIPC_MAX_LINKHDR: ::c_int = 4;
523pub const KIPC_MAX_PROTOHDR: ::c_int = 5;
524pub const KIPC_MAX_HDR: ::c_int = 6;
525pub const KIPC_MAX_DATALEN: ::c_int = 7;
526pub const HW_MACHINE: ::c_int = 1;
527pub const HW_MODEL: ::c_int = 2;
528pub const HW_NCPU: ::c_int = 3;
529pub const HW_BYTEORDER: ::c_int = 4;
530pub const HW_PHYSMEM: ::c_int = 5;
531pub const HW_USERMEM: ::c_int = 6;
532pub const HW_PAGESIZE: ::c_int = 7;
533pub const HW_DISKNAMES: ::c_int = 8;
534pub const HW_DISKSTATS: ::c_int = 9;
535pub const HW_FLOATINGPT: ::c_int = 10;
536pub const HW_MACHINE_ARCH: ::c_int = 11;
537pub const HW_REALMEM: ::c_int = 12;
476ff2be
SL
538pub const USER_CS_PATH: ::c_int = 1;
539pub const USER_BC_BASE_MAX: ::c_int = 2;
540pub const USER_BC_DIM_MAX: ::c_int = 3;
541pub const USER_BC_SCALE_MAX: ::c_int = 4;
542pub const USER_BC_STRING_MAX: ::c_int = 5;
543pub const USER_COLL_WEIGHTS_MAX: ::c_int = 6;
544pub const USER_EXPR_NEST_MAX: ::c_int = 7;
545pub const USER_LINE_MAX: ::c_int = 8;
546pub const USER_RE_DUP_MAX: ::c_int = 9;
547pub const USER_POSIX2_VERSION: ::c_int = 10;
548pub const USER_POSIX2_C_BIND: ::c_int = 11;
549pub const USER_POSIX2_C_DEV: ::c_int = 12;
550pub const USER_POSIX2_CHAR_TERM: ::c_int = 13;
551pub const USER_POSIX2_FORT_DEV: ::c_int = 14;
552pub const USER_POSIX2_FORT_RUN: ::c_int = 15;
553pub const USER_POSIX2_LOCALEDEF: ::c_int = 16;
554pub const USER_POSIX2_SW_DEV: ::c_int = 17;
555pub const USER_POSIX2_UPE: ::c_int = 18;
556pub const USER_STREAM_MAX: ::c_int = 19;
557pub const USER_TZNAME_MAX: ::c_int = 20;
476ff2be
SL
558pub const CTL_P1003_1B_ASYNCHRONOUS_IO: ::c_int = 1;
559pub const CTL_P1003_1B_MAPPED_FILES: ::c_int = 2;
560pub const CTL_P1003_1B_MEMLOCK: ::c_int = 3;
561pub const CTL_P1003_1B_MEMLOCK_RANGE: ::c_int = 4;
562pub const CTL_P1003_1B_MEMORY_PROTECTION: ::c_int = 5;
563pub const CTL_P1003_1B_MESSAGE_PASSING: ::c_int = 6;
564pub const CTL_P1003_1B_PRIORITIZED_IO: ::c_int = 7;
565pub const CTL_P1003_1B_PRIORITY_SCHEDULING: ::c_int = 8;
566pub const CTL_P1003_1B_REALTIME_SIGNALS: ::c_int = 9;
567pub const CTL_P1003_1B_SEMAPHORES: ::c_int = 10;
568pub const CTL_P1003_1B_FSYNC: ::c_int = 11;
569pub const CTL_P1003_1B_SHARED_MEMORY_OBJECTS: ::c_int = 12;
570pub const CTL_P1003_1B_SYNCHRONIZED_IO: ::c_int = 13;
571pub const CTL_P1003_1B_TIMERS: ::c_int = 14;
572pub const CTL_P1003_1B_AIO_LISTIO_MAX: ::c_int = 15;
573pub const CTL_P1003_1B_AIO_MAX: ::c_int = 16;
574pub const CTL_P1003_1B_AIO_PRIO_DELTA_MAX: ::c_int = 17;
575pub const CTL_P1003_1B_DELAYTIMER_MAX: ::c_int = 18;
576pub const CTL_P1003_1B_MQ_OPEN_MAX: ::c_int = 19;
577pub const CTL_P1003_1B_PAGESIZE: ::c_int = 20;
578pub const CTL_P1003_1B_RTSIG_MAX: ::c_int = 21;
579pub const CTL_P1003_1B_SEM_NSEMS_MAX: ::c_int = 22;
580pub const CTL_P1003_1B_SEM_VALUE_MAX: ::c_int = 23;
581pub const CTL_P1003_1B_SIGQUEUE_MAX: ::c_int = 24;
582pub const CTL_P1003_1B_TIMER_MAX: ::c_int = 25;
8bb4bdeb
XL
583pub const TIOCGPTN: ::c_uint = 0x4004740f;
584pub const TIOCPTMASTER: ::c_uint = 0x2000741c;
585pub const TIOCSIG: ::c_uint = 0x2004745f;
586pub const TIOCM_DCD: ::c_int = 0x40;
587pub const H4DISC: ::c_int = 0x7;
588
e74abb32
XL
589pub const BIOCSETFNR: ::c_ulong = 0x80104282;
590
532ac7d7
XL
591pub const FIONWRITE: ::c_ulong = 0x40046677;
592pub const FIONSPACE: ::c_ulong = 0x40046676;
593pub const FIOSEEKDATA: ::c_ulong = 0xc0086661;
594pub const FIOSEEKHOLE: ::c_ulong = 0xc0086662;
595
8bb4bdeb
XL
596pub const JAIL_API_VERSION: u32 = 2;
597pub const JAIL_CREATE: ::c_int = 0x01;
598pub const JAIL_UPDATE: ::c_int = 0x02;
599pub const JAIL_ATTACH: ::c_int = 0x04;
600pub const JAIL_DYING: ::c_int = 0x08;
601pub const JAIL_SET_MASK: ::c_int = 0x0f;
602pub const JAIL_GET_MASK: ::c_int = 0x08;
603pub const JAIL_SYS_DISABLE: ::c_int = 0;
604pub const JAIL_SYS_NEW: ::c_int = 1;
605pub const JAIL_SYS_INHERIT: ::c_int = 2;
606
607pub const SO_BINTIME: ::c_int = 0x2000;
608pub const SO_NO_OFFLOAD: ::c_int = 0x4000;
609pub const SO_NO_DDP: ::c_int = 0x8000;
69743fb6 610pub const SO_REUSEPORT_LB: ::c_int = 0x10000;
8bb4bdeb
XL
611pub const SO_LABEL: ::c_int = 0x1009;
612pub const SO_PEERLABEL: ::c_int = 0x1010;
613pub const SO_LISTENQLIMIT: ::c_int = 0x1011;
614pub const SO_LISTENQLEN: ::c_int = 0x1012;
615pub const SO_LISTENINCQLEN: ::c_int = 0x1013;
616pub const SO_SETFIB: ::c_int = 0x1014;
617pub const SO_USER_COOKIE: ::c_int = 0x1015;
618pub const SO_PROTOCOL: ::c_int = 0x1016;
619pub const SO_PROTOTYPE: ::c_int = SO_PROTOCOL;
620pub const SO_VENDOR: ::c_int = 0x80000000;
621
abe05a73
XL
622pub const LOCAL_PEERCRED: ::c_int = 1;
623pub const LOCAL_CREDS: ::c_int = 2;
624pub const LOCAL_CONNWAIT: ::c_int = 4;
625pub const LOCAL_VENDOR: ::c_int = SO_VENDOR;
626
69743fb6
XL
627pub const PT_LWPINFO: ::c_int = 13;
628pub const PT_GETNUMLWPS: ::c_int = 14;
629pub const PT_GETLWPLIST: ::c_int = 15;
630pub const PT_CLEARSTEP: ::c_int = 16;
631pub const PT_SETSTEP: ::c_int = 17;
632pub const PT_SUSPEND: ::c_int = 18;
633pub const PT_RESUME: ::c_int = 19;
634pub const PT_TO_SCE: ::c_int = 20;
635pub const PT_TO_SCX: ::c_int = 21;
636pub const PT_SYSCALL: ::c_int = 22;
637pub const PT_FOLLOW_FORK: ::c_int = 23;
638pub const PT_LWP_EVENTS: ::c_int = 24;
639pub const PT_GET_EVENT_MASK: ::c_int = 25;
640pub const PT_SET_EVENT_MASK: ::c_int = 26;
641pub const PT_GETREGS: ::c_int = 33;
642pub const PT_SETREGS: ::c_int = 34;
643pub const PT_GETFPREGS: ::c_int = 35;
644pub const PT_SETFPREGS: ::c_int = 36;
645pub const PT_GETDBREGS: ::c_int = 37;
646pub const PT_SETDBREGS: ::c_int = 38;
647pub const PT_VM_TIMESTAMP: ::c_int = 40;
648pub const PT_VM_ENTRY: ::c_int = 41;
649pub const PT_FIRSTMACH: ::c_int = 64;
650
651pub const PTRACE_EXEC: ::c_int = 0x0001;
652pub const PTRACE_SCE: ::c_int = 0x0002;
653pub const PTRACE_SCX: ::c_int = 0x0004;
654pub const PTRACE_SYSCALL: ::c_int = PTRACE_SCE | PTRACE_SCX;
655pub const PTRACE_FORK: ::c_int = 0x0008;
656pub const PTRACE_LWP: ::c_int = 0x0010;
657pub const PTRACE_VFORK: ::c_int = 0x0020;
658pub const PTRACE_DEFAULT: ::c_int = PTRACE_EXEC;
659
8bb4bdeb
XL
660pub const AF_SLOW: ::c_int = 33;
661pub const AF_SCLUSTER: ::c_int = 34;
662pub const AF_ARP: ::c_int = 35;
663pub const AF_BLUETOOTH: ::c_int = 36;
664pub const AF_IEEE80211: ::c_int = 37;
665pub const AF_INET_SDP: ::c_int = 40;
666pub const AF_INET6_SDP: ::c_int = 42;
8bb4bdeb 667
ff7c6d11
XL
668// https://github.com/freebsd/freebsd/blob/master/sys/net/if.h#L140
669pub const IFF_UP: ::c_int = 0x1; // (n) interface is up
670pub const IFF_BROADCAST: ::c_int = 0x2; // (i) broadcast address valid
671pub const IFF_DEBUG: ::c_int = 0x4; // (n) turn on debugging
672pub const IFF_LOOPBACK: ::c_int = 0x8; // (i) is a loopback net
673pub const IFF_POINTOPOINT: ::c_int = 0x10; // (i) is a point-to-point link
e74abb32 674 // 0x20 was IFF_SMART
ff7c6d11 675pub const IFF_RUNNING: ::c_int = 0x40; // (d) resources allocated
2c00a5a8 676#[doc(hidden)]
416331ca 677#[deprecated(
e74abb32
XL
678 since = "0.2.54",
679 note = "IFF_DRV_RUNNING is deprecated. Use the portable IFF_RUNNING instead"
416331ca 680)]
ff7c6d11
XL
681pub const IFF_DRV_RUNNING: ::c_int = 0x40;
682pub const IFF_NOARP: ::c_int = 0x80; // (n) no address resolution protocol
683pub const IFF_PROMISC: ::c_int = 0x100; // (n) receive all packets
684pub const IFF_ALLMULTI: ::c_int = 0x200; // (n) receive all multicast packets
685pub const IFF_OACTIVE: ::c_int = 0x400; // (d) tx hardware queue is full
2c00a5a8 686#[doc(hidden)]
416331ca
XL
687#[deprecated(
688 since = "0.2.54",
e74abb32 689 note = "Use the portable `IFF_OACTIVE` instead"
416331ca 690)]
ff7c6d11
XL
691pub const IFF_DRV_OACTIVE: ::c_int = 0x400;
692pub const IFF_SIMPLEX: ::c_int = 0x800; // (i) can't hear own transmissions
693pub const IFF_LINK0: ::c_int = 0x1000; // per link layer defined bit
694pub const IFF_LINK1: ::c_int = 0x2000; // per link layer defined bit
695pub const IFF_LINK2: ::c_int = 0x4000; // per link layer defined bit
696pub const IFF_ALTPHYS: ::c_int = IFF_LINK2; // use alternate physical connection
697pub const IFF_MULTICAST: ::c_int = 0x8000; // (i) supports multicast
e74abb32 698 // (i) unconfigurable using ioctl(2)
ff7c6d11
XL
699pub const IFF_CANTCONFIG: ::c_int = 0x10000;
700pub const IFF_PPROMISC: ::c_int = 0x20000; // (n) user-requested promisc mode
701pub const IFF_MONITOR: ::c_int = 0x40000; // (n) user-requested monitor mode
702pub const IFF_STATICARP: ::c_int = 0x80000; // (n) static ARP
703pub const IFF_DYING: ::c_int = 0x200000; // (n) interface is winding down
704pub const IFF_RENAMING: ::c_int = 0x400000; // (n) interface is being renamed
705
ea8adc8c
XL
706// sys/netinet/in.h
707// Protocols (RFC 1700)
708// NOTE: These are in addition to the constants defined in src/unix/mod.rs
709
710// IPPROTO_IP defined in src/unix/mod.rs
711/// IP6 hop-by-hop options
712pub const IPPROTO_HOPOPTS: ::c_int = 0;
713// IPPROTO_ICMP defined in src/unix/mod.rs
714/// group mgmt protocol
715pub const IPPROTO_IGMP: ::c_int = 2;
716/// gateway^2 (deprecated)
717pub const IPPROTO_GGP: ::c_int = 3;
718/// for compatibility
719pub const IPPROTO_IPIP: ::c_int = 4;
720// IPPROTO_TCP defined in src/unix/mod.rs
721/// Stream protocol II.
722pub const IPPROTO_ST: ::c_int = 7;
723/// exterior gateway protocol
724pub const IPPROTO_EGP: ::c_int = 8;
725/// private interior gateway
726pub const IPPROTO_PIGP: ::c_int = 9;
727/// BBN RCC Monitoring
728pub const IPPROTO_RCCMON: ::c_int = 10;
729/// network voice protocol
730pub const IPPROTO_NVPII: ::c_int = 11;
731/// pup
732pub const IPPROTO_PUP: ::c_int = 12;
733/// Argus
734pub const IPPROTO_ARGUS: ::c_int = 13;
735/// EMCON
736pub const IPPROTO_EMCON: ::c_int = 14;
737/// Cross Net Debugger
738pub const IPPROTO_XNET: ::c_int = 15;
739/// Chaos
740pub const IPPROTO_CHAOS: ::c_int = 16;
741// IPPROTO_UDP defined in src/unix/mod.rs
742/// Multiplexing
743pub const IPPROTO_MUX: ::c_int = 18;
744/// DCN Measurement Subsystems
745pub const IPPROTO_MEAS: ::c_int = 19;
746/// Host Monitoring
747pub const IPPROTO_HMP: ::c_int = 20;
748/// Packet Radio Measurement
749pub const IPPROTO_PRM: ::c_int = 21;
750/// xns idp
751pub const IPPROTO_IDP: ::c_int = 22;
752/// Trunk-1
753pub const IPPROTO_TRUNK1: ::c_int = 23;
754/// Trunk-2
755pub const IPPROTO_TRUNK2: ::c_int = 24;
756/// Leaf-1
757pub const IPPROTO_LEAF1: ::c_int = 25;
758/// Leaf-2
759pub const IPPROTO_LEAF2: ::c_int = 26;
760/// Reliable Data
761pub const IPPROTO_RDP: ::c_int = 27;
762/// Reliable Transaction
763pub const IPPROTO_IRTP: ::c_int = 28;
764/// tp-4 w/ class negotiation
765pub const IPPROTO_TP: ::c_int = 29;
766/// Bulk Data Transfer
767pub const IPPROTO_BLT: ::c_int = 30;
768/// Network Services
769pub const IPPROTO_NSP: ::c_int = 31;
770/// Merit Internodal
771pub const IPPROTO_INP: ::c_int = 32;
772/// Sequential Exchange
773pub const IPPROTO_SEP: ::c_int = 33;
774/// Third Party Connect
775pub const IPPROTO_3PC: ::c_int = 34;
776/// InterDomain Policy Routing
777pub const IPPROTO_IDPR: ::c_int = 35;
778/// XTP
779pub const IPPROTO_XTP: ::c_int = 36;
780/// Datagram Delivery
781pub const IPPROTO_DDP: ::c_int = 37;
782/// Control Message Transport
783pub const IPPROTO_CMTP: ::c_int = 38;
784/// TP++ Transport
785pub const IPPROTO_TPXX: ::c_int = 39;
786/// IL transport protocol
787pub const IPPROTO_IL: ::c_int = 40;
788// IPPROTO_IPV6 defined in src/unix/mod.rs
789/// Source Demand Routing
790pub const IPPROTO_SDRP: ::c_int = 42;
791/// IP6 routing header
792pub const IPPROTO_ROUTING: ::c_int = 43;
793/// IP6 fragmentation header
794pub const IPPROTO_FRAGMENT: ::c_int = 44;
795/// InterDomain Routing
796pub const IPPROTO_IDRP: ::c_int = 45;
797/// resource reservation
798pub const IPPROTO_RSVP: ::c_int = 46;
799/// General Routing Encap.
800pub const IPPROTO_GRE: ::c_int = 47;
801/// Mobile Host Routing
802pub const IPPROTO_MHRP: ::c_int = 48;
803/// BHA
804pub const IPPROTO_BHA: ::c_int = 49;
805/// IP6 Encap Sec. Payload
806pub const IPPROTO_ESP: ::c_int = 50;
807/// IP6 Auth Header
808pub const IPPROTO_AH: ::c_int = 51;
809/// Integ. Net Layer Security
810pub const IPPROTO_INLSP: ::c_int = 52;
811/// IP with encryption
812pub const IPPROTO_SWIPE: ::c_int = 53;
813/// Next Hop Resolution
814pub const IPPROTO_NHRP: ::c_int = 54;
815/// IP Mobility
816pub const IPPROTO_MOBILE: ::c_int = 55;
817/// Transport Layer Security
818pub const IPPROTO_TLSP: ::c_int = 56;
819/// SKIP
820pub const IPPROTO_SKIP: ::c_int = 57;
821// IPPROTO_ICMPV6 defined in src/unix/mod.rs
822/// IP6 no next header
823pub const IPPROTO_NONE: ::c_int = 59;
824/// IP6 destination option
825pub const IPPROTO_DSTOPTS: ::c_int = 60;
826/// any host internal protocol
827pub const IPPROTO_AHIP: ::c_int = 61;
828/// CFTP
829pub const IPPROTO_CFTP: ::c_int = 62;
830/// "hello" routing protocol
831pub const IPPROTO_HELLO: ::c_int = 63;
832/// SATNET/Backroom EXPAK
833pub const IPPROTO_SATEXPAK: ::c_int = 64;
834/// Kryptolan
835pub const IPPROTO_KRYPTOLAN: ::c_int = 65;
836/// Remote Virtual Disk
837pub const IPPROTO_RVD: ::c_int = 66;
838/// Pluribus Packet Core
839pub const IPPROTO_IPPC: ::c_int = 67;
840/// Any distributed FS
841pub const IPPROTO_ADFS: ::c_int = 68;
842/// Satnet Monitoring
843pub const IPPROTO_SATMON: ::c_int = 69;
844/// VISA Protocol
845pub const IPPROTO_VISA: ::c_int = 70;
846/// Packet Core Utility
847pub const IPPROTO_IPCV: ::c_int = 71;
848/// Comp. Prot. Net. Executive
849pub const IPPROTO_CPNX: ::c_int = 72;
850/// Comp. Prot. HeartBeat
851pub const IPPROTO_CPHB: ::c_int = 73;
852/// Wang Span Network
853pub const IPPROTO_WSN: ::c_int = 74;
854/// Packet Video Protocol
855pub const IPPROTO_PVP: ::c_int = 75;
856/// BackRoom SATNET Monitoring
857pub const IPPROTO_BRSATMON: ::c_int = 76;
858/// Sun net disk proto (temp.)
859pub const IPPROTO_ND: ::c_int = 77;
860/// WIDEBAND Monitoring
861pub const IPPROTO_WBMON: ::c_int = 78;
862/// WIDEBAND EXPAK
863pub const IPPROTO_WBEXPAK: ::c_int = 79;
864/// ISO cnlp
865pub const IPPROTO_EON: ::c_int = 80;
866/// VMTP
867pub const IPPROTO_VMTP: ::c_int = 81;
868/// Secure VMTP
869pub const IPPROTO_SVMTP: ::c_int = 82;
870/// Banyon VINES
871pub const IPPROTO_VINES: ::c_int = 83;
872/// TTP
873pub const IPPROTO_TTP: ::c_int = 84;
874/// NSFNET-IGP
875pub const IPPROTO_IGP: ::c_int = 85;
876/// dissimilar gateway prot.
877pub const IPPROTO_DGP: ::c_int = 86;
878/// TCF
879pub const IPPROTO_TCF: ::c_int = 87;
880/// Cisco/GXS IGRP
881pub const IPPROTO_IGRP: ::c_int = 88;
882/// OSPFIGP
883pub const IPPROTO_OSPFIGP: ::c_int = 89;
884/// Strite RPC protocol
885pub const IPPROTO_SRPC: ::c_int = 90;
886/// Locus Address Resoloution
887pub const IPPROTO_LARP: ::c_int = 91;
888/// Multicast Transport
889pub const IPPROTO_MTP: ::c_int = 92;
890/// AX.25 Frames
891pub const IPPROTO_AX25: ::c_int = 93;
892/// IP encapsulated in IP
893pub const IPPROTO_IPEIP: ::c_int = 94;
894/// Mobile Int.ing control
895pub const IPPROTO_MICP: ::c_int = 95;
896/// Semaphore Comm. security
897pub const IPPROTO_SCCSP: ::c_int = 96;
898/// Ethernet IP encapsulation
899pub const IPPROTO_ETHERIP: ::c_int = 97;
900/// encapsulation header
901pub const IPPROTO_ENCAP: ::c_int = 98;
902/// any private encr. scheme
903pub const IPPROTO_APES: ::c_int = 99;
904/// GMTP
905pub const IPPROTO_GMTP: ::c_int = 100;
906/// payload compression (IPComp)
907pub const IPPROTO_IPCOMP: ::c_int = 108;
908/// SCTP
909pub const IPPROTO_SCTP: ::c_int = 132;
910/// IPv6 Mobility Header
911pub const IPPROTO_MH: ::c_int = 135;
912/// UDP-Lite
913pub const IPPROTO_UDPLITE: ::c_int = 136;
914/// IP6 Host Identity Protocol
915pub const IPPROTO_HIP: ::c_int = 139;
916/// IP6 Shim6 Protocol
917pub const IPPROTO_SHIM6: ::c_int = 140;
918
919/* 101-254: Partly Unassigned */
920/// Protocol Independent Mcast
921pub const IPPROTO_PIM: ::c_int = 103;
922/// CARP
923pub const IPPROTO_CARP: ::c_int = 112;
924/// PGM
925pub const IPPROTO_PGM: ::c_int = 113;
926/// MPLS-in-IP
927pub const IPPROTO_MPLS: ::c_int = 137;
928/// PFSYNC
929pub const IPPROTO_PFSYNC: ::c_int = 240;
930
931/* 255: Reserved */
932/* BSD Private, local use, namespace incursion, no longer used */
933/// OLD divert pseudo-proto
934pub const IPPROTO_OLD_DIVERT: ::c_int = 254;
935pub const IPPROTO_MAX: ::c_int = 256;
936/// last return value of *_input(), meaning "all job for this pkt is done".
937pub const IPPROTO_DONE: ::c_int = 257;
938
939/* Only used internally, so can be outside the range of valid IP protocols. */
940/// divert pseudo-protocol
7cac9316 941pub const IPPROTO_DIVERT: ::c_int = 258;
ea8adc8c
XL
942/// SeND pseudo-protocol
943pub const IPPROTO_SEND: ::c_int = 259;
7cac9316 944
69743fb6
XL
945// sys/netinet/TCP.h
946pub const TCP_MD5SIG: ::c_int = 16;
947pub const TCP_INFO: ::c_int = 32;
948pub const TCP_CONGESTION: ::c_int = 64;
949pub const TCP_CCALGOOPT: ::c_int = 65;
950pub const TCP_KEEPINIT: ::c_int = 128;
951pub const TCP_FASTOPEN: ::c_int = 1025;
952pub const TCP_PCAP_OUT: ::c_int = 2048;
953pub const TCP_PCAP_IN: ::c_int = 4096;
954
abe05a73 955pub const IP_BINDANY: ::c_int = 24;
532ac7d7
XL
956pub const IP_BINDMULTI: ::c_int = 25;
957pub const IP_RSS_LISTEN_BUCKET: ::c_int = 26;
e74abb32
XL
958pub const IP_ORIGDSTADDR: ::c_int = 27;
959pub const IP_RECVORIGDSTADDR: ::c_int = IP_ORIGDSTADDR;
532ac7d7 960
0731742a 961pub const IP_RECVTOS: ::c_int = 68;
abe05a73 962
532ac7d7
XL
963pub const IPV6_ORIGDSTADDR: ::c_int = 72;
964pub const IPV6_RECVORIGDSTADDR: ::c_int = IPV6_ORIGDSTADDR;
965
8bb4bdeb
XL
966pub const PF_SLOW: ::c_int = AF_SLOW;
967pub const PF_SCLUSTER: ::c_int = AF_SCLUSTER;
968pub const PF_ARP: ::c_int = AF_ARP;
969pub const PF_BLUETOOTH: ::c_int = AF_BLUETOOTH;
970pub const PF_IEEE80211: ::c_int = AF_IEEE80211;
971pub const PF_INET_SDP: ::c_int = AF_INET_SDP;
972pub const PF_INET6_SDP: ::c_int = AF_INET6_SDP;
8bb4bdeb
XL
973
974pub const NET_RT_DUMP: ::c_int = 1;
975pub const NET_RT_FLAGS: ::c_int = 2;
976pub const NET_RT_IFLIST: ::c_int = 3;
977pub const NET_RT_IFMALIST: ::c_int = 4;
978pub const NET_RT_IFLISTL: ::c_int = 5;
979
7cac9316
XL
980// System V IPC
981pub const IPC_PRIVATE: ::key_t = 0;
982pub const IPC_CREAT: ::c_int = 0o1000;
983pub const IPC_EXCL: ::c_int = 0o2000;
984pub const IPC_NOWAIT: ::c_int = 0o4000;
985pub const IPC_RMID: ::c_int = 0;
986pub const IPC_SET: ::c_int = 1;
987pub const IPC_STAT: ::c_int = 2;
988pub const IPC_INFO: ::c_int = 3;
e74abb32
XL
989pub const IPC_R: ::c_int = 0o400;
990pub const IPC_W: ::c_int = 0o200;
991pub const IPC_M: ::c_int = 0o10000;
7cac9316
XL
992pub const MSG_NOERROR: ::c_int = 0o10000;
993pub const SHM_RDONLY: ::c_int = 0o10000;
994pub const SHM_RND: ::c_int = 0o20000;
995pub const SHM_R: ::c_int = 0o400;
996pub const SHM_W: ::c_int = 0o200;
997pub const SHM_LOCK: ::c_int = 11;
998pub const SHM_UNLOCK: ::c_int = 12;
999pub const SHM_STAT: ::c_int = 13;
1000pub const SHM_INFO: ::c_int = 14;
ff7c6d11 1001pub const SHM_ANON: *mut ::c_char = 1 as *mut ::c_char;
7cac9316 1002
8bb4bdeb
XL
1003// The *_MAXID constants never should've been used outside of the
1004// FreeBSD base system. And with the exception of CTL_P1003_1B_MAXID,
1005// they were all removed in svn r262489. They remain here for backwards
1006// compatibility only, and are scheduled to be removed in libc 1.0.0.
1007#[doc(hidden)]
e74abb32 1008#[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")]
8bb4bdeb
XL
1009pub const CTL_MAXID: ::c_int = 10;
1010#[doc(hidden)]
e74abb32 1011#[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")]
8bb4bdeb
XL
1012pub const KERN_MAXID: ::c_int = 38;
1013#[doc(hidden)]
e74abb32 1014#[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")]
8bb4bdeb
XL
1015pub const HW_MAXID: ::c_int = 13;
1016#[doc(hidden)]
e74abb32 1017#[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")]
8bb4bdeb
XL
1018pub const USER_MAXID: ::c_int = 21;
1019#[doc(hidden)]
476ff2be
SL
1020pub const CTL_P1003_1B_MAXID: ::c_int = 26;
1021
8bb4bdeb
XL
1022pub const MSG_NOTIFICATION: ::c_int = 0x00002000;
1023pub const MSG_NBIO: ::c_int = 0x00004000;
1024pub const MSG_COMPAT: ::c_int = 0x00008000;
1025pub const MSG_CMSG_CLOEXEC: ::c_int = 0x00040000;
476ff2be
SL
1026pub const MSG_NOSIGNAL: ::c_int = 0x20000;
1027
e74abb32 1028// utmpx entry types
8bb4bdeb
XL
1029pub const EMPTY: ::c_short = 0;
1030pub const BOOT_TIME: ::c_short = 1;
1031pub const OLD_TIME: ::c_short = 2;
1032pub const NEW_TIME: ::c_short = 3;
1033pub const USER_PROCESS: ::c_short = 4;
1034pub const INIT_PROCESS: ::c_short = 5;
1035pub const LOGIN_PROCESS: ::c_short = 6;
1036pub const DEAD_PROCESS: ::c_short = 7;
1037pub const SHUTDOWN_TIME: ::c_short = 8;
e74abb32
XL
1038// utmp database types
1039pub const UTXDB_ACTIVE: ::c_int = 0;
1040pub const UTXDB_LASTLOGIN: ::c_int = 1;
1041pub const UTXDB_LOG: ::c_int = 2;
8bb4bdeb 1042
ba9703b0
XL
1043pub const LC_COLLATE_MASK: ::c_int = 1 << 0;
1044pub const LC_CTYPE_MASK: ::c_int = 1 << 1;
1045pub const LC_MONETARY_MASK: ::c_int = 1 << 2;
1046pub const LC_NUMERIC_MASK: ::c_int = 1 << 3;
1047pub const LC_TIME_MASK: ::c_int = 1 << 4;
1048pub const LC_MESSAGES_MASK: ::c_int = 1 << 5;
8bb4bdeb 1049pub const LC_ALL_MASK: ::c_int = LC_COLLATE_MASK
e74abb32
XL
1050 | LC_CTYPE_MASK
1051 | LC_MESSAGES_MASK
1052 | LC_MONETARY_MASK
1053 | LC_NUMERIC_MASK
1054 | LC_TIME_MASK;
8bb4bdeb
XL
1055
1056pub const WSTOPPED: ::c_int = 2; // same as WUNTRACED
1057pub const WCONTINUED: ::c_int = 4;
1058pub const WNOWAIT: ::c_int = 8;
1059pub const WEXITED: ::c_int = 16;
1060pub const WTRAPPED: ::c_int = 32;
1061
1062// FreeBSD defines a great many more of these, we only expose the
1063// standardized ones.
1064pub const P_PID: idtype_t = 0;
1065pub const P_PGID: idtype_t = 2;
1066pub const P_ALL: idtype_t = 7;
1067
e74abb32
XL
1068pub const UTIME_OMIT: c_long = -2;
1069pub const UTIME_NOW: c_long = -1;
1070
7cac9316
XL
1071pub const B460800: ::speed_t = 460800;
1072pub const B921600: ::speed_t = 921600;
1073
041b39d2
XL
1074pub const AT_FDCWD: ::c_int = -100;
1075pub const AT_EACCESS: ::c_int = 0x100;
1076pub const AT_SYMLINK_NOFOLLOW: ::c_int = 0x200;
1077pub const AT_SYMLINK_FOLLOW: ::c_int = 0x400;
1078pub const AT_REMOVEDIR: ::c_int = 0x800;
1079
1080pub const TABDLY: ::tcflag_t = 0x00000004;
1081pub const TAB0: ::tcflag_t = 0x00000000;
1082pub const TAB3: ::tcflag_t = 0x00000004;
1083
1084pub const _PC_ACL_NFS4: ::c_int = 64;
1085
1086pub const _SC_CPUSET_SIZE: ::c_int = 122;
1087
abe05a73
XL
1088pub const XU_NGROUPS: ::c_int = 16;
1089pub const XUCRED_VERSION: ::c_uint = 0;
1090
2c00a5a8
XL
1091// Flags which can be passed to pdfork(2)
1092pub const PD_DAEMON: ::c_int = 0x00000001;
1093pub const PD_CLOEXEC: ::c_int = 0x00000002;
1094pub const PD_ALLOWED_AT_FORK: ::c_int = PD_DAEMON | PD_CLOEXEC;
1095
1096// Values for struct rtprio (type_ field)
1097pub const RTP_PRIO_REALTIME: ::c_ushort = 2;
1098pub const RTP_PRIO_NORMAL: ::c_ushort = 3;
1099pub const RTP_PRIO_IDLE: ::c_ushort = 4;
1100
1101pub const POSIX_SPAWN_RESETIDS: ::c_int = 0x01;
1102pub const POSIX_SPAWN_SETPGROUP: ::c_int = 0x02;
1103pub const POSIX_SPAWN_SETSCHEDPARAM: ::c_int = 0x04;
1104pub const POSIX_SPAWN_SETSCHEDULER: ::c_int = 0x08;
1105pub const POSIX_SPAWN_SETSIGDEF: ::c_int = 0x10;
1106pub const POSIX_SPAWN_SETSIGMASK: ::c_int = 0x20;
1107
69743fb6 1108// Flags for chflags(2)
e74abb32
XL
1109pub const UF_SYSTEM: ::c_ulong = 0x00000080;
1110pub const UF_SPARSE: ::c_ulong = 0x00000100;
1111pub const UF_OFFLINE: ::c_ulong = 0x00000200;
1112pub const UF_REPARSE: ::c_ulong = 0x00000400;
1113pub const UF_ARCHIVE: ::c_ulong = 0x00000800;
1114pub const UF_READONLY: ::c_ulong = 0x00001000;
1115pub const UF_HIDDEN: ::c_ulong = 0x00008000;
1116pub const SF_SNAPSHOT: ::c_ulong = 0x00200000;
69743fb6 1117
532ac7d7
XL
1118fn _ALIGN(p: usize) -> usize {
1119 (p + _ALIGNBYTES) & !_ALIGNBYTES
1120}
1121
1122f! {
1123 pub fn CMSG_DATA(cmsg: *const ::cmsghdr) -> *mut ::c_uchar {
1124 (cmsg as *mut ::c_uchar)
1125 .offset(_ALIGN(::mem::size_of::<::cmsghdr>()) as isize)
1126 }
1127
1128 pub fn CMSG_LEN(length: ::c_uint) -> ::c_uint {
1129 _ALIGN(::mem::size_of::<::cmsghdr>()) as ::c_uint + length
1130 }
1131
1132 pub fn CMSG_NXTHDR(mhdr: *const ::msghdr, cmsg: *const ::cmsghdr)
1133 -> *mut ::cmsghdr
1134 {
1135 if cmsg.is_null() {
1136 return ::CMSG_FIRSTHDR(mhdr);
1137 };
1138 let next = cmsg as usize + _ALIGN((*cmsg).cmsg_len as usize)
1139 + _ALIGN(::mem::size_of::<::cmsghdr>());
1140 let max = (*mhdr).msg_control as usize
1141 + (*mhdr).msg_controllen as usize;
1142 if next > max {
1143 0 as *mut ::cmsghdr
1144 } else {
1145 (cmsg as usize + _ALIGN((*cmsg).cmsg_len as usize))
1146 as *mut ::cmsghdr
1147 }
1148 }
1149
1150 pub fn CMSG_SPACE(length: ::c_uint) -> ::c_uint {
1151 (_ALIGN(::mem::size_of::<::cmsghdr>()) + _ALIGN(length as usize))
1152 as ::c_uint
1153 }
1154
f035d41b
XL
1155 pub fn SOCKCREDSIZE(ngrps: usize) -> usize {
1156 let ngrps = if ngrps > 0 {
1157 ngrps - 1
1158 } else {
1159 0
1160 };
1161 ::mem::size_of::<sockcred>() + ::mem::size_of::<::gid_t>() * ngrps
1162 }
1163
532ac7d7
XL
1164 pub fn uname(buf: *mut ::utsname) -> ::c_int {
1165 __xuname(256, buf as *mut ::c_void)
1166 }
1167}
1168
e74abb32 1169extern "C" {
476ff2be
SL
1170 pub fn __error() -> *mut ::c_int;
1171
ea8adc8c
XL
1172 pub fn clock_getres(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
1173 pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
e74abb32
XL
1174 pub fn clock_settime(
1175 clk_id: ::clockid_t,
1176 tp: *const ::timespec,
1177 ) -> ::c_int;
1178
1179 pub fn extattr_delete_fd(
1180 fd: ::c_int,
1181 attrnamespace: ::c_int,
1182 attrname: *const ::c_char,
1183 ) -> ::c_int;
1184 pub fn extattr_delete_file(
1185 path: *const ::c_char,
1186 attrnamespace: ::c_int,
1187 attrname: *const ::c_char,
1188 ) -> ::c_int;
1189 pub fn extattr_delete_link(
1190 path: *const ::c_char,
1191 attrnamespace: ::c_int,
1192 attrname: *const ::c_char,
1193 ) -> ::c_int;
1194 pub fn extattr_get_fd(
1195 fd: ::c_int,
1196 attrnamespace: ::c_int,
1197 attrname: *const ::c_char,
1198 data: *mut ::c_void,
1199 nbytes: ::size_t,
1200 ) -> ::ssize_t;
1201 pub fn extattr_get_file(
1202 path: *const ::c_char,
1203 attrnamespace: ::c_int,
1204 attrname: *const ::c_char,
1205 data: *mut ::c_void,
1206 nbytes: ::size_t,
1207 ) -> ::ssize_t;
1208 pub fn extattr_get_link(
1209 path: *const ::c_char,
1210 attrnamespace: ::c_int,
1211 attrname: *const ::c_char,
1212 data: *mut ::c_void,
1213 nbytes: ::size_t,
1214 ) -> ::ssize_t;
1215 pub fn extattr_list_fd(
1216 fd: ::c_int,
1217 attrnamespace: ::c_int,
1218 data: *mut ::c_void,
1219 nbytes: ::size_t,
1220 ) -> ::ssize_t;
1221 pub fn extattr_list_file(
1222 path: *const ::c_char,
1223 attrnamespace: ::c_int,
1224 data: *mut ::c_void,
1225 nbytes: ::size_t,
1226 ) -> ::ssize_t;
1227 pub fn extattr_list_link(
1228 path: *const ::c_char,
1229 attrnamespace: ::c_int,
1230 data: *mut ::c_void,
1231 nbytes: ::size_t,
1232 ) -> ::ssize_t;
1233 pub fn extattr_set_fd(
1234 fd: ::c_int,
1235 attrnamespace: ::c_int,
1236 attrname: *const ::c_char,
1237 data: *const ::c_void,
1238 nbytes: ::size_t,
1239 ) -> ::ssize_t;
1240 pub fn extattr_set_file(
1241 path: *const ::c_char,
1242 attrnamespace: ::c_int,
1243 attrname: *const ::c_char,
1244 data: *const ::c_void,
1245 nbytes: ::size_t,
1246 ) -> ::ssize_t;
1247 pub fn extattr_set_link(
1248 path: *const ::c_char,
1249 attrnamespace: ::c_int,
1250 attrname: *const ::c_char,
1251 data: *const ::c_void,
1252 nbytes: ::size_t,
1253 ) -> ::ssize_t;
69743fb6 1254
8bb4bdeb
XL
1255 pub fn jail(jail: *mut ::jail) -> ::c_int;
1256 pub fn jail_attach(jid: ::c_int) -> ::c_int;
1257 pub fn jail_remove(jid: ::c_int) -> ::c_int;
e74abb32
XL
1258 pub fn jail_get(
1259 iov: *mut ::iovec,
1260 niov: ::c_uint,
1261 flags: ::c_int,
1262 ) -> ::c_int;
1263 pub fn jail_set(
1264 iov: *mut ::iovec,
1265 niov: ::c_uint,
1266 flags: ::c_int,
1267 ) -> ::c_int;
476ff2be 1268
0531ce1d 1269 pub fn fdatasync(fd: ::c_int) -> ::c_int;
e74abb32
XL
1270 pub fn posix_fallocate(
1271 fd: ::c_int,
1272 offset: ::off_t,
1273 len: ::off_t,
1274 ) -> ::c_int;
1275 pub fn posix_fadvise(
1276 fd: ::c_int,
1277 offset: ::off_t,
1278 len: ::off_t,
1279 advise: ::c_int,
1280 ) -> ::c_int;
476ff2be 1281 pub fn mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int;
e74abb32
XL
1282 pub fn mkostemps(
1283 template: *mut ::c_char,
1284 suffixlen: ::c_int,
1285 flags: ::c_int,
1286 ) -> ::c_int;
8bb4bdeb
XL
1287
1288 pub fn getutxuser(user: *const ::c_char) -> *mut utmpx;
1289 pub fn setutxdb(_type: ::c_int, file: *const ::c_char) -> ::c_int;
1290
e74abb32
XL
1291 pub fn aio_waitcomplete(
1292 iocbp: *mut *mut aiocb,
1293 timeout: *mut ::timespec,
1294 ) -> ::ssize_t;
532ac7d7 1295 pub fn mq_getfd_np(mqd: ::mqd_t) -> ::c_int;
8bb4bdeb 1296
e74abb32
XL
1297 pub fn waitid(
1298 idtype: idtype_t,
1299 id: ::id_t,
1300 infop: *mut ::siginfo_t,
1301 options: ::c_int,
1302 ) -> ::c_int;
7cac9316
XL
1303
1304 pub fn ftok(pathname: *const ::c_char, proj_id: ::c_int) -> ::key_t;
1305 pub fn shmget(key: ::key_t, size: ::size_t, shmflg: ::c_int) -> ::c_int;
e74abb32
XL
1306 pub fn shmat(
1307 shmid: ::c_int,
1308 shmaddr: *const ::c_void,
1309 shmflg: ::c_int,
1310 ) -> *mut ::c_void;
7cac9316 1311 pub fn shmdt(shmaddr: *const ::c_void) -> ::c_int;
e74abb32
XL
1312 pub fn shmctl(
1313 shmid: ::c_int,
1314 cmd: ::c_int,
1315 buf: *mut ::shmid_ds,
1316 ) -> ::c_int;
1317 pub fn msgctl(
1318 msqid: ::c_int,
1319 cmd: ::c_int,
1320 buf: *mut ::msqid_ds,
1321 ) -> ::c_int;
7cac9316 1322 pub fn msgget(key: ::key_t, msgflg: ::c_int) -> ::c_int;
e74abb32
XL
1323 pub fn msgsnd(
1324 msqid: ::c_int,
1325 msgp: *const ::c_void,
1326 msgsz: ::size_t,
1327 msgflg: ::c_int,
1328 ) -> ::c_int;
041b39d2 1329 pub fn cfmakesane(termios: *mut ::termios);
e74abb32
XL
1330 pub fn fexecve(
1331 fd: ::c_int,
1332 argv: *const *const ::c_char,
1333 envp: *const *const ::c_char,
1334 ) -> ::c_int;
2c00a5a8
XL
1335
1336 pub fn pdfork(fdp: *mut ::c_int, flags: ::c_int) -> ::pid_t;
1337 pub fn pdgetpid(fd: ::c_int, pidp: *mut ::pid_t) -> ::c_int;
1338 pub fn pdkill(fd: ::c_int, signum: ::c_int) -> ::c_int;
1339
e74abb32
XL
1340 pub fn rtprio_thread(
1341 function: ::c_int,
1342 lwpid: ::lwpid_t,
1343 rtp: *mut super::rtprio,
1344 ) -> ::c_int;
1345
1346 pub fn posix_spawn(
1347 pid: *mut ::pid_t,
1348 path: *const ::c_char,
1349 file_actions: *const ::posix_spawn_file_actions_t,
1350 attrp: *const ::posix_spawnattr_t,
1351 argv: *const *mut ::c_char,
1352 envp: *const *mut ::c_char,
1353 ) -> ::c_int;
1354 pub fn posix_spawnp(
1355 pid: *mut ::pid_t,
1356 file: *const ::c_char,
1357 file_actions: *const ::posix_spawn_file_actions_t,
1358 attrp: *const ::posix_spawnattr_t,
1359 argv: *const *mut ::c_char,
1360 envp: *const *mut ::c_char,
1361 ) -> ::c_int;
2c00a5a8
XL
1362 pub fn posix_spawnattr_init(attr: *mut posix_spawnattr_t) -> ::c_int;
1363 pub fn posix_spawnattr_destroy(attr: *mut posix_spawnattr_t) -> ::c_int;
e74abb32
XL
1364 pub fn posix_spawnattr_getsigdefault(
1365 attr: *const posix_spawnattr_t,
1366 default: *mut ::sigset_t,
1367 ) -> ::c_int;
1368 pub fn posix_spawnattr_setsigdefault(
1369 attr: *mut posix_spawnattr_t,
1370 default: *const ::sigset_t,
1371 ) -> ::c_int;
1372 pub fn posix_spawnattr_getsigmask(
1373 attr: *const posix_spawnattr_t,
1374 default: *mut ::sigset_t,
1375 ) -> ::c_int;
1376 pub fn posix_spawnattr_setsigmask(
1377 attr: *mut posix_spawnattr_t,
1378 default: *const ::sigset_t,
1379 ) -> ::c_int;
1380 pub fn posix_spawnattr_getflags(
1381 attr: *const posix_spawnattr_t,
1382 flags: *mut ::c_short,
1383 ) -> ::c_int;
1384 pub fn posix_spawnattr_setflags(
1385 attr: *mut posix_spawnattr_t,
1386 flags: ::c_short,
1387 ) -> ::c_int;
1388 pub fn posix_spawnattr_getpgroup(
1389 attr: *const posix_spawnattr_t,
1390 flags: *mut ::pid_t,
1391 ) -> ::c_int;
1392 pub fn posix_spawnattr_setpgroup(
1393 attr: *mut posix_spawnattr_t,
1394 flags: ::pid_t,
1395 ) -> ::c_int;
1396 pub fn posix_spawnattr_getschedpolicy(
1397 attr: *const posix_spawnattr_t,
1398 flags: *mut ::c_int,
1399 ) -> ::c_int;
1400 pub fn posix_spawnattr_setschedpolicy(
1401 attr: *mut posix_spawnattr_t,
1402 flags: ::c_int,
1403 ) -> ::c_int;
2c00a5a8
XL
1404 pub fn posix_spawnattr_getschedparam(
1405 attr: *const posix_spawnattr_t,
1406 param: *mut ::sched_param,
1407 ) -> ::c_int;
1408 pub fn posix_spawnattr_setschedparam(
1409 attr: *mut posix_spawnattr_t,
1410 param: *const ::sched_param,
1411 ) -> ::c_int;
1412
1413 pub fn posix_spawn_file_actions_init(
1414 actions: *mut posix_spawn_file_actions_t,
1415 ) -> ::c_int;
1416 pub fn posix_spawn_file_actions_destroy(
1417 actions: *mut posix_spawn_file_actions_t,
1418 ) -> ::c_int;
1419 pub fn posix_spawn_file_actions_addopen(
1420 actions: *mut posix_spawn_file_actions_t,
1421 fd: ::c_int,
1422 path: *const ::c_char,
1423 oflag: ::c_int,
1424 mode: ::mode_t,
1425 ) -> ::c_int;
1426 pub fn posix_spawn_file_actions_addclose(
1427 actions: *mut posix_spawn_file_actions_t,
1428 fd: ::c_int,
1429 ) -> ::c_int;
1430 pub fn posix_spawn_file_actions_adddup2(
1431 actions: *mut posix_spawn_file_actions_t,
1432 fd: ::c_int,
1433 newfd: ::c_int,
1434 ) -> ::c_int;
b7449926 1435
e74abb32
XL
1436 #[cfg_attr(
1437 all(target_os = "freebsd", freebsd11),
1438 link_name = "statfs@FBSD_1.0"
1439 )]
b7449926 1440 pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int;
e74abb32
XL
1441 #[cfg_attr(
1442 all(target_os = "freebsd", freebsd11),
1443 link_name = "fstatfs@FBSD_1.0"
1444 )]
b7449926 1445 pub fn fstatfs(fd: ::c_int, buf: *mut statfs) -> ::c_int;
69743fb6
XL
1446
1447 pub fn dup3(src: ::c_int, dst: ::c_int, flags: ::c_int) -> ::c_int;
532ac7d7
XL
1448 pub fn __xuname(nmln: ::c_int, buf: *mut ::c_void) -> ::c_int;
1449
e74abb32
XL
1450 pub fn sendmmsg(
1451 sockfd: ::c_int,
1452 msgvec: *mut ::mmsghdr,
1453 vlen: ::size_t,
1454 flags: ::c_int,
1455 ) -> ::ssize_t;
1456 pub fn recvmmsg(
1457 sockfd: ::c_int,
1458 msgvec: *mut ::mmsghdr,
1459 vlen: ::size_t,
1460 flags: ::c_int,
1461 timeout: *const ::timespec,
1462 ) -> ::ssize_t;
ba9703b0
XL
1463 pub fn memmem(
1464 haystack: *const ::c_void,
1465 haystacklen: ::size_t,
1466 needle: *const ::c_void,
1467 needlelen: ::size_t,
1468 ) -> *mut ::c_void;
69743fb6
XL
1469}
1470
1471#[link(name = "util")]
e74abb32
XL
1472extern "C" {
1473 pub fn extattr_namespace_to_string(
1474 attrnamespace: ::c_int,
1475 string: *mut *mut ::c_char,
1476 ) -> ::c_int;
1477 pub fn extattr_string_to_namespace(
1478 string: *const ::c_char,
1479 attrnamespace: *mut ::c_int,
1480 ) -> ::c_int;
476ff2be
SL
1481}
1482
416331ca
XL
1483cfg_if! {
1484 if #[cfg(freebsd12)] {
1485 mod freebsd12;
1486 pub use self::freebsd12::*;
e1599b0c
XL
1487 } else if #[cfg(freebsd13)] {
1488 mod freebsd12;
1489 pub use self::freebsd12::*;
e74abb32 1490 } else if #[cfg(any(freebsd10, freebsd11))] {
416331ca
XL
1491 mod freebsd11;
1492 pub use self::freebsd11::*;
e1599b0c
XL
1493 } else {
1494 // Unknown freebsd version
416331ca
XL
1495 }
1496}
1497
476ff2be
SL
1498cfg_if! {
1499 if #[cfg(target_arch = "x86")] {
1500 mod x86;
1501 pub use self::x86::*;
1502 } else if #[cfg(target_arch = "x86_64")] {
1503 mod x86_64;
1504 pub use self::x86_64::*;
8bb4bdeb
XL
1505 } else if #[cfg(target_arch = "aarch64")] {
1506 mod aarch64;
1507 pub use self::aarch64::*;
532ac7d7
XL
1508 } else if #[cfg(target_arch = "arm")] {
1509 mod arm;
1510 pub use self::arm::*;
1511 } else if #[cfg(target_arch = "powerpc64")] {
1512 mod powerpc64;
1513 pub use self::powerpc64::*;
476ff2be
SL
1514 } else {
1515 // Unknown target_arch
1516 }
1517}