]> git.proxmox.com Git - cargo.git/blob - vendor/libc/src/unix/redox/mod.rs
New upstream version 0.47.0
[cargo.git] / vendor / libc / src / unix / redox / mod.rs
1 pub type c_char = i8;
2 pub type c_long = i64;
3 pub type c_ulong = u64;
4 pub type wchar_t = i32;
5
6 pub type blkcnt_t = ::c_ulong;
7 pub type blksize_t = ::c_long;
8 pub type clock_t = ::c_long;
9 pub type clockid_t = ::c_int;
10 pub type dev_t = ::c_long;
11 pub type fsblkcnt_t = ::c_ulong;
12 pub type fsfilcnt_t = ::c_ulong;
13 pub type ino_t = ::c_ulong;
14 pub type mode_t = ::c_int;
15 pub type nfds_t = ::c_ulong;
16 pub type nlink_t = ::c_ulong;
17 pub type off_t = ::c_long;
18 pub type pthread_t = *mut ::c_void;
19 pub type pthread_attr_t = *mut ::c_void;
20 pub type pthread_cond_t = *mut ::c_void;
21 pub type pthread_condattr_t = *mut ::c_void;
22 // Must be usize due to libstd/sys_common/thread_local.rs,
23 // should technically be *mut ::c_void
24 pub type pthread_key_t = usize;
25 pub type pthread_mutex_t = *mut ::c_void;
26 pub type pthread_mutexattr_t = *mut ::c_void;
27 pub type pthread_rwlock_t = *mut ::c_void;
28 pub type pthread_rwlockattr_t = *mut ::c_void;
29 pub type rlim_t = ::c_ulonglong;
30 pub type sa_family_t = u16;
31 pub type sem_t = *mut ::c_void;
32 pub type sigset_t = ::c_ulong;
33 pub type socklen_t = u32;
34 pub type speed_t = u32;
35 pub type suseconds_t = ::c_int;
36 pub type tcflag_t = u32;
37 pub type time_t = ::c_long;
38
39 #[cfg_attr(feature = "extra_traits", derive(Debug))]
40 pub enum timezone {}
41 impl ::Copy for timezone {}
42 impl ::Clone for timezone {
43 fn clone(&self) -> timezone {
44 *self
45 }
46 }
47
48 s_no_extra_traits! {
49 #[repr(C)]
50 pub struct utsname {
51 pub sysname: [::c_char; UTSLENGTH],
52 pub nodename: [::c_char; UTSLENGTH],
53 pub release: [::c_char; UTSLENGTH],
54 pub version: [::c_char; UTSLENGTH],
55 pub machine: [::c_char; UTSLENGTH],
56 pub domainname: [::c_char; UTSLENGTH],
57 }
58
59 pub struct dirent {
60 pub d_ino: ::ino_t,
61 pub d_off: ::off_t,
62 pub d_reclen: ::c_ushort,
63 pub d_type: ::c_uchar,
64 pub d_name: [::c_char; 256],
65 }
66
67 pub struct sockaddr_un {
68 pub sun_family: ::sa_family_t,
69 pub sun_path: [::c_char; 108]
70 }
71
72 pub struct sockaddr_storage {
73 pub ss_family: ::sa_family_t,
74 __ss_padding: [
75 u8;
76 128 -
77 ::core::mem::size_of::<sa_family_t>() -
78 ::core::mem::size_of::<c_ulong>()
79 ],
80 __ss_align: ::c_ulong,
81 }
82 }
83
84 s! {
85 pub struct addrinfo {
86 pub ai_flags: ::c_int,
87 pub ai_family: ::c_int,
88 pub ai_socktype: ::c_int,
89 pub ai_protocol: ::c_int,
90 pub ai_addrlen: ::size_t,
91 pub ai_canonname: *mut ::c_char,
92 pub ai_addr: *mut ::sockaddr,
93 pub ai_next: *mut ::addrinfo,
94 }
95
96 pub struct Dl_info {
97 pub dli_fname: *const ::c_char,
98 pub dli_fbase: *mut ::c_void,
99 pub dli_sname: *const ::c_char,
100 pub dli_saddr: *mut ::c_void,
101 }
102
103 pub struct epoll_event {
104 pub events: u32,
105 pub u64: u64,
106 pub _pad: u64,
107 }
108
109 pub struct fd_set {
110 fds_bits: [::c_ulong; ::FD_SETSIZE / ULONG_SIZE],
111 }
112
113 pub struct in_addr {
114 pub s_addr: ::in_addr_t,
115 }
116
117 pub struct ip_mreq {
118 pub imr_multiaddr: ::in_addr,
119 pub imr_interface: ::in_addr,
120 }
121
122 pub struct lconv {
123 pub currency_symbol: *const ::c_char,
124 pub decimal_point: *const ::c_char,
125 pub frac_digits: ::c_char,
126 pub grouping: *const ::c_char,
127 pub int_curr_symbol: *const ::c_char,
128 pub int_frac_digits: ::c_char,
129 pub mon_decimal_point: *const ::c_char,
130 pub mon_grouping: *const ::c_char,
131 pub mon_thousands_sep: *const ::c_char,
132 pub negative_sign: *const ::c_char,
133 pub n_cs_precedes: ::c_char,
134 pub n_sep_by_space: ::c_char,
135 pub n_sign_posn: ::c_char,
136 pub positive_sign: *const ::c_char,
137 pub p_cs_precedes: ::c_char,
138 pub p_sep_by_space: ::c_char,
139 pub p_sign_posn: ::c_char,
140 pub thousands_sep: *const ::c_char,
141 }
142
143 pub struct passwd {
144 pub pw_name: *mut ::c_char,
145 pub pw_passwd: *mut ::c_char,
146 pub pw_uid: ::uid_t,
147 pub pw_gid: ::gid_t,
148 pub pw_gecos: *mut ::c_char,
149 pub pw_dir: *mut ::c_char,
150 pub pw_shell: *mut ::c_char,
151 }
152
153 pub struct sigaction {
154 pub sa_handler: ::sighandler_t,
155 pub sa_flags: ::c_ulong,
156 pub sa_restorer: ::Option<extern fn()>,
157 pub sa_mask: ::sigset_t,
158 }
159
160 pub struct sockaddr {
161 pub sa_family: ::sa_family_t,
162 pub sa_data: [::c_char; 14],
163 }
164
165 pub struct sockaddr_in {
166 pub sin_family: ::sa_family_t,
167 pub sin_port: ::in_port_t,
168 pub sin_addr: ::in_addr,
169 pub sin_zero: [::c_char; 8],
170 }
171
172 pub struct sockaddr_in6 {
173 pub sin6_family: ::sa_family_t,
174 pub sin6_port: ::in_port_t,
175 pub sin6_flowinfo: u32,
176 pub sin6_addr: ::in6_addr,
177 pub sin6_scope_id: u32,
178 }
179
180 pub struct stat {
181 pub st_dev: ::dev_t,
182 pub st_ino: ::ino_t,
183 pub st_nlink: ::nlink_t,
184 pub st_mode: ::mode_t,
185 pub st_uid: ::uid_t,
186 pub st_gid: ::gid_t,
187 pub st_rdev: ::dev_t,
188 pub st_size: ::off_t,
189 pub st_blksize: ::blksize_t,
190 pub st_blocks: ::blkcnt_t,
191 pub st_atime: ::time_t,
192 pub st_atime_nsec: ::c_long,
193 pub st_mtime: ::time_t,
194 pub st_mtime_nsec: ::c_long,
195 pub st_ctime: ::time_t,
196 pub st_ctime_nsec: ::c_long,
197 _pad: [::c_char; 24],
198 }
199
200 pub struct statvfs {
201 pub f_bsize: ::c_ulong,
202 pub f_frsize: ::c_ulong,
203 pub f_blocks: ::fsblkcnt_t,
204 pub f_bfree: ::fsblkcnt_t,
205 pub f_bavail: ::fsblkcnt_t,
206 pub f_files: ::fsfilcnt_t,
207 pub f_ffree: ::fsfilcnt_t,
208 pub f_favail: ::fsfilcnt_t,
209 pub f_fsid: ::c_ulong,
210 pub f_flag: ::c_ulong,
211 pub f_namemax: ::c_ulong,
212 }
213
214 pub struct termios {
215 pub c_iflag: ::tcflag_t,
216 pub c_oflag: ::tcflag_t,
217 pub c_cflag: ::tcflag_t,
218 pub c_lflag: ::tcflag_t,
219 pub c_line: ::cc_t,
220 pub c_cc: [::cc_t; ::NCCS],
221 pub c_ispeed: ::speed_t,
222 pub c_ospeed: ::speed_t,
223 }
224
225 pub struct tm {
226 pub tm_sec: ::c_int,
227 pub tm_min: ::c_int,
228 pub tm_hour: ::c_int,
229 pub tm_mday: ::c_int,
230 pub tm_mon: ::c_int,
231 pub tm_year: ::c_int,
232 pub tm_wday: ::c_int,
233 pub tm_yday: ::c_int,
234 pub tm_isdst: ::c_int,
235 pub tm_gmtoff: ::c_long,
236 pub tm_zone: *const ::c_char,
237 }
238 }
239
240 pub const UTSLENGTH: usize = 65;
241
242 // intentionally not public, only used for fd_set
243 cfg_if! {
244 if #[cfg(target_pointer_width = "32")] {
245 const ULONG_SIZE: usize = 32;
246 } else if #[cfg(target_pointer_width = "64")] {
247 const ULONG_SIZE: usize = 64;
248 } else {
249 // Unknown target_pointer_width
250 }
251 }
252
253 // limits.h
254 pub const PATH_MAX: ::c_int = 4096;
255
256 // fcntl.h
257 pub const F_GETLK: ::c_int = 5;
258 pub const F_SETLK: ::c_int = 6;
259 pub const F_SETLKW: ::c_int = 7;
260
261 // FIXME: relibc {
262 pub const RTLD_DEFAULT: *mut ::c_void = 0i64 as *mut ::c_void;
263 // }
264
265 // dlfcn.h
266 pub const RTLD_LAZY: ::c_int = 0x0001;
267 pub const RTLD_NOW: ::c_int = 0x0002;
268 pub const RTLD_GLOBAL: ::c_int = 0x0100;
269 pub const RTLD_LOCAL: ::c_int = 0x0000;
270
271 // errno.h
272 pub const EPERM: ::c_int = 1; /* Operation not permitted */
273 pub const ENOENT: ::c_int = 2; /* No such file or directory */
274 pub const ESRCH: ::c_int = 3; /* No such process */
275 pub const EINTR: ::c_int = 4; /* Interrupted system call */
276 pub const EIO: ::c_int = 5; /* I/O error */
277 pub const ENXIO: ::c_int = 6; /* No such device or address */
278 pub const E2BIG: ::c_int = 7; /* Argument list too long */
279 pub const ENOEXEC: ::c_int = 8; /* Exec format error */
280 pub const EBADF: ::c_int = 9; /* Bad file number */
281 pub const ECHILD: ::c_int = 10; /* No child processes */
282 pub const EAGAIN: ::c_int = 11; /* Try again */
283 pub const ENOMEM: ::c_int = 12; /* Out of memory */
284 pub const EACCES: ::c_int = 13; /* Permission denied */
285 pub const EFAULT: ::c_int = 14; /* Bad address */
286 pub const ENOTBLK: ::c_int = 15; /* Block device required */
287 pub const EBUSY: ::c_int = 16; /* Device or resource busy */
288 pub const EEXIST: ::c_int = 17; /* File exists */
289 pub const EXDEV: ::c_int = 18; /* Cross-device link */
290 pub const ENODEV: ::c_int = 19; /* No such device */
291 pub const ENOTDIR: ::c_int = 20; /* Not a directory */
292 pub const EISDIR: ::c_int = 21; /* Is a directory */
293 pub const EINVAL: ::c_int = 22; /* Invalid argument */
294 pub const ENFILE: ::c_int = 23; /* File table overflow */
295 pub const EMFILE: ::c_int = 24; /* Too many open files */
296 pub const ENOTTY: ::c_int = 25; /* Not a typewriter */
297 pub const ETXTBSY: ::c_int = 26; /* Text file busy */
298 pub const EFBIG: ::c_int = 27; /* File too large */
299 pub const ENOSPC: ::c_int = 28; /* No space left on device */
300 pub const ESPIPE: ::c_int = 29; /* Illegal seek */
301 pub const EROFS: ::c_int = 30; /* Read-only file system */
302 pub const EMLINK: ::c_int = 31; /* Too many links */
303 pub const EPIPE: ::c_int = 32; /* Broken pipe */
304 pub const EDOM: ::c_int = 33; /* Math argument out of domain of func */
305 pub const ERANGE: ::c_int = 34; /* Math result not representable */
306 pub const EDEADLK: ::c_int = 35; /* Resource deadlock would occur */
307 pub const ENAMETOOLONG: ::c_int = 36; /* File name too long */
308 pub const ENOLCK: ::c_int = 37; /* No record locks available */
309 pub const ENOSYS: ::c_int = 38; /* Function not implemented */
310 pub const ENOTEMPTY: ::c_int = 39; /* Directory not empty */
311 pub const ELOOP: ::c_int = 40; /* Too many symbolic links encountered */
312 pub const EWOULDBLOCK: ::c_int = 41; /* Operation would block */
313 pub const ENOMSG: ::c_int = 42; /* No message of desired type */
314 pub const EIDRM: ::c_int = 43; /* Identifier removed */
315 pub const ECHRNG: ::c_int = 44; /* Channel number out of range */
316 pub const EL2NSYNC: ::c_int = 45; /* Level 2 not synchronized */
317 pub const EL3HLT: ::c_int = 46; /* Level 3 halted */
318 pub const EL3RST: ::c_int = 47; /* Level 3 reset */
319 pub const ELNRNG: ::c_int = 48; /* Link number out of range */
320 pub const EUNATCH: ::c_int = 49; /* Protocol driver not attached */
321 pub const ENOCSI: ::c_int = 50; /* No CSI structure available */
322 pub const EL2HLT: ::c_int = 51; /* Level 2 halted */
323 pub const EBADE: ::c_int = 52; /* Invalid exchange */
324 pub const EBADR: ::c_int = 53; /* Invalid request descriptor */
325 pub const EXFULL: ::c_int = 54; /* Exchange full */
326 pub const ENOANO: ::c_int = 55; /* No anode */
327 pub const EBADRQC: ::c_int = 56; /* Invalid request code */
328 pub const EBADSLT: ::c_int = 57; /* Invalid slot */
329 pub const EDEADLOCK: ::c_int = 58; /* Resource deadlock would occur */
330 pub const EBFONT: ::c_int = 59; /* Bad font file format */
331 pub const ENOSTR: ::c_int = 60; /* Device not a stream */
332 pub const ENODATA: ::c_int = 61; /* No data available */
333 pub const ETIME: ::c_int = 62; /* Timer expired */
334 pub const ENOSR: ::c_int = 63; /* Out of streams resources */
335 pub const ENONET: ::c_int = 64; /* Machine is not on the network */
336 pub const ENOPKG: ::c_int = 65; /* Package not installed */
337 pub const EREMOTE: ::c_int = 66; /* Object is remote */
338 pub const ENOLINK: ::c_int = 67; /* Link has been severed */
339 pub const EADV: ::c_int = 68; /* Advertise error */
340 pub const ESRMNT: ::c_int = 69; /* Srmount error */
341 pub const ECOMM: ::c_int = 70; /* Communication error on send */
342 pub const EPROTO: ::c_int = 71; /* Protocol error */
343 pub const EMULTIHOP: ::c_int = 72; /* Multihop attempted */
344 pub const EDOTDOT: ::c_int = 73; /* RFS specific error */
345 pub const EBADMSG: ::c_int = 74; /* Not a data message */
346 pub const EOVERFLOW: ::c_int = 75; /* Value too large for defined data type */
347 pub const ENOTUNIQ: ::c_int = 76; /* Name not unique on network */
348 pub const EBADFD: ::c_int = 77; /* File descriptor in bad state */
349 pub const EREMCHG: ::c_int = 78; /* Remote address changed */
350 pub const ELIBACC: ::c_int = 79; /* Can not access a needed shared library */
351 pub const ELIBBAD: ::c_int = 80; /* Accessing a corrupted shared library */
352 pub const ELIBSCN: ::c_int = 81; /* .lib section in a.out corrupted */
353 /* Attempting to link in too many shared libraries */
354 pub const ELIBMAX: ::c_int = 82;
355 pub const ELIBEXEC: ::c_int = 83; /* Cannot exec a shared library directly */
356 pub const EILSEQ: ::c_int = 84; /* Illegal byte sequence */
357 /* Interrupted system call should be restarted */
358 pub const ERESTART: ::c_int = 85;
359 pub const ESTRPIPE: ::c_int = 86; /* Streams pipe error */
360 pub const EUSERS: ::c_int = 87; /* Too many users */
361 pub const ENOTSOCK: ::c_int = 88; /* Socket operation on non-socket */
362 pub const EDESTADDRREQ: ::c_int = 89; /* Destination address required */
363 pub const EMSGSIZE: ::c_int = 90; /* Message too long */
364 pub const EPROTOTYPE: ::c_int = 91; /* Protocol wrong type for socket */
365 pub const ENOPROTOOPT: ::c_int = 92; /* Protocol not available */
366 pub const EPROTONOSUPPORT: ::c_int = 93; /* Protocol not supported */
367 pub const ESOCKTNOSUPPORT: ::c_int = 94; /* Socket type not supported */
368 /* Operation not supported on transport endpoint */
369 pub const EOPNOTSUPP: ::c_int = 95;
370 pub const EPFNOSUPPORT: ::c_int = 96; /* Protocol family not supported */
371 /* Address family not supported by protocol */
372 pub const EAFNOSUPPORT: ::c_int = 97;
373 pub const EADDRINUSE: ::c_int = 98; /* Address already in use */
374 pub const EADDRNOTAVAIL: ::c_int = 99; /* Cannot assign requested address */
375 pub const ENETDOWN: ::c_int = 100; /* Network is down */
376 pub const ENETUNREACH: ::c_int = 101; /* Network is unreachable */
377 /* Network dropped connection because of reset */
378 pub const ENETRESET: ::c_int = 102;
379 pub const ECONNABORTED: ::c_int = 103; /* Software caused connection abort */
380 pub const ECONNRESET: ::c_int = 104; /* Connection reset by peer */
381 pub const ENOBUFS: ::c_int = 105; /* No buffer space available */
382 pub const EISCONN: ::c_int = 106; /* Transport endpoint is already connected */
383 pub const ENOTCONN: ::c_int = 107; /* Transport endpoint is not connected */
384 /* Cannot send after transport endpoint shutdown */
385 pub const ESHUTDOWN: ::c_int = 108;
386 pub const ETOOMANYREFS: ::c_int = 109; /* Too many references: cannot splice */
387 pub const ETIMEDOUT: ::c_int = 110; /* Connection timed out */
388 pub const ECONNREFUSED: ::c_int = 111; /* Connection refused */
389 pub const EHOSTDOWN: ::c_int = 112; /* Host is down */
390 pub const EHOSTUNREACH: ::c_int = 113; /* No route to host */
391 pub const EALREADY: ::c_int = 114; /* Operation already in progress */
392 pub const EINPROGRESS: ::c_int = 115; /* Operation now in progress */
393 pub const ESTALE: ::c_int = 116; /* Stale NFS file handle */
394 pub const EUCLEAN: ::c_int = 117; /* Structure needs cleaning */
395 pub const ENOTNAM: ::c_int = 118; /* Not a XENIX named type file */
396 pub const ENAVAIL: ::c_int = 119; /* No XENIX semaphores available */
397 pub const EISNAM: ::c_int = 120; /* Is a named type file */
398 pub const EREMOTEIO: ::c_int = 121; /* Remote I/O error */
399 pub const EDQUOT: ::c_int = 122; /* Quota exceeded */
400 pub const ENOMEDIUM: ::c_int = 123; /* No medium found */
401 pub const EMEDIUMTYPE: ::c_int = 124; /* Wrong medium type */
402 pub const ECANCELED: ::c_int = 125; /* Operation Canceled */
403 pub const ENOKEY: ::c_int = 126; /* Required key not available */
404 pub const EKEYEXPIRED: ::c_int = 127; /* Key has expired */
405 pub const EKEYREVOKED: ::c_int = 128; /* Key has been revoked */
406 pub const EKEYREJECTED: ::c_int = 129; /* Key was rejected by service */
407 pub const EOWNERDEAD: ::c_int = 130; /* Owner died */
408 pub const ENOTRECOVERABLE: ::c_int = 131; /* State not recoverable */
409
410 // fcntl.h
411 pub const F_DUPFD: ::c_int = 0;
412 pub const F_GETFD: ::c_int = 1;
413 pub const F_SETFD: ::c_int = 2;
414 pub const F_GETFL: ::c_int = 3;
415 pub const F_SETFL: ::c_int = 4;
416 // FIXME: relibc {
417 pub const F_DUPFD_CLOEXEC: ::c_int = ::F_DUPFD;
418 // }
419 pub const FD_CLOEXEC: ::c_int = 0x0100_0000;
420 pub const O_RDONLY: ::c_int = 0x0001_0000;
421 pub const O_WRONLY: ::c_int = 0x0002_0000;
422 pub const O_RDWR: ::c_int = 0x0003_0000;
423 pub const O_ACCMODE: ::c_int = 0x0003_0000;
424 pub const O_NONBLOCK: ::c_int = 0x0004_0000;
425 pub const O_APPEND: ::c_int = 0x0008_0000;
426 pub const O_SHLOCK: ::c_int = 0x0010_0000;
427 pub const O_EXLOCK: ::c_int = 0x0020_0000;
428 pub const O_ASYNC: ::c_int = 0x0040_0000;
429 pub const O_FSYNC: ::c_int = 0x0080_0000;
430 pub const O_CLOEXEC: ::c_int = 0x0100_0000;
431 pub const O_CREAT: ::c_int = 0x0200_0000;
432 pub const O_TRUNC: ::c_int = 0x0400_0000;
433 pub const O_EXCL: ::c_int = 0x0800_0000;
434 pub const O_DIRECTORY: ::c_int = 0x1000_0000;
435 pub const O_PATH: ::c_int = 0x2000_0000;
436 pub const O_SYMLINK: ::c_int = 0x4000_0000;
437 // Negative to allow it to be used as int
438 // FIXME: Fix negative values missing from includes
439 pub const O_NOFOLLOW: ::c_int = -0x8000_0000;
440
441 // netdb.h
442 pub const EAI_SYSTEM: ::c_int = -11;
443
444 // netinet/in.h
445 // FIXME: relibc {
446 pub const IP_TTL: ::c_int = 2;
447 pub const IPV6_UNICAST_HOPS: ::c_int = 16;
448 pub const IPV6_MULTICAST_IF: ::c_int = 17;
449 pub const IPV6_MULTICAST_HOPS: ::c_int = 18;
450 pub const IPV6_MULTICAST_LOOP: ::c_int = 19;
451 pub const IPV6_ADD_MEMBERSHIP: ::c_int = 20;
452 pub const IPV6_DROP_MEMBERSHIP: ::c_int = 21;
453 pub const IPV6_V6ONLY: ::c_int = 26;
454 pub const IP_MULTICAST_IF: ::c_int = 32;
455 pub const IP_MULTICAST_TTL: ::c_int = 33;
456 pub const IP_MULTICAST_LOOP: ::c_int = 34;
457 pub const IP_ADD_MEMBERSHIP: ::c_int = 35;
458 pub const IP_DROP_MEMBERSHIP: ::c_int = 36;
459 // }
460
461 // netinet/tcp.h
462 pub const TCP_NODELAY: ::c_int = 1;
463 // FIXME: relibc {
464 pub const TCP_KEEPIDLE: ::c_int = 1;
465 // }
466
467 // poll.h
468 pub const POLLIN: ::c_short = 0x001;
469 pub const POLLPRI: ::c_short = 0x002;
470 pub const POLLOUT: ::c_short = 0x004;
471 pub const POLLERR: ::c_short = 0x008;
472 pub const POLLHUP: ::c_short = 0x010;
473 pub const POLLNVAL: ::c_short = 0x020;
474
475 // pthread.h
476 pub const PTHREAD_MUTEX_NORMAL: ::c_int = 0;
477 pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 1;
478 pub const PTHREAD_MUTEX_INITIALIZER: ::pthread_mutex_t = -1isize as *mut _;
479 pub const PTHREAD_COND_INITIALIZER: ::pthread_cond_t = -1isize as *mut _;
480 pub const PTHREAD_RWLOCK_INITIALIZER: ::pthread_rwlock_t = -1isize as *mut _;
481 pub const PTHREAD_STACK_MIN: ::size_t = 4096;
482
483 // signal.h
484 pub const SIG_BLOCK: ::c_int = 0;
485 pub const SIG_UNBLOCK: ::c_int = 1;
486 pub const SIG_SETMASK: ::c_int = 2;
487 pub const SIGHUP: ::c_int = 1;
488 pub const SIGINT: ::c_int = 2;
489 pub const SIGQUIT: ::c_int = 3;
490 pub const SIGILL: ::c_int = 4;
491 pub const SIGTRAP: ::c_int = 5;
492 pub const SIGABRT: ::c_int = 6;
493 pub const SIGBUS: ::c_int = 7;
494 pub const SIGFPE: ::c_int = 8;
495 pub const SIGKILL: ::c_int = 9;
496 pub const SIGUSR1: ::c_int = 10;
497 pub const SIGSEGV: ::c_int = 11;
498 pub const SIGUSR2: ::c_int = 12;
499 pub const SIGPIPE: ::c_int = 13;
500 pub const SIGALRM: ::c_int = 14;
501 pub const SIGTERM: ::c_int = 15;
502 pub const SIGSTKFLT: ::c_int = 16;
503 pub const SIGCHLD: ::c_int = 17;
504 pub const SIGCONT: ::c_int = 18;
505 pub const SIGSTOP: ::c_int = 19;
506 pub const SIGTSTP: ::c_int = 20;
507 pub const SIGTTIN: ::c_int = 21;
508 pub const SIGTTOU: ::c_int = 22;
509 pub const SIGURG: ::c_int = 23;
510 pub const SIGXCPU: ::c_int = 24;
511 pub const SIGXFSZ: ::c_int = 25;
512 pub const SIGVTALRM: ::c_int = 26;
513 pub const SIGPROF: ::c_int = 27;
514 pub const SIGWINCH: ::c_int = 28;
515 pub const SIGIO: ::c_int = 29;
516 pub const SIGPWR: ::c_int = 30;
517 pub const SIGSYS: ::c_int = 31;
518 pub const NSIG: ::c_int = 32;
519
520 pub const SA_NOCLDSTOP: ::c_ulong = 0x00000001;
521 pub const SA_NOCLDWAIT: ::c_ulong = 0x00000002;
522 pub const SA_SIGINFO: ::c_ulong = 0x00000004;
523 pub const SA_RESTORER: ::c_ulong = 0x04000000;
524 pub const SA_ONSTACK: ::c_ulong = 0x08000000;
525 pub const SA_RESTART: ::c_ulong = 0x10000000;
526 pub const SA_NODEFER: ::c_ulong = 0x40000000;
527 pub const SA_RESETHAND: ::c_ulong = 0x80000000;
528
529 // sys/epoll.h
530 pub const EPOLL_CLOEXEC: ::c_int = 0x0100_0000;
531 pub const EPOLL_CTL_ADD: ::c_int = 1;
532 pub const EPOLL_CTL_DEL: ::c_int = 2;
533 pub const EPOLL_CTL_MOD: ::c_int = 3;
534 pub const EPOLLIN: ::c_int = 1;
535 pub const EPOLLPRI: ::c_int = 0;
536 pub const EPOLLOUT: ::c_int = 2;
537 pub const EPOLLRDNORM: ::c_int = 0;
538 pub const EPOLLNVAL: ::c_int = 0;
539 pub const EPOLLRDBAND: ::c_int = 0;
540 pub const EPOLLWRNORM: ::c_int = 0;
541 pub const EPOLLWRBAND: ::c_int = 0;
542 pub const EPOLLMSG: ::c_int = 0;
543 pub const EPOLLERR: ::c_int = 0;
544 pub const EPOLLHUP: ::c_int = 0;
545 pub const EPOLLRDHUP: ::c_int = 0;
546 pub const EPOLLEXCLUSIVE: ::c_int = 0;
547 pub const EPOLLWAKEUP: ::c_int = 0;
548 pub const EPOLLONESHOT: ::c_int = 0;
549 pub const EPOLLET: ::c_int = 0;
550
551 // sys/stat.h
552 pub const S_IFMT: ::c_int = 0o0_170_000;
553 pub const S_IFDIR: ::c_int = 0o040_000;
554 pub const S_IFCHR: ::c_int = 0o020_000;
555 pub const S_IFBLK: ::c_int = 0o060_000;
556 pub const S_IFREG: ::c_int = 0o100_000;
557 pub const S_IFIFO: ::c_int = 0o010_000;
558 pub const S_IFLNK: ::c_int = 0o120_000;
559 pub const S_IFSOCK: ::c_int = 0o140_000;
560 pub const S_IRWXU: ::c_int = 0o0_700;
561 pub const S_IRUSR: ::c_int = 0o0_400;
562 pub const S_IWUSR: ::c_int = 0o0_200;
563 pub const S_IXUSR: ::c_int = 0o0_100;
564 pub const S_IRWXG: ::c_int = 0o0_070;
565 pub const S_IRGRP: ::c_int = 0o0_040;
566 pub const S_IWGRP: ::c_int = 0o0_020;
567 pub const S_IXGRP: ::c_int = 0o0_010;
568 pub const S_IRWXO: ::c_int = 0o0_007;
569 pub const S_IROTH: ::c_int = 0o0_004;
570 pub const S_IWOTH: ::c_int = 0o0_002;
571 pub const S_IXOTH: ::c_int = 0o0_001;
572
573 // stdlib.h
574 pub const EXIT_SUCCESS: ::c_int = 0;
575 pub const EXIT_FAILURE: ::c_int = 1;
576
577 // sys/ioctl.h
578 // FIXME: relibc {
579 pub const FIONBIO: ::c_ulong = 0x5421;
580 pub const FIOCLEX: ::c_ulong = 0x5451;
581 // }
582 pub const TCGETS: ::c_ulong = 0x5401;
583 pub const TCSETS: ::c_ulong = 0x5402;
584 pub const TCFLSH: ::c_ulong = 0x540B;
585 pub const TIOCGPGRP: ::c_ulong = 0x540F;
586 pub const TIOCSPGRP: ::c_ulong = 0x5410;
587 pub const TIOCGWINSZ: ::c_ulong = 0x5413;
588 pub const TIOCSWINSZ: ::c_ulong = 0x5414;
589
590 // sys/mman.h
591 pub const PROT_NONE: ::c_int = 0x0000;
592 pub const PROT_READ: ::c_int = 0x0004;
593 pub const PROT_WRITE: ::c_int = 0x0002;
594 pub const PROT_EXEC: ::c_int = 0x0001;
595
596 pub const MAP_SHARED: ::c_int = 0x0001;
597 pub const MAP_PRIVATE: ::c_int = 0x0002;
598 pub const MAP_ANON: ::c_int = 0x0020;
599 pub const MAP_ANONYMOUS: ::c_int = MAP_ANON;
600 pub const MAP_FIXED: ::c_int = 0x0010;
601 pub const MAP_FAILED: *mut ::c_void = !0 as _;
602
603 pub const MS_ASYNC: ::c_int = 0x0001;
604 pub const MS_INVALIDATE: ::c_int = 0x0002;
605 pub const MS_SYNC: ::c_int = 0x0004;
606
607 // sys/select.h
608 pub const FD_SETSIZE: usize = 1024;
609
610 // sys/socket.h
611 pub const AF_UNIX: ::c_int = 1;
612 pub const AF_INET: ::c_int = 2;
613 pub const AF_INET6: ::c_int = 10;
614 pub const MSG_PEEK: ::c_int = 2;
615 pub const SHUT_RD: ::c_int = 0;
616 pub const SHUT_WR: ::c_int = 1;
617 pub const SHUT_RDWR: ::c_int = 2;
618 pub const SO_REUSEADDR: ::c_int = 2;
619 pub const SO_ERROR: ::c_int = 4;
620 pub const SO_BROADCAST: ::c_int = 6;
621 pub const SO_SNDBUF: ::c_int = 7;
622 pub const SO_RCVBUF: ::c_int = 8;
623 pub const SO_KEEPALIVE: ::c_int = 9;
624 pub const SO_LINGER: ::c_int = 13;
625 pub const SO_REUSEPORT: ::c_int = 15;
626 pub const SO_RCVTIMEO: ::c_int = 20;
627 pub const SO_SNDTIMEO: ::c_int = 21;
628 pub const SOCK_STREAM: ::c_int = 1;
629 pub const SOCK_DGRAM: ::c_int = 2;
630 pub const SOL_SOCKET: ::c_int = 1;
631
632 // sys/termios.h
633 pub const NCCS: usize = 32;
634
635 pub const VINTR: usize = 0;
636 pub const VQUIT: usize = 1;
637 pub const VERASE: usize = 2;
638 pub const VKILL: usize = 3;
639 pub const VEOF: usize = 4;
640 pub const VTIME: usize = 5;
641 pub const VMIN: usize = 6;
642 pub const VSWTC: usize = 7;
643 pub const VSTART: usize = 8;
644 pub const VSTOP: usize = 9;
645 pub const VSUSP: usize = 10;
646 pub const VEOL: usize = 11;
647 pub const VREPRINT: usize = 12;
648 pub const VDISCARD: usize = 13;
649 pub const VWERASE: usize = 14;
650 pub const VLNEXT: usize = 15;
651 pub const VEOL2: usize = 16;
652
653 pub const IGNBRK: ::tcflag_t = 0o000_001;
654 pub const BRKINT: ::tcflag_t = 0o000_002;
655 pub const IGNPAR: ::tcflag_t = 0o000_004;
656 pub const PARMRK: ::tcflag_t = 0o000_010;
657 pub const INPCK: ::tcflag_t = 0o000_020;
658 pub const ISTRIP: ::tcflag_t = 0o000_040;
659 pub const INLCR: ::tcflag_t = 0o000_100;
660 pub const IGNCR: ::tcflag_t = 0o000_200;
661 pub const ICRNL: ::tcflag_t = 0o000_400;
662 pub const IUCLC: ::tcflag_t = 0o001_000;
663 pub const IXON: ::tcflag_t = 0o002_000;
664 pub const IXANY: ::tcflag_t = 0o004_000;
665 pub const IXOFF: ::tcflag_t = 0o010_000;
666 pub const IMAXBEL: ::tcflag_t = 0o020_000;
667 pub const IUTF8: ::tcflag_t = 0o040_000;
668
669 pub const OPOST: ::tcflag_t = 0o000_001;
670 pub const OLCUC: ::tcflag_t = 0o000_002;
671 pub const ONLCR: ::tcflag_t = 0o000_004;
672 pub const OCRNL: ::tcflag_t = 0o000_010;
673 pub const ONOCR: ::tcflag_t = 0o000_020;
674 pub const ONLRET: ::tcflag_t = 0o00_0040;
675 pub const OFILL: ::tcflag_t = 0o000_100;
676 pub const OFDEL: ::tcflag_t = 0o000_200;
677
678 pub const VTDLY: usize = 0o040_000;
679 pub const VT0: usize = 0o000_000;
680 pub const VT1: usize = 0o040_000;
681
682 pub const B0: speed_t = 0o000_000;
683 pub const B50: speed_t = 0o000_001;
684 pub const B75: speed_t = 0o000_002;
685 pub const B110: speed_t = 0o000_003;
686 pub const B134: speed_t = 0o000_004;
687 pub const B150: speed_t = 0o000_005;
688 pub const B200: speed_t = 0o000_006;
689 pub const B300: speed_t = 0o000_007;
690 pub const B600: speed_t = 0o000_010;
691 pub const B1200: speed_t = 0o000_011;
692 pub const B1800: speed_t = 0o000_012;
693 pub const B2400: speed_t = 0o000_013;
694 pub const B4800: speed_t = 0o000_014;
695 pub const B9600: speed_t = 0o000_015;
696 pub const B19200: speed_t = 0o000_016;
697 pub const B38400: speed_t = 0o000_017;
698
699 pub const B57600: speed_t = 0o010_001;
700 pub const B115200: speed_t = 0o010_002;
701 pub const B230400: speed_t = 0o010_003;
702 pub const B460800: speed_t = 0o010_004;
703 pub const B500000: speed_t = 0o010_005;
704 pub const B576000: speed_t = 0o010_006;
705 pub const B921600: speed_t = 0o010_007;
706 pub const B1000000: speed_t = 0o010_010;
707 pub const B1152000: speed_t = 0o010_011;
708 pub const B1500000: speed_t = 0o010_012;
709 pub const B2000000: speed_t = 0o010_013;
710 pub const B2500000: speed_t = 0o010_014;
711 pub const B3000000: speed_t = 0o010_015;
712 pub const B3500000: speed_t = 0o010_016;
713 pub const B4000000: speed_t = 0o010_017;
714
715 pub const CSIZE: ::tcflag_t = 0o000_060;
716 pub const CS5: ::tcflag_t = 0o000_000;
717 pub const CS6: ::tcflag_t = 0o000_020;
718 pub const CS7: ::tcflag_t = 0o000_040;
719 pub const CS8: ::tcflag_t = 0o000_060;
720 pub const CSTOPB: ::tcflag_t = 0o000_100;
721 pub const CREAD: ::tcflag_t = 0o000_200;
722 pub const PARENB: ::tcflag_t = 0o000_400;
723 pub const PARODD: ::tcflag_t = 0o001_000;
724 pub const HUPCL: ::tcflag_t = 0o002_000;
725 pub const CLOCAL: ::tcflag_t = 0o004_000;
726
727 pub const ISIG: ::tcflag_t = 0o000_001;
728 pub const ICANON: ::tcflag_t = 0o000_002;
729 pub const ECHO: ::tcflag_t = 0o000_010;
730 pub const ECHOE: ::tcflag_t = 0o000_020;
731 pub const ECHOK: ::tcflag_t = 0o000_040;
732 pub const ECHONL: ::tcflag_t = 0o000_100;
733 pub const NOFLSH: ::tcflag_t = 0o000_200;
734 pub const TOSTOP: ::tcflag_t = 0o000_400;
735 pub const IEXTEN: ::tcflag_t = 0o100_000;
736
737 pub const TCOOFF: ::c_int = 0;
738 pub const TCOON: ::c_int = 1;
739 pub const TCIOFF: ::c_int = 2;
740 pub const TCION: ::c_int = 3;
741
742 pub const TCIFLUSH: ::c_int = 0;
743 pub const TCOFLUSH: ::c_int = 1;
744 pub const TCIOFLUSH: ::c_int = 2;
745
746 pub const TCSANOW: ::c_int = 0;
747 pub const TCSADRAIN: ::c_int = 1;
748 pub const TCSAFLUSH: ::c_int = 2;
749
750 // sys/wait.h
751 pub const WNOHANG: ::c_int = 1;
752 pub const WUNTRACED: ::c_int = 2;
753
754 pub const WSTOPPED: ::c_int = 2;
755 pub const WEXITED: ::c_int = 4;
756 pub const WCONTINUED: ::c_int = 8;
757 pub const WNOWAIT: ::c_int = 0x0100_0000;
758
759 pub const __WNOTHREAD: ::c_int = 0x2000_0000;
760 pub const __WALL: ::c_int = 0x4000_0000;
761 #[allow(overflowing_literals)]
762 pub const __WCLONE: ::c_int = 0x8000_0000;
763
764 // time.h
765 pub const CLOCK_REALTIME: ::c_int = 1;
766 pub const CLOCK_MONOTONIC: ::c_int = 4;
767
768 // unistd.h
769 // POSIX.1 {
770 pub const _SC_ARG_MAX: ::c_int = 0;
771 pub const _SC_CHILD_MAX: ::c_int = 1;
772 pub const _SC_CLK_TCK: ::c_int = 2;
773 pub const _SC_NGROUPS_MAX: ::c_int = 3;
774 pub const _SC_OPEN_MAX: ::c_int = 4;
775 pub const _SC_STREAM_MAX: ::c_int = 5;
776 pub const _SC_TZNAME_MAX: ::c_int = 6;
777 // ...
778 pub const _SC_VERSION: ::c_int = 29;
779 pub const _SC_PAGESIZE: ::c_int = 30;
780 pub const _SC_PAGE_SIZE: ::c_int = 30;
781 // ...
782 pub const _SC_RE_DUP_MAX: ::c_int = 44;
783 // ...
784 pub const _SC_LOGIN_NAME_MAX: ::c_int = 71;
785 pub const _SC_TTY_NAME_MAX: ::c_int = 72;
786 // ...
787 pub const _SC_SYMLOOP_MAX: ::c_int = 173;
788 // ...
789 pub const _SC_HOST_NAME_MAX: ::c_int = 180;
790 // } POSIX.1
791
792 pub const F_OK: ::c_int = 0;
793 pub const R_OK: ::c_int = 4;
794 pub const W_OK: ::c_int = 2;
795 pub const X_OK: ::c_int = 1;
796
797 pub const SEEK_SET: ::c_int = 0;
798 pub const SEEK_CUR: ::c_int = 1;
799 pub const SEEK_END: ::c_int = 2;
800 pub const STDIN_FILENO: ::c_int = 0;
801 pub const STDOUT_FILENO: ::c_int = 1;
802 pub const STDERR_FILENO: ::c_int = 2;
803
804 pub const _PC_LINK_MAX: ::c_int = 0;
805 pub const _PC_MAX_CANON: ::c_int = 1;
806 pub const _PC_MAX_INPUT: ::c_int = 2;
807 pub const _PC_NAME_MAX: ::c_int = 3;
808 pub const _PC_PATH_MAX: ::c_int = 4;
809 pub const _PC_PIPE_BUF: ::c_int = 5;
810 pub const _PC_CHOWN_RESTRICTED: ::c_int = 6;
811 pub const _PC_NO_TRUNC: ::c_int = 7;
812 pub const _PC_VDISABLE: ::c_int = 8;
813 pub const _PC_SYNC_IO: ::c_int = 9;
814 pub const _PC_ASYNC_IO: ::c_int = 10;
815 pub const _PC_PRIO_IO: ::c_int = 11;
816 pub const _PC_SOCK_MAXBUF: ::c_int = 12;
817 pub const _PC_FILESIZEBITS: ::c_int = 13;
818 pub const _PC_REC_INCR_XFER_SIZE: ::c_int = 14;
819 pub const _PC_REC_MAX_XFER_SIZE: ::c_int = 15;
820 pub const _PC_REC_MIN_XFER_SIZE: ::c_int = 16;
821 pub const _PC_REC_XFER_ALIGN: ::c_int = 17;
822 pub const _PC_ALLOC_SIZE_MIN: ::c_int = 18;
823 pub const _PC_SYMLINK_MAX: ::c_int = 19;
824 pub const _PC_2_SYMLINKS: ::c_int = 20;
825
826 pub const PRIO_PROCESS: ::c_int = 0;
827 pub const PRIO_PGRP: ::c_int = 1;
828 pub const PRIO_USER: ::c_int = 2;
829
830 // wait.h
831 f! {
832 pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> () {
833 let fd = fd as usize;
834 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
835 (*set).fds_bits[fd / size] &= !(1 << (fd % size));
836 return
837 }
838
839 pub fn FD_ISSET(fd: ::c_int, set: *mut fd_set) -> bool {
840 let fd = fd as usize;
841 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
842 return ((*set).fds_bits[fd / size] & (1 << (fd % size))) != 0
843 }
844
845 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () {
846 let fd = fd as usize;
847 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8;
848 (*set).fds_bits[fd / size] |= 1 << (fd % size);
849 return
850 }
851
852 pub fn FD_ZERO(set: *mut fd_set) -> () {
853 for slot in (*set).fds_bits.iter_mut() {
854 *slot = 0;
855 }
856 }
857 }
858
859 safe_f! {
860 pub {const} fn WIFSTOPPED(status: ::c_int) -> bool {
861 (status & 0xff) == 0x7f
862 }
863
864 pub {const} fn WSTOPSIG(status: ::c_int) -> ::c_int {
865 (status >> 8) & 0xff
866 }
867
868 pub {const} fn WIFCONTINUED(status: ::c_int) -> bool {
869 status == 0xffff
870 }
871
872 pub {const} fn WIFSIGNALED(status: ::c_int) -> bool {
873 ((status & 0x7f) + 1) as i8 >= 2
874 }
875
876 pub {const} fn WTERMSIG(status: ::c_int) -> ::c_int {
877 status & 0x7f
878 }
879
880 pub {const} fn WIFEXITED(status: ::c_int) -> bool {
881 (status & 0x7f) == 0
882 }
883
884 pub {const} fn WEXITSTATUS(status: ::c_int) -> ::c_int {
885 (status >> 8) & 0xff
886 }
887
888 pub {const} fn WCOREDUMP(status: ::c_int) -> bool {
889 (status & 0x80) != 0
890 }
891 }
892
893 extern "C" {
894 // errno.h
895 pub fn __errno_location() -> *mut ::c_int;
896 pub fn strerror_r(
897 errnum: ::c_int,
898 buf: *mut c_char,
899 buflen: ::size_t,
900 ) -> ::c_int;
901
902 // unistd.h
903 pub fn pipe2(fds: *mut ::c_int, flags: ::c_int) -> ::c_int;
904
905 // malloc.h
906 pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
907
908 // pthread.h
909 pub fn pthread_atfork(
910 prepare: ::Option<unsafe extern "C" fn()>,
911 parent: ::Option<unsafe extern "C" fn()>,
912 child: ::Option<unsafe extern "C" fn()>,
913 ) -> ::c_int;
914 pub fn pthread_create(
915 tid: *mut ::pthread_t,
916 attr: *const ::pthread_attr_t,
917 start: extern "C" fn(*mut ::c_void) -> *mut ::c_void,
918 arg: *mut ::c_void,
919 ) -> ::c_int;
920 pub fn pthread_condattr_setclock(
921 attr: *mut pthread_condattr_t,
922 clock_id: ::clockid_t,
923 ) -> ::c_int;
924
925 // pwd.h
926 pub fn getpwuid_r(
927 uid: ::uid_t,
928 pwd: *mut passwd,
929 buf: *mut ::c_char,
930 buflen: ::size_t,
931 result: *mut *mut passwd,
932 ) -> ::c_int;
933
934 // signal.h
935 pub fn pthread_sigmask(
936 how: ::c_int,
937 set: *const ::sigset_t,
938 oldset: *mut ::sigset_t,
939 ) -> ::c_int;
940
941 // sys/epoll.h
942 pub fn epoll_create(size: ::c_int) -> ::c_int;
943 pub fn epoll_create1(flags: ::c_int) -> ::c_int;
944 pub fn epoll_wait(
945 epfd: ::c_int,
946 events: *mut ::epoll_event,
947 maxevents: ::c_int,
948 timeout: ::c_int,
949 ) -> ::c_int;
950 pub fn epoll_ctl(
951 epfd: ::c_int,
952 op: ::c_int,
953 fd: ::c_int,
954 event: *mut ::epoll_event,
955 ) -> ::c_int;
956
957 // sys/ioctl.h
958 pub fn ioctl(fd: ::c_int, request: ::c_ulong, ...) -> ::c_int;
959
960 // sys/mman.h
961 pub fn msync(
962 addr: *mut ::c_void,
963 len: ::size_t,
964 flags: ::c_int,
965 ) -> ::c_int;
966 pub fn mprotect(
967 addr: *mut ::c_void,
968 len: ::size_t,
969 prot: ::c_int,
970 ) -> ::c_int;
971 pub fn shm_open(
972 name: *const c_char,
973 oflag: ::c_int,
974 mode: mode_t,
975 ) -> ::c_int;
976 pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
977
978 // sys/resource.h
979 pub fn getrlimit(resource: ::c_int, rlim: *mut ::rlimit) -> ::c_int;
980 pub fn setrlimit(resource: ::c_int, rlim: *const ::rlimit) -> ::c_int;
981
982 // sys/socket.h
983 pub fn bind(
984 socket: ::c_int,
985 address: *const ::sockaddr,
986 address_len: ::socklen_t,
987 ) -> ::c_int;
988 pub fn recvfrom(
989 socket: ::c_int,
990 buf: *mut ::c_void,
991 len: ::size_t,
992 flags: ::c_int,
993 addr: *mut ::sockaddr,
994 addrlen: *mut ::socklen_t,
995 ) -> ::ssize_t;
996
997 // sys/stat.h
998 pub fn futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int;
999
1000 // sys/uio.h
1001 pub fn readv(
1002 fd: ::c_int,
1003 iov: *const ::iovec,
1004 iovcnt: ::c_int,
1005 ) -> ::ssize_t;
1006 pub fn writev(
1007 fd: ::c_int,
1008 iov: *const ::iovec,
1009 iovcnt: ::c_int,
1010 ) -> ::ssize_t;
1011
1012 // sys/utsname.h
1013 pub fn uname(utsname: *mut utsname) -> ::c_int;
1014
1015 // time.h
1016 pub fn gettimeofday(tp: *mut ::timeval, tz: *mut ::timezone) -> ::c_int;
1017 pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
1018 }
1019
1020 cfg_if! {
1021 if #[cfg(feature = "extra_traits")] {
1022 impl PartialEq for dirent {
1023 fn eq(&self, other: &dirent) -> bool {
1024 self.d_ino == other.d_ino
1025 && self.d_off == other.d_off
1026 && self.d_reclen == other.d_reclen
1027 && self.d_type == other.d_type
1028 && self
1029 .d_name
1030 .iter()
1031 .zip(other.d_name.iter())
1032 .all(|(a,b)| a == b)
1033 }
1034 }
1035
1036 impl Eq for dirent {}
1037
1038 impl ::fmt::Debug for dirent {
1039 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1040 f.debug_struct("dirent")
1041 .field("d_ino", &self.d_ino)
1042 .field("d_off", &self.d_off)
1043 .field("d_reclen", &self.d_reclen)
1044 .field("d_type", &self.d_type)
1045 // FIXME: .field("d_name", &self.d_name)
1046 .finish()
1047 }
1048 }
1049
1050 impl ::hash::Hash for dirent {
1051 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1052 self.d_ino.hash(state);
1053 self.d_off.hash(state);
1054 self.d_reclen.hash(state);
1055 self.d_type.hash(state);
1056 self.d_name.hash(state);
1057 }
1058 }
1059
1060 impl PartialEq for sockaddr_un {
1061 fn eq(&self, other: &sockaddr_un) -> bool {
1062 self.sun_family == other.sun_family
1063 && self
1064 .sun_path
1065 .iter()
1066 .zip(other.sun_path.iter())
1067 .all(|(a,b)| a == b)
1068 }
1069 }
1070
1071 impl Eq for sockaddr_un {}
1072
1073 impl ::fmt::Debug for sockaddr_un {
1074 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1075 f.debug_struct("sockaddr_un")
1076 .field("sun_family", &self.sun_family)
1077 // FIXME: .field("sun_path", &self.sun_path)
1078 .finish()
1079 }
1080 }
1081
1082 impl ::hash::Hash for sockaddr_un {
1083 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1084 self.sun_family.hash(state);
1085 self.sun_path.hash(state);
1086 }
1087 }
1088
1089 impl PartialEq for sockaddr_storage {
1090 fn eq(&self, other: &sockaddr_storage) -> bool {
1091 self.ss_family == other.ss_family
1092 && self.__ss_align == self.__ss_align
1093 && self
1094 .__ss_padding
1095 .iter()
1096 .zip(other.__ss_padding.iter())
1097 .all(|(a,b)| a == b)
1098 }
1099 }
1100
1101 impl Eq for sockaddr_storage {}
1102
1103 impl ::fmt::Debug for sockaddr_storage {
1104 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1105 f.debug_struct("sockaddr_storage")
1106 .field("ss_family", &self.ss_family)
1107 .field("__ss_align", &self.__ss_align)
1108 // FIXME: .field("__ss_padding", &self.__ss_padding)
1109 .finish()
1110 }
1111 }
1112
1113 impl ::hash::Hash for sockaddr_storage {
1114 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1115 self.ss_family.hash(state);
1116 self.__ss_padding.hash(state);
1117 self.__ss_align.hash(state);
1118 }
1119 }
1120
1121 impl PartialEq for utsname {
1122 fn eq(&self, other: &utsname) -> bool {
1123 self.sysname
1124 .iter()
1125 .zip(other.sysname.iter())
1126 .all(|(a, b)| a == b)
1127 && self
1128 .nodename
1129 .iter()
1130 .zip(other.nodename.iter())
1131 .all(|(a, b)| a == b)
1132 && self
1133 .release
1134 .iter()
1135 .zip(other.release.iter())
1136 .all(|(a, b)| a == b)
1137 && self
1138 .version
1139 .iter()
1140 .zip(other.version.iter())
1141 .all(|(a, b)| a == b)
1142 && self
1143 .machine
1144 .iter()
1145 .zip(other.machine.iter())
1146 .all(|(a, b)| a == b)
1147 && self
1148 .domainname
1149 .iter()
1150 .zip(other.domainname.iter())
1151 .all(|(a, b)| a == b)
1152 }
1153 }
1154
1155 impl Eq for utsname {}
1156
1157 impl ::fmt::Debug for utsname {
1158 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
1159 f.debug_struct("utsname")
1160 // FIXME: .field("sysname", &self.sysname)
1161 // FIXME: .field("nodename", &self.nodename)
1162 // FIXME: .field("release", &self.release)
1163 // FIXME: .field("version", &self.version)
1164 // FIXME: .field("machine", &self.machine)
1165 // FIXME: .field("domainname", &self.domainname)
1166 .finish()
1167 }
1168 }
1169
1170 impl ::hash::Hash for utsname {
1171 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
1172 self.sysname.hash(state);
1173 self.nodename.hash(state);
1174 self.release.hash(state);
1175 self.version.hash(state);
1176 self.machine.hash(state);
1177 self.domainname.hash(state);
1178 }
1179 }
1180 }
1181 }