]> git.proxmox.com Git - cargo.git/blob - vendor/libc/src/unix/bsd/netbsdlike/mod.rs
New upstream version 0.33.0
[cargo.git] / vendor / libc / src / unix / bsd / netbsdlike / mod.rs
1 use dox::mem;
2
3 pub type time_t = i64;
4 pub type mode_t = u32;
5 pub type nlink_t = ::uint32_t;
6 pub type ino_t = ::uint64_t;
7 pub type pthread_key_t = ::c_int;
8 pub type rlim_t = u64;
9 pub type speed_t = ::c_uint;
10 pub type tcflag_t = ::c_uint;
11 pub type nl_item = c_long;
12 pub type clockid_t = ::c_int;
13 pub type id_t = ::uint32_t;
14 pub type sem_t = *mut sem;
15
16 pub enum timezone {}
17 pub enum sem {}
18
19 s! {
20 pub struct sigaction {
21 pub sa_sigaction: ::sighandler_t,
22 pub sa_mask: ::sigset_t,
23 pub sa_flags: ::c_int,
24 }
25
26 pub struct stack_t {
27 pub ss_sp: *mut ::c_void,
28 pub ss_size: ::size_t,
29 pub ss_flags: ::c_int,
30 }
31
32 pub struct sockaddr_in {
33 pub sin_len: u8,
34 pub sin_family: ::sa_family_t,
35 pub sin_port: ::in_port_t,
36 pub sin_addr: ::in_addr,
37 pub sin_zero: [::int8_t; 8],
38 }
39
40 pub struct in6_pktinfo {
41 pub ipi6_addr: ::in6_addr,
42 pub ipi6_ifindex: ::c_uint,
43 }
44
45 pub struct termios {
46 pub c_iflag: ::tcflag_t,
47 pub c_oflag: ::tcflag_t,
48 pub c_cflag: ::tcflag_t,
49 pub c_lflag: ::tcflag_t,
50 pub c_cc: [::cc_t; ::NCCS],
51 pub c_ispeed: ::c_int,
52 pub c_ospeed: ::c_int,
53 }
54
55 pub struct flock {
56 pub l_start: ::off_t,
57 pub l_len: ::off_t,
58 pub l_pid: ::pid_t,
59 pub l_type: ::c_short,
60 pub l_whence: ::c_short,
61 }
62 }
63
64 pub const D_T_FMT: ::nl_item = 0;
65 pub const D_FMT: ::nl_item = 1;
66 pub const T_FMT: ::nl_item = 2;
67 pub const T_FMT_AMPM: ::nl_item = 3;
68 pub const AM_STR: ::nl_item = 4;
69 pub const PM_STR: ::nl_item = 5;
70
71 pub const DAY_1: ::nl_item = 6;
72 pub const DAY_2: ::nl_item = 7;
73 pub const DAY_3: ::nl_item = 8;
74 pub const DAY_4: ::nl_item = 9;
75 pub const DAY_5: ::nl_item = 10;
76 pub const DAY_6: ::nl_item = 11;
77 pub const DAY_7: ::nl_item = 12;
78
79 pub const ABDAY_1: ::nl_item = 13;
80 pub const ABDAY_2: ::nl_item = 14;
81 pub const ABDAY_3: ::nl_item = 15;
82 pub const ABDAY_4: ::nl_item = 16;
83 pub const ABDAY_5: ::nl_item = 17;
84 pub const ABDAY_6: ::nl_item = 18;
85 pub const ABDAY_7: ::nl_item = 19;
86
87 pub const MON_1: ::nl_item = 20;
88 pub const MON_2: ::nl_item = 21;
89 pub const MON_3: ::nl_item = 22;
90 pub const MON_4: ::nl_item = 23;
91 pub const MON_5: ::nl_item = 24;
92 pub const MON_6: ::nl_item = 25;
93 pub const MON_7: ::nl_item = 26;
94 pub const MON_8: ::nl_item = 27;
95 pub const MON_9: ::nl_item = 28;
96 pub const MON_10: ::nl_item = 29;
97 pub const MON_11: ::nl_item = 30;
98 pub const MON_12: ::nl_item = 31;
99
100 pub const ABMON_1: ::nl_item = 32;
101 pub const ABMON_2: ::nl_item = 33;
102 pub const ABMON_3: ::nl_item = 34;
103 pub const ABMON_4: ::nl_item = 35;
104 pub const ABMON_5: ::nl_item = 36;
105 pub const ABMON_6: ::nl_item = 37;
106 pub const ABMON_7: ::nl_item = 38;
107 pub const ABMON_8: ::nl_item = 39;
108 pub const ABMON_9: ::nl_item = 40;
109 pub const ABMON_10: ::nl_item = 41;
110 pub const ABMON_11: ::nl_item = 42;
111 pub const ABMON_12: ::nl_item = 43;
112
113 pub const RADIXCHAR: ::nl_item = 44;
114 pub const THOUSEP: ::nl_item = 45;
115 pub const YESSTR: ::nl_item = 46;
116 pub const YESEXPR: ::nl_item = 47;
117 pub const NOSTR: ::nl_item = 48;
118 pub const NOEXPR: ::nl_item = 49;
119 pub const CRNCYSTR: ::nl_item = 50;
120
121 pub const CODESET: ::nl_item = 51;
122
123 pub const EXIT_FAILURE : ::c_int = 1;
124 pub const EXIT_SUCCESS : ::c_int = 0;
125 pub const RAND_MAX : ::c_int = 2147483647;
126 pub const EOF : ::c_int = -1;
127 pub const SEEK_SET : ::c_int = 0;
128 pub const SEEK_CUR : ::c_int = 1;
129 pub const SEEK_END : ::c_int = 2;
130 pub const _IOFBF : ::c_int = 0;
131 pub const _IONBF : ::c_int = 2;
132 pub const _IOLBF : ::c_int = 1;
133 pub const BUFSIZ : ::c_uint = 1024;
134 pub const FOPEN_MAX : ::c_uint = 20;
135 pub const FILENAME_MAX : ::c_uint = 1024;
136 pub const L_tmpnam : ::c_uint = 1024;
137 pub const O_NOCTTY : ::c_int = 32768;
138 pub const S_IFIFO : mode_t = 4096;
139 pub const S_IFCHR : mode_t = 8192;
140 pub const S_IFBLK : mode_t = 24576;
141 pub const S_IFDIR : mode_t = 16384;
142 pub const S_IFREG : mode_t = 32768;
143 pub const S_IFLNK : mode_t = 40960;
144 pub const S_IFSOCK : mode_t = 49152;
145 pub const S_IFMT : mode_t = 61440;
146 pub const S_IEXEC : mode_t = 64;
147 pub const S_IWRITE : mode_t = 128;
148 pub const S_IREAD : mode_t = 256;
149 pub const S_IRWXU : mode_t = 448;
150 pub const S_IXUSR : mode_t = 64;
151 pub const S_IWUSR : mode_t = 128;
152 pub const S_IRUSR : mode_t = 256;
153 pub const S_IRWXG : mode_t = 56;
154 pub const S_IXGRP : mode_t = 8;
155 pub const S_IWGRP : mode_t = 16;
156 pub const S_IRGRP : mode_t = 32;
157 pub const S_IRWXO : mode_t = 7;
158 pub const S_IXOTH : mode_t = 1;
159 pub const S_IWOTH : mode_t = 2;
160 pub const S_IROTH : mode_t = 4;
161 pub const F_OK : ::c_int = 0;
162 pub const R_OK : ::c_int = 4;
163 pub const W_OK : ::c_int = 2;
164 pub const X_OK : ::c_int = 1;
165 pub const STDIN_FILENO : ::c_int = 0;
166 pub const STDOUT_FILENO : ::c_int = 1;
167 pub const STDERR_FILENO : ::c_int = 2;
168 pub const F_LOCK : ::c_int = 1;
169 pub const F_TEST : ::c_int = 3;
170 pub const F_TLOCK : ::c_int = 2;
171 pub const F_ULOCK : ::c_int = 0;
172 pub const F_GETLK: ::c_int = 7;
173 pub const F_SETLK: ::c_int = 8;
174 pub const F_SETLKW: ::c_int = 9;
175 pub const SIGHUP : ::c_int = 1;
176 pub const SIGINT : ::c_int = 2;
177 pub const SIGQUIT : ::c_int = 3;
178 pub const SIGILL : ::c_int = 4;
179 pub const SIGABRT : ::c_int = 6;
180 pub const SIGEMT: ::c_int = 7;
181 pub const SIGFPE : ::c_int = 8;
182 pub const SIGKILL : ::c_int = 9;
183 pub const SIGSEGV : ::c_int = 11;
184 pub const SIGPIPE : ::c_int = 13;
185 pub const SIGALRM : ::c_int = 14;
186 pub const SIGTERM : ::c_int = 15;
187
188 pub const PROT_NONE : ::c_int = 0;
189 pub const PROT_READ : ::c_int = 1;
190 pub const PROT_WRITE : ::c_int = 2;
191 pub const PROT_EXEC : ::c_int = 4;
192
193 pub const MAP_FILE : ::c_int = 0x0000;
194 pub const MAP_SHARED : ::c_int = 0x0001;
195 pub const MAP_PRIVATE : ::c_int = 0x0002;
196 pub const MAP_FIXED : ::c_int = 0x0010;
197 pub const MAP_ANON : ::c_int = 0x1000;
198
199 pub const MAP_FAILED : *mut ::c_void = !0 as *mut ::c_void;
200
201 pub const MCL_CURRENT : ::c_int = 0x0001;
202 pub const MCL_FUTURE : ::c_int = 0x0002;
203
204 pub const MS_ASYNC : ::c_int = 0x0001;
205
206 pub const EPERM : ::c_int = 1;
207 pub const ENOENT : ::c_int = 2;
208 pub const ESRCH : ::c_int = 3;
209 pub const EINTR : ::c_int = 4;
210 pub const EIO : ::c_int = 5;
211 pub const ENXIO : ::c_int = 6;
212 pub const E2BIG : ::c_int = 7;
213 pub const ENOEXEC : ::c_int = 8;
214 pub const EBADF : ::c_int = 9;
215 pub const ECHILD : ::c_int = 10;
216 pub const EDEADLK : ::c_int = 11;
217 pub const ENOMEM : ::c_int = 12;
218 pub const EACCES : ::c_int = 13;
219 pub const EFAULT : ::c_int = 14;
220 pub const ENOTBLK : ::c_int = 15;
221 pub const EBUSY : ::c_int = 16;
222 pub const EEXIST : ::c_int = 17;
223 pub const EXDEV : ::c_int = 18;
224 pub const ENODEV : ::c_int = 19;
225 pub const ENOTDIR : ::c_int = 20;
226 pub const EISDIR : ::c_int = 21;
227 pub const EINVAL : ::c_int = 22;
228 pub const ENFILE : ::c_int = 23;
229 pub const EMFILE : ::c_int = 24;
230 pub const ENOTTY : ::c_int = 25;
231 pub const ETXTBSY : ::c_int = 26;
232 pub const EFBIG : ::c_int = 27;
233 pub const ENOSPC : ::c_int = 28;
234 pub const ESPIPE : ::c_int = 29;
235 pub const EROFS : ::c_int = 30;
236 pub const EMLINK : ::c_int = 31;
237 pub const EPIPE : ::c_int = 32;
238 pub const EDOM : ::c_int = 33;
239 pub const ERANGE : ::c_int = 34;
240 pub const EAGAIN : ::c_int = 35;
241 pub const EWOULDBLOCK : ::c_int = 35;
242 pub const EINPROGRESS : ::c_int = 36;
243 pub const EALREADY : ::c_int = 37;
244 pub const ENOTSOCK : ::c_int = 38;
245 pub const EDESTADDRREQ : ::c_int = 39;
246 pub const EMSGSIZE : ::c_int = 40;
247 pub const EPROTOTYPE : ::c_int = 41;
248 pub const ENOPROTOOPT : ::c_int = 42;
249 pub const EPROTONOSUPPORT : ::c_int = 43;
250 pub const ESOCKTNOSUPPORT : ::c_int = 44;
251 pub const EOPNOTSUPP : ::c_int = 45;
252 pub const EPFNOSUPPORT : ::c_int = 46;
253 pub const EAFNOSUPPORT : ::c_int = 47;
254 pub const EADDRINUSE : ::c_int = 48;
255 pub const EADDRNOTAVAIL : ::c_int = 49;
256 pub const ENETDOWN : ::c_int = 50;
257 pub const ENETUNREACH : ::c_int = 51;
258 pub const ENETRESET : ::c_int = 52;
259 pub const ECONNABORTED : ::c_int = 53;
260 pub const ECONNRESET : ::c_int = 54;
261 pub const ENOBUFS : ::c_int = 55;
262 pub const EISCONN : ::c_int = 56;
263 pub const ENOTCONN : ::c_int = 57;
264 pub const ESHUTDOWN : ::c_int = 58;
265 pub const ETOOMANYREFS : ::c_int = 59;
266 pub const ETIMEDOUT : ::c_int = 60;
267 pub const ECONNREFUSED : ::c_int = 61;
268 pub const ELOOP : ::c_int = 62;
269 pub const ENAMETOOLONG : ::c_int = 63;
270 pub const EHOSTDOWN : ::c_int = 64;
271 pub const EHOSTUNREACH : ::c_int = 65;
272 pub const ENOTEMPTY : ::c_int = 66;
273 pub const EPROCLIM : ::c_int = 67;
274 pub const EUSERS : ::c_int = 68;
275 pub const EDQUOT : ::c_int = 69;
276 pub const ESTALE : ::c_int = 70;
277 pub const EREMOTE : ::c_int = 71;
278 pub const EBADRPC : ::c_int = 72;
279 pub const ERPCMISMATCH : ::c_int = 73;
280 pub const EPROGUNAVAIL : ::c_int = 74;
281 pub const EPROGMISMATCH : ::c_int = 75;
282 pub const EPROCUNAVAIL : ::c_int = 76;
283 pub const ENOLCK : ::c_int = 77;
284 pub const ENOSYS : ::c_int = 78;
285 pub const EFTYPE : ::c_int = 79;
286 pub const EAUTH : ::c_int = 80;
287 pub const ENEEDAUTH : ::c_int = 81;
288
289 pub const F_DUPFD : ::c_int = 0;
290 pub const F_GETFD : ::c_int = 1;
291 pub const F_SETFD : ::c_int = 2;
292 pub const F_GETFL : ::c_int = 3;
293 pub const F_SETFL : ::c_int = 4;
294
295 pub const SIGTRAP : ::c_int = 5;
296
297 pub const GLOB_APPEND : ::c_int = 0x0001;
298 pub const GLOB_DOOFFS : ::c_int = 0x0002;
299 pub const GLOB_ERR : ::c_int = 0x0004;
300 pub const GLOB_MARK : ::c_int = 0x0008;
301 pub const GLOB_NOCHECK : ::c_int = 0x0010;
302 pub const GLOB_NOSORT : ::c_int = 0x0020;
303 pub const GLOB_NOESCAPE : ::c_int = 0x1000;
304
305 pub const GLOB_NOSPACE : ::c_int = -1;
306 pub const GLOB_ABORTED : ::c_int = -2;
307 pub const GLOB_NOMATCH : ::c_int = -3;
308 pub const GLOB_NOSYS : ::c_int = -4;
309
310 pub const POSIX_MADV_NORMAL : ::c_int = 0;
311 pub const POSIX_MADV_RANDOM : ::c_int = 1;
312 pub const POSIX_MADV_SEQUENTIAL : ::c_int = 2;
313 pub const POSIX_MADV_WILLNEED : ::c_int = 3;
314 pub const POSIX_MADV_DONTNEED : ::c_int = 4;
315
316 pub const PTHREAD_CREATE_JOINABLE : ::c_int = 0;
317 pub const PTHREAD_CREATE_DETACHED : ::c_int = 1;
318
319 pub const PT_TRACE_ME: ::c_int = 0;
320 pub const PT_READ_I: ::c_int = 1;
321 pub const PT_READ_D: ::c_int = 2;
322 pub const PT_WRITE_I: ::c_int = 4;
323 pub const PT_WRITE_D: ::c_int = 5;
324 pub const PT_CONTINUE: ::c_int = 7;
325 pub const PT_KILL: ::c_int = 8;
326 pub const PT_ATTACH: ::c_int = 9;
327 pub const PT_DETACH: ::c_int = 10;
328 pub const PT_IO: ::c_int = 11;
329
330 // http://man.openbsd.org/OpenBSD-current/man2/clock_getres.2
331 // The man page says clock_gettime(3) can accept various values as clockid_t but
332 // http://fxr.watson.org/fxr/source/kern/kern_time.c?v=OPENBSD;im=excerpts#L161
333 // the implementation rejects anything other than the below two
334 //
335 // http://netbsd.gw.com/cgi-bin/man-cgi?clock_gettime
336 // https://github.com/jsonn/src/blob/HEAD/sys/kern/subr_time.c#L222
337 // Basically the same goes for NetBSD
338 pub const CLOCK_REALTIME: ::clockid_t = 0;
339 pub const CLOCK_MONOTONIC: ::clockid_t = 3;
340
341 pub const RLIMIT_CPU: ::c_int = 0;
342 pub const RLIMIT_FSIZE: ::c_int = 1;
343 pub const RLIMIT_DATA: ::c_int = 2;
344 pub const RLIMIT_STACK: ::c_int = 3;
345 pub const RLIMIT_CORE: ::c_int = 4;
346 pub const RLIMIT_RSS: ::c_int = 5;
347 pub const RLIMIT_MEMLOCK: ::c_int = 6;
348 pub const RLIMIT_NPROC: ::c_int = 7;
349 pub const RLIMIT_NOFILE: ::c_int = 8;
350
351 pub const RLIM_INFINITY: rlim_t = 0x7fff_ffff_ffff_ffff;
352 pub const RLIM_SAVED_MAX: rlim_t = RLIM_INFINITY;
353 pub const RLIM_SAVED_CUR: rlim_t = RLIM_INFINITY;
354
355 pub const RUSAGE_SELF: ::c_int = 0;
356 pub const RUSAGE_CHILDREN: ::c_int = -1;
357
358 pub const MADV_NORMAL : ::c_int = 0;
359 pub const MADV_RANDOM : ::c_int = 1;
360 pub const MADV_SEQUENTIAL : ::c_int = 2;
361 pub const MADV_WILLNEED : ::c_int = 3;
362 pub const MADV_DONTNEED : ::c_int = 4;
363 pub const MADV_FREE : ::c_int = 6;
364
365 pub const AF_UNSPEC: ::c_int = 0;
366 pub const AF_LOCAL: ::c_int = 1;
367 pub const AF_UNIX: ::c_int = AF_LOCAL;
368 pub const AF_INET: ::c_int = 2;
369 pub const AF_IMPLINK: ::c_int = 3;
370 pub const AF_PUP: ::c_int = 4;
371 pub const AF_CHAOS: ::c_int = 5;
372 pub const AF_NS: ::c_int = 6;
373 pub const AF_ISO: ::c_int = 7;
374 pub const AF_OSI: ::c_int = AF_ISO;
375 pub const AF_DATAKIT: ::c_int = 9;
376 pub const AF_CCITT: ::c_int = 10;
377 pub const AF_SNA: ::c_int = 11;
378 pub const AF_DECnet: ::c_int = 12;
379 pub const AF_DLI: ::c_int = 13;
380 pub const AF_LAT: ::c_int = 14;
381 pub const AF_HYLINK: ::c_int = 15;
382 pub const AF_APPLETALK: ::c_int = 16;
383 pub const AF_LINK: ::c_int = 18;
384 pub const pseudo_AF_XTP: ::c_int = 19;
385 pub const AF_COIP: ::c_int = 20;
386 pub const AF_CNT: ::c_int = 21;
387 pub const pseudo_AF_RTIP: ::c_int = 22;
388 pub const AF_IPX: ::c_int = 23;
389 pub const AF_INET6: ::c_int = 24;
390 pub const pseudo_AF_PIP: ::c_int = 25;
391 pub const AF_ISDN: ::c_int = 26;
392 pub const AF_E164: ::c_int = AF_ISDN;
393 pub const AF_NATM: ::c_int = 27;
394
395 pub const PF_UNSPEC: ::c_int = AF_UNSPEC;
396 pub const PF_LOCAL: ::c_int = AF_LOCAL;
397 pub const PF_UNIX: ::c_int = PF_LOCAL;
398 pub const PF_INET: ::c_int = AF_INET;
399 pub const PF_IMPLINK: ::c_int = AF_IMPLINK;
400 pub const PF_PUP: ::c_int = AF_PUP;
401 pub const PF_CHAOS: ::c_int = AF_CHAOS;
402 pub const PF_NS: ::c_int = AF_NS;
403 pub const PF_ISO: ::c_int = AF_ISO;
404 pub const PF_OSI: ::c_int = AF_ISO;
405 pub const PF_DATAKIT: ::c_int = AF_DATAKIT;
406 pub const PF_CCITT: ::c_int = AF_CCITT;
407 pub const PF_SNA: ::c_int = AF_SNA;
408 pub const PF_DECnet: ::c_int = AF_DECnet;
409 pub const PF_DLI: ::c_int = AF_DLI;
410 pub const PF_LAT: ::c_int = AF_LAT;
411 pub const PF_HYLINK: ::c_int = AF_HYLINK;
412 pub const PF_APPLETALK: ::c_int = AF_APPLETALK;
413 pub const PF_LINK: ::c_int = AF_LINK;
414 pub const PF_XTP: ::c_int = pseudo_AF_XTP;
415 pub const PF_COIP: ::c_int = AF_COIP;
416 pub const PF_CNT: ::c_int = AF_CNT;
417 pub const PF_IPX: ::c_int = AF_IPX;
418 pub const PF_INET6: ::c_int = AF_INET6;
419 pub const PF_RTIP: ::c_int = pseudo_AF_RTIP;
420 pub const PF_PIP: ::c_int = pseudo_AF_PIP;
421 pub const PF_ISDN: ::c_int = AF_ISDN;
422 pub const PF_NATM: ::c_int = AF_NATM;
423
424 pub const SOCK_STREAM: ::c_int = 1;
425 pub const SOCK_DGRAM: ::c_int = 2;
426 pub const SOCK_RAW: ::c_int = 3;
427 pub const SOCK_RDM: ::c_int = 4;
428 pub const SOCK_SEQPACKET: ::c_int = 5;
429 pub const IP_TTL: ::c_int = 4;
430 pub const IP_HDRINCL: ::c_int = 2;
431 pub const IP_ADD_MEMBERSHIP: ::c_int = 12;
432 pub const IP_DROP_MEMBERSHIP: ::c_int = 13;
433 pub const IPV6_RECVPKTINFO: ::c_int = 36;
434 pub const IPV6_PKTINFO: ::c_int = 46;
435 pub const IPV6_RECVTCLASS: ::c_int = 57;
436 pub const IPV6_TCLASS: ::c_int = 61;
437
438 pub const SOL_SOCKET: ::c_int = 0xffff;
439 pub const SO_DEBUG: ::c_int = 0x01;
440 pub const SO_ACCEPTCONN: ::c_int = 0x0002;
441 pub const SO_REUSEADDR: ::c_int = 0x0004;
442 pub const SO_KEEPALIVE: ::c_int = 0x0008;
443 pub const SO_DONTROUTE: ::c_int = 0x0010;
444 pub const SO_BROADCAST: ::c_int = 0x0020;
445 pub const SO_USELOOPBACK: ::c_int = 0x0040;
446 pub const SO_LINGER: ::c_int = 0x0080;
447 pub const SO_OOBINLINE: ::c_int = 0x0100;
448 pub const SO_REUSEPORT: ::c_int = 0x0200;
449 pub const SO_SNDBUF: ::c_int = 0x1001;
450 pub const SO_RCVBUF: ::c_int = 0x1002;
451 pub const SO_SNDLOWAT: ::c_int = 0x1003;
452 pub const SO_RCVLOWAT: ::c_int = 0x1004;
453 pub const SO_ERROR: ::c_int = 0x1007;
454 pub const SO_TYPE: ::c_int = 0x1008;
455
456 pub const SOMAXCONN: ::c_int = 128;
457
458 pub const MSG_OOB: ::c_int = 0x1;
459 pub const MSG_PEEK: ::c_int = 0x2;
460 pub const MSG_DONTROUTE: ::c_int = 0x4;
461 pub const MSG_EOR: ::c_int = 0x8;
462 pub const MSG_TRUNC: ::c_int = 0x10;
463 pub const MSG_CTRUNC: ::c_int = 0x20;
464 pub const MSG_WAITALL: ::c_int = 0x40;
465 pub const MSG_DONTWAIT: ::c_int = 0x80;
466 pub const MSG_BCAST: ::c_int = 0x100;
467 pub const MSG_MCAST: ::c_int = 0x200;
468 pub const MSG_NOSIGNAL: ::c_int = 0x400;
469 pub const MSG_CMSG_CLOEXEC: ::c_int = 0x800;
470
471 pub const SHUT_RD: ::c_int = 0;
472 pub const SHUT_WR: ::c_int = 1;
473 pub const SHUT_RDWR: ::c_int = 2;
474
475 pub const LOCK_SH: ::c_int = 1;
476 pub const LOCK_EX: ::c_int = 2;
477 pub const LOCK_NB: ::c_int = 4;
478 pub const LOCK_UN: ::c_int = 8;
479
480 pub const IPPROTO_RAW : ::c_int = 255;
481
482 pub const _SC_ARG_MAX : ::c_int = 1;
483 pub const _SC_CHILD_MAX : ::c_int = 2;
484 pub const _SC_NGROUPS_MAX : ::c_int = 4;
485 pub const _SC_OPEN_MAX : ::c_int = 5;
486 pub const _SC_JOB_CONTROL : ::c_int = 6;
487 pub const _SC_SAVED_IDS : ::c_int = 7;
488 pub const _SC_VERSION : ::c_int = 8;
489 pub const _SC_BC_BASE_MAX : ::c_int = 9;
490 pub const _SC_BC_DIM_MAX : ::c_int = 10;
491 pub const _SC_BC_SCALE_MAX : ::c_int = 11;
492 pub const _SC_BC_STRING_MAX : ::c_int = 12;
493 pub const _SC_COLL_WEIGHTS_MAX : ::c_int = 13;
494 pub const _SC_EXPR_NEST_MAX : ::c_int = 14;
495 pub const _SC_LINE_MAX : ::c_int = 15;
496 pub const _SC_RE_DUP_MAX : ::c_int = 16;
497 pub const _SC_2_VERSION : ::c_int = 17;
498 pub const _SC_2_C_BIND : ::c_int = 18;
499 pub const _SC_2_C_DEV : ::c_int = 19;
500 pub const _SC_2_CHAR_TERM : ::c_int = 20;
501 pub const _SC_2_FORT_DEV : ::c_int = 21;
502 pub const _SC_2_FORT_RUN : ::c_int = 22;
503 pub const _SC_2_LOCALEDEF : ::c_int = 23;
504 pub const _SC_2_SW_DEV : ::c_int = 24;
505 pub const _SC_2_UPE : ::c_int = 25;
506 pub const _SC_STREAM_MAX : ::c_int = 26;
507 pub const _SC_TZNAME_MAX : ::c_int = 27;
508 pub const _SC_PAGESIZE : ::c_int = 28;
509 pub const _SC_PAGE_SIZE: ::c_int = _SC_PAGESIZE;
510 pub const _SC_FSYNC : ::c_int = 29;
511 pub const _SC_XOPEN_SHM : ::c_int = 30;
512
513 pub const Q_GETQUOTA: ::c_int = 0x300;
514 pub const Q_SETQUOTA: ::c_int = 0x400;
515
516 pub const RTLD_GLOBAL: ::c_int = 0x100;
517
518 pub const LOG_NFACILITIES: ::c_int = 24;
519
520 pub const HW_NCPU: ::c_int = 3;
521
522 pub const B0: speed_t = 0;
523 pub const B50: speed_t = 50;
524 pub const B75: speed_t = 75;
525 pub const B110: speed_t = 110;
526 pub const B134: speed_t = 134;
527 pub const B150: speed_t = 150;
528 pub const B200: speed_t = 200;
529 pub const B300: speed_t = 300;
530 pub const B600: speed_t = 600;
531 pub const B1200: speed_t = 1200;
532 pub const B1800: speed_t = 1800;
533 pub const B2400: speed_t = 2400;
534 pub const B4800: speed_t = 4800;
535 pub const B9600: speed_t = 9600;
536 pub const B19200: speed_t = 19200;
537 pub const B38400: speed_t = 38400;
538 pub const B7200: speed_t = 7200;
539 pub const B14400: speed_t = 14400;
540 pub const B28800: speed_t = 28800;
541 pub const B57600: speed_t = 57600;
542 pub const B76800: speed_t = 76800;
543 pub const B115200: speed_t = 115200;
544 pub const B230400: speed_t = 230400;
545 pub const EXTA: speed_t = 19200;
546 pub const EXTB: speed_t = 38400;
547
548 pub const SEM_FAILED: *mut sem_t = 0 as *mut sem_t;
549
550 pub const CRTSCTS: ::tcflag_t = 0x00010000;
551 pub const CRTS_IFLOW: ::tcflag_t = CRTSCTS;
552 pub const CCTS_OFLOW: ::tcflag_t = CRTSCTS;
553 pub const OCRNL: ::tcflag_t = 0x10;
554
555 pub const TIOCEXCL: ::c_ulong = 0x2000740d;
556 pub const TIOCNXCL: ::c_ulong = 0x2000740e;
557 pub const TIOCFLUSH: ::c_ulong = 0x80047410;
558 pub const TIOCGETA: ::c_ulong = 0x402c7413;
559 pub const TIOCSETA: ::c_ulong = 0x802c7414;
560 pub const TIOCSETAW: ::c_ulong = 0x802c7415;
561 pub const TIOCSETAF: ::c_ulong = 0x802c7416;
562 pub const TIOCGETD: ::c_ulong = 0x4004741a;
563 pub const TIOCSETD: ::c_ulong = 0x8004741b;
564 pub const TIOCMGET: ::c_ulong = 0x4004746a;
565 pub const TIOCMBIC: ::c_ulong = 0x8004746b;
566 pub const TIOCMBIS: ::c_ulong = 0x8004746c;
567 pub const TIOCMSET: ::c_ulong = 0x8004746d;
568 pub const TIOCSTART: ::c_ulong = 0x2000746e;
569 pub const TIOCSTOP: ::c_ulong = 0x2000746f;
570 pub const TIOCSCTTY: ::c_ulong = 0x20007461;
571 pub const TIOCGWINSZ: ::c_ulong = 0x40087468;
572 pub const TIOCSWINSZ: ::c_ulong = 0x80087467;
573 pub const TIOCM_LE: ::c_int = 0o0001;
574 pub const TIOCM_DTR: ::c_int = 0o0002;
575 pub const TIOCM_RTS: ::c_int = 0o0004;
576 pub const TIOCM_ST: ::c_int = 0o0010;
577 pub const TIOCM_SR: ::c_int = 0o0020;
578 pub const TIOCM_CTS: ::c_int = 0o0040;
579 pub const TIOCM_CAR: ::c_int = 0o0100;
580 pub const TIOCM_RNG: ::c_int = 0o0200;
581 pub const TIOCM_DSR: ::c_int = 0o0400;
582 pub const TIOCM_CD: ::c_int = TIOCM_CAR;
583 pub const TIOCM_RI: ::c_int = TIOCM_RNG;
584
585 // Flags for chflags(2)
586 pub const UF_SETTABLE: ::c_ulong = 0x0000ffff;
587 pub const UF_NODUMP: ::c_ulong = 0x00000001;
588 pub const UF_IMMUTABLE: ::c_ulong = 0x00000002;
589 pub const UF_APPEND: ::c_ulong = 0x00000004;
590 pub const UF_OPAQUE: ::c_ulong = 0x00000008;
591 pub const SF_SETTABLE: ::c_ulong = 0xffff0000;
592 pub const SF_ARCHIVED: ::c_ulong = 0x00010000;
593 pub const SF_IMMUTABLE: ::c_ulong = 0x00020000;
594 pub const SF_APPEND: ::c_ulong = 0x00040000;
595
596 pub const TIMER_ABSTIME: ::c_int = 1;
597
598 fn _ALIGN(p: usize) -> usize {
599 (p + _ALIGNBYTES) & !_ALIGNBYTES
600 }
601
602 f! {
603 pub fn CMSG_DATA(cmsg: *const ::cmsghdr) -> *mut ::c_uchar {
604 (cmsg as *mut ::c_uchar)
605 .offset(_ALIGN(mem::size_of::<::cmsghdr>()) as isize)
606 }
607
608 pub fn CMSG_LEN(length: ::c_uint) -> ::c_uint {
609 _ALIGN(mem::size_of::<::cmsghdr>()) as ::c_uint + length
610 }
611
612 pub fn CMSG_NXTHDR(mhdr: *const ::msghdr, cmsg: *const ::cmsghdr)
613 -> *mut ::cmsghdr
614 {
615 if cmsg.is_null() {
616 return ::CMSG_FIRSTHDR(mhdr);
617 };
618 let next = cmsg as usize + _ALIGN((*cmsg).cmsg_len as usize)
619 + _ALIGN(mem::size_of::<::cmsghdr>());
620 let max = (*mhdr).msg_control as usize
621 + (*mhdr).msg_controllen as usize;
622 if next > max {
623 0 as *mut ::cmsghdr
624 } else {
625 (cmsg as usize + _ALIGN((*cmsg).cmsg_len as usize))
626 as *mut ::cmsghdr
627 }
628 }
629
630 pub fn CMSG_SPACE(length: ::c_uint) -> ::c_uint {
631 (_ALIGN(mem::size_of::<::cmsghdr>()) + _ALIGN(length as usize))
632 as ::c_uint
633 }
634
635 pub fn WSTOPSIG(status: ::c_int) -> ::c_int {
636 status >> 8
637 }
638
639 pub fn WIFSIGNALED(status: ::c_int) -> bool {
640 (status & 0o177) != 0o177 && (status & 0o177) != 0
641 }
642
643 pub fn WIFSTOPPED(status: ::c_int) -> bool {
644 (status & 0o177) == 0o177
645 }
646 }
647
648 #[link(name = "util")]
649 extern {
650 pub fn mincore(addr: *mut ::c_void, len: ::size_t,
651 vec: *mut ::c_char) -> ::c_int;
652 #[cfg_attr(target_os = "netbsd", link_name = "__clock_getres50")]
653 pub fn clock_getres(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
654 #[cfg_attr(target_os = "netbsd", link_name = "__clock_gettime50")]
655 pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
656 #[cfg_attr(target_os = "netbsd", link_name = "__clock_settime50")]
657 pub fn clock_settime(clk_id: ::clockid_t, tp: *const ::timespec) -> ::c_int;
658 pub fn __errno() -> *mut ::c_int;
659 pub fn shm_open(name: *const ::c_char, oflag: ::c_int, mode: ::mode_t)
660 -> ::c_int;
661 pub fn memrchr(cx: *const ::c_void,
662 c: ::c_int,
663 n: ::size_t) -> *mut ::c_void;
664 pub fn mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int;
665 pub fn mkostemps(template: *mut ::c_char,
666 suffixlen: ::c_int,
667 flags: ::c_int) -> ::c_int;
668 pub fn pwritev(fd: ::c_int,
669 iov: *const ::iovec,
670 iovcnt: ::c_int,
671 offset: ::off_t) -> ::ssize_t;
672 pub fn preadv(fd: ::c_int,
673 iov: *const ::iovec,
674 iovcnt: ::c_int,
675 offset: ::off_t) -> ::ssize_t;
676 pub fn futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int;
677 pub fn utimensat(dirfd: ::c_int, path: *const ::c_char,
678 times: *const ::timespec, flag: ::c_int) -> ::c_int;
679 pub fn fdatasync(fd: ::c_int) -> ::c_int;
680 pub fn openpty(amaster: *mut ::c_int,
681 aslave: *mut ::c_int,
682 name: *mut ::c_char,
683 termp: *mut termios,
684 winp: *mut ::winsize) -> ::c_int;
685 pub fn forkpty(amaster: *mut ::c_int,
686 name: *mut ::c_char,
687 termp: *mut termios,
688 winp: *mut ::winsize) -> ::pid_t;
689 pub fn getpriority(which: ::c_int, who: ::id_t) -> ::c_int;
690 pub fn setpriority(which: ::c_int, who: ::id_t, prio: ::c_int) -> ::c_int;
691
692 pub fn mknodat(dirfd: ::c_int, pathname: *const ::c_char,
693 mode: ::mode_t, dev: dev_t) -> ::c_int;
694 pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_char,
695 mode: ::mode_t) -> ::c_int;
696 pub fn sem_timedwait(sem: *mut sem_t,
697 abstime: *const ::timespec) -> ::c_int;
698 pub fn sem_getvalue(sem: *mut sem_t,
699 sval: *mut ::c_int) -> ::c_int;
700 pub fn pthread_condattr_setclock(attr: *mut pthread_condattr_t,
701 clock_id: ::clockid_t) -> ::c_int;
702 pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int;
703 pub fn pthread_mutex_timedlock(lock: *mut pthread_mutex_t,
704 abstime: *const ::timespec) -> ::c_int;
705 pub fn pipe2(fds: *mut ::c_int, flags: ::c_int) -> ::c_int;
706
707 pub fn getgrouplist(name: *const ::c_char,
708 basegid: ::gid_t,
709 groups: *mut ::gid_t,
710 ngroups: *mut ::c_int) -> ::c_int;
711 pub fn initgroups(name: *const ::c_char, basegid: ::gid_t) -> ::c_int;
712 pub fn getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int;
713 pub fn setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int;
714 pub fn uname(buf: *mut ::utsname) -> ::c_int;
715 }
716
717 cfg_if! {
718 if #[cfg(target_os = "netbsd")] {
719 mod netbsd;
720 pub use self::netbsd::*;
721 } else if #[cfg(any(target_os = "openbsd", target_os = "bitrig"))] {
722 mod openbsdlike;
723 pub use self::openbsdlike::*;
724 } else {
725 // Unknown target_os
726 }
727 }