1 pub type wchar_t = i32; 2 pub type time_t = i64; 3 pub type mode_t = u32; 4 pub type nlink_t = u32; 5 pub type ino_t = u64; 6 pub type pthread_key_t = ::c_int; 7 pub type rlim_t = u64; 8 pub type speed_t = ::c_uint; 9 pub type tcflag_t = ::c_uint; 10 pub type nl_item = c_long; 11 pub type clockid_t = ::c_int; 12 pub type id_t = u32; 13 pub type sem_t = *mut sem; 14 pub type key_t = c_long; 15 16 #[cfg_attr(feature = "extra_traits", derive(Debug))] 17 pub enum timezone {} 18 impl ::Copy for timezone {} 19 impl ::Clone for timezone { clone(&self) -> timezone20 fn clone(&self) -> timezone { 21 *self 22 } 23 } 24 #[cfg_attr(feature = "extra_traits", derive(Debug))] 25 pub enum sem {} 26 impl ::Copy for sem {} 27 impl ::Clone for sem { clone(&self) -> sem28 fn clone(&self) -> sem { 29 *self 30 } 31 } 32 33 s! { 34 pub struct sched_param { 35 pub sched_priority: ::c_int, 36 } 37 38 pub struct sigaction { 39 pub sa_sigaction: ::sighandler_t, 40 pub sa_mask: ::sigset_t, 41 pub sa_flags: ::c_int, 42 } 43 44 pub struct stack_t { 45 pub ss_sp: *mut ::c_void, 46 pub ss_size: ::size_t, 47 pub ss_flags: ::c_int, 48 } 49 50 pub struct in6_pktinfo { 51 pub ipi6_addr: ::in6_addr, 52 pub ipi6_ifindex: ::c_uint, 53 } 54 55 pub struct termios { 56 pub c_iflag: ::tcflag_t, 57 pub c_oflag: ::tcflag_t, 58 pub c_cflag: ::tcflag_t, 59 pub c_lflag: ::tcflag_t, 60 pub c_cc: [::cc_t; ::NCCS], 61 pub c_ispeed: ::c_int, 62 pub c_ospeed: ::c_int, 63 } 64 65 pub struct flock { 66 pub l_start: ::off_t, 67 pub l_len: ::off_t, 68 pub l_pid: ::pid_t, 69 pub l_type: ::c_short, 70 pub l_whence: ::c_short, 71 } 72 73 pub struct ipc_perm { 74 pub cuid: ::uid_t, 75 pub cgid: ::gid_t, 76 pub uid: ::uid_t, 77 pub gid: ::gid_t, 78 pub mode: ::mode_t, 79 #[cfg(target_os = "openbsd")] 80 pub seq: ::c_ushort, 81 #[cfg(target_os = "netbsd")] 82 pub _seq: ::c_ushort, 83 #[cfg(target_os = "openbsd")] 84 pub key: ::key_t, 85 #[cfg(target_os = "netbsd")] 86 pub _key: ::key_t, 87 } 88 89 pub struct ptrace_io_desc { 90 pub piod_op: ::c_int, 91 pub piod_offs: *mut ::c_void, 92 pub piod_addr: *mut ::c_void, 93 pub piod_len: ::size_t, 94 } 95 } 96 97 pub const D_T_FMT: ::nl_item = 0; 98 pub const D_FMT: ::nl_item = 1; 99 pub const T_FMT: ::nl_item = 2; 100 pub const T_FMT_AMPM: ::nl_item = 3; 101 pub const AM_STR: ::nl_item = 4; 102 pub const PM_STR: ::nl_item = 5; 103 104 pub const DAY_1: ::nl_item = 6; 105 pub const DAY_2: ::nl_item = 7; 106 pub const DAY_3: ::nl_item = 8; 107 pub const DAY_4: ::nl_item = 9; 108 pub const DAY_5: ::nl_item = 10; 109 pub const DAY_6: ::nl_item = 11; 110 pub const DAY_7: ::nl_item = 12; 111 112 pub const ABDAY_1: ::nl_item = 13; 113 pub const ABDAY_2: ::nl_item = 14; 114 pub const ABDAY_3: ::nl_item = 15; 115 pub const ABDAY_4: ::nl_item = 16; 116 pub const ABDAY_5: ::nl_item = 17; 117 pub const ABDAY_6: ::nl_item = 18; 118 pub const ABDAY_7: ::nl_item = 19; 119 120 pub const MON_1: ::nl_item = 20; 121 pub const MON_2: ::nl_item = 21; 122 pub const MON_3: ::nl_item = 22; 123 pub const MON_4: ::nl_item = 23; 124 pub const MON_5: ::nl_item = 24; 125 pub const MON_6: ::nl_item = 25; 126 pub const MON_7: ::nl_item = 26; 127 pub const MON_8: ::nl_item = 27; 128 pub const MON_9: ::nl_item = 28; 129 pub const MON_10: ::nl_item = 29; 130 pub const MON_11: ::nl_item = 30; 131 pub const MON_12: ::nl_item = 31; 132 133 pub const ABMON_1: ::nl_item = 32; 134 pub const ABMON_2: ::nl_item = 33; 135 pub const ABMON_3: ::nl_item = 34; 136 pub const ABMON_4: ::nl_item = 35; 137 pub const ABMON_5: ::nl_item = 36; 138 pub const ABMON_6: ::nl_item = 37; 139 pub const ABMON_7: ::nl_item = 38; 140 pub const ABMON_8: ::nl_item = 39; 141 pub const ABMON_9: ::nl_item = 40; 142 pub const ABMON_10: ::nl_item = 41; 143 pub const ABMON_11: ::nl_item = 42; 144 pub const ABMON_12: ::nl_item = 43; 145 146 pub const RADIXCHAR: ::nl_item = 44; 147 pub const THOUSEP: ::nl_item = 45; 148 pub const YESSTR: ::nl_item = 46; 149 pub const YESEXPR: ::nl_item = 47; 150 pub const NOSTR: ::nl_item = 48; 151 pub const NOEXPR: ::nl_item = 49; 152 pub const CRNCYSTR: ::nl_item = 50; 153 154 pub const CODESET: ::nl_item = 51; 155 156 pub const EXIT_FAILURE: ::c_int = 1; 157 pub const EXIT_SUCCESS: ::c_int = 0; 158 pub const RAND_MAX: ::c_int = 2147483647; 159 pub const EOF: ::c_int = -1; 160 pub const SEEK_SET: ::c_int = 0; 161 pub const SEEK_CUR: ::c_int = 1; 162 pub const SEEK_END: ::c_int = 2; 163 pub const _IOFBF: ::c_int = 0; 164 pub const _IONBF: ::c_int = 2; 165 pub const _IOLBF: ::c_int = 1; 166 pub const BUFSIZ: ::c_uint = 1024; 167 pub const FOPEN_MAX: ::c_uint = 20; 168 pub const FILENAME_MAX: ::c_uint = 1024; 169 pub const L_tmpnam: ::c_uint = 1024; 170 pub const O_NOCTTY: ::c_int = 32768; 171 pub const S_IFIFO: mode_t = 4096; 172 pub const S_IFCHR: mode_t = 8192; 173 pub const S_IFBLK: mode_t = 24576; 174 pub const S_IFDIR: mode_t = 16384; 175 pub const S_IFREG: mode_t = 32768; 176 pub const S_IFLNK: mode_t = 40960; 177 pub const S_IFSOCK: mode_t = 49152; 178 pub const S_IFMT: mode_t = 61440; 179 pub const S_IEXEC: mode_t = 64; 180 pub const S_IWRITE: mode_t = 128; 181 pub const S_IREAD: mode_t = 256; 182 pub const S_IRWXU: mode_t = 448; 183 pub const S_IXUSR: mode_t = 64; 184 pub const S_IWUSR: mode_t = 128; 185 pub const S_IRUSR: mode_t = 256; 186 pub const S_IRWXG: mode_t = 56; 187 pub const S_IXGRP: mode_t = 8; 188 pub const S_IWGRP: mode_t = 16; 189 pub const S_IRGRP: mode_t = 32; 190 pub const S_IRWXO: mode_t = 7; 191 pub const S_IXOTH: mode_t = 1; 192 pub const S_IWOTH: mode_t = 2; 193 pub const S_IROTH: mode_t = 4; 194 pub const F_OK: ::c_int = 0; 195 pub const R_OK: ::c_int = 4; 196 pub const W_OK: ::c_int = 2; 197 pub const X_OK: ::c_int = 1; 198 pub const STDIN_FILENO: ::c_int = 0; 199 pub const STDOUT_FILENO: ::c_int = 1; 200 pub const STDERR_FILENO: ::c_int = 2; 201 pub const F_LOCK: ::c_int = 1; 202 pub const F_TEST: ::c_int = 3; 203 pub const F_TLOCK: ::c_int = 2; 204 pub const F_ULOCK: ::c_int = 0; 205 pub const F_GETLK: ::c_int = 7; 206 pub const F_SETLK: ::c_int = 8; 207 pub const F_SETLKW: ::c_int = 9; 208 pub const SIGHUP: ::c_int = 1; 209 pub const SIGINT: ::c_int = 2; 210 pub const SIGQUIT: ::c_int = 3; 211 pub const SIGILL: ::c_int = 4; 212 pub const SIGABRT: ::c_int = 6; 213 pub const SIGEMT: ::c_int = 7; 214 pub const SIGFPE: ::c_int = 8; 215 pub const SIGKILL: ::c_int = 9; 216 pub const SIGSEGV: ::c_int = 11; 217 pub const SIGPIPE: ::c_int = 13; 218 pub const SIGALRM: ::c_int = 14; 219 pub const SIGTERM: ::c_int = 15; 220 221 pub const PROT_NONE: ::c_int = 0; 222 pub const PROT_READ: ::c_int = 1; 223 pub const PROT_WRITE: ::c_int = 2; 224 pub const PROT_EXEC: ::c_int = 4; 225 226 pub const MAP_FILE: ::c_int = 0x0000; 227 pub const MAP_SHARED: ::c_int = 0x0001; 228 pub const MAP_PRIVATE: ::c_int = 0x0002; 229 pub const MAP_FIXED: ::c_int = 0x0010; 230 pub const MAP_ANON: ::c_int = 0x1000; 231 pub const MAP_ANONYMOUS: ::c_int = MAP_ANON; 232 233 pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void; 234 235 pub const IPC_CREAT: ::c_int = 0o001000; 236 pub const IPC_EXCL: ::c_int = 0o002000; 237 pub const IPC_NOWAIT: ::c_int = 0o004000; 238 239 pub const IPC_PRIVATE: ::key_t = 0; 240 241 pub const IPC_RMID: ::c_int = 0; 242 pub const IPC_SET: ::c_int = 1; 243 pub const IPC_STAT: ::c_int = 2; 244 245 pub const IPC_R: ::c_int = 0o000400; 246 pub const IPC_W: ::c_int = 0o000200; 247 pub const IPC_M: ::c_int = 0o010000; 248 249 pub const SHM_R: ::c_int = IPC_R; 250 pub const SHM_W: ::c_int = IPC_W; 251 252 pub const MCL_CURRENT: ::c_int = 0x0001; 253 pub const MCL_FUTURE: ::c_int = 0x0002; 254 255 pub const MS_ASYNC: ::c_int = 0x0001; 256 257 pub const EPERM: ::c_int = 1; 258 pub const ENOENT: ::c_int = 2; 259 pub const ESRCH: ::c_int = 3; 260 pub const EINTR: ::c_int = 4; 261 pub const EIO: ::c_int = 5; 262 pub const ENXIO: ::c_int = 6; 263 pub const E2BIG: ::c_int = 7; 264 pub const ENOEXEC: ::c_int = 8; 265 pub const EBADF: ::c_int = 9; 266 pub const ECHILD: ::c_int = 10; 267 pub const EDEADLK: ::c_int = 11; 268 pub const ENOMEM: ::c_int = 12; 269 pub const EACCES: ::c_int = 13; 270 pub const EFAULT: ::c_int = 14; 271 pub const ENOTBLK: ::c_int = 15; 272 pub const EBUSY: ::c_int = 16; 273 pub const EEXIST: ::c_int = 17; 274 pub const EXDEV: ::c_int = 18; 275 pub const ENODEV: ::c_int = 19; 276 pub const ENOTDIR: ::c_int = 20; 277 pub const EISDIR: ::c_int = 21; 278 pub const EINVAL: ::c_int = 22; 279 pub const ENFILE: ::c_int = 23; 280 pub const EMFILE: ::c_int = 24; 281 pub const ENOTTY: ::c_int = 25; 282 pub const ETXTBSY: ::c_int = 26; 283 pub const EFBIG: ::c_int = 27; 284 pub const ENOSPC: ::c_int = 28; 285 pub const ESPIPE: ::c_int = 29; 286 pub const EROFS: ::c_int = 30; 287 pub const EMLINK: ::c_int = 31; 288 pub const EPIPE: ::c_int = 32; 289 pub const EDOM: ::c_int = 33; 290 pub const ERANGE: ::c_int = 34; 291 pub const EAGAIN: ::c_int = 35; 292 pub const EWOULDBLOCK: ::c_int = 35; 293 pub const EINPROGRESS: ::c_int = 36; 294 pub const EALREADY: ::c_int = 37; 295 pub const ENOTSOCK: ::c_int = 38; 296 pub const EDESTADDRREQ: ::c_int = 39; 297 pub const EMSGSIZE: ::c_int = 40; 298 pub const EPROTOTYPE: ::c_int = 41; 299 pub const ENOPROTOOPT: ::c_int = 42; 300 pub const EPROTONOSUPPORT: ::c_int = 43; 301 pub const ESOCKTNOSUPPORT: ::c_int = 44; 302 pub const EOPNOTSUPP: ::c_int = 45; 303 pub const EPFNOSUPPORT: ::c_int = 46; 304 pub const EAFNOSUPPORT: ::c_int = 47; 305 pub const EADDRINUSE: ::c_int = 48; 306 pub const EADDRNOTAVAIL: ::c_int = 49; 307 pub const ENETDOWN: ::c_int = 50; 308 pub const ENETUNREACH: ::c_int = 51; 309 pub const ENETRESET: ::c_int = 52; 310 pub const ECONNABORTED: ::c_int = 53; 311 pub const ECONNRESET: ::c_int = 54; 312 pub const ENOBUFS: ::c_int = 55; 313 pub const EISCONN: ::c_int = 56; 314 pub const ENOTCONN: ::c_int = 57; 315 pub const ESHUTDOWN: ::c_int = 58; 316 pub const ETOOMANYREFS: ::c_int = 59; 317 pub const ETIMEDOUT: ::c_int = 60; 318 pub const ECONNREFUSED: ::c_int = 61; 319 pub const ELOOP: ::c_int = 62; 320 pub const ENAMETOOLONG: ::c_int = 63; 321 pub const EHOSTDOWN: ::c_int = 64; 322 pub const EHOSTUNREACH: ::c_int = 65; 323 pub const ENOTEMPTY: ::c_int = 66; 324 pub const EPROCLIM: ::c_int = 67; 325 pub const EUSERS: ::c_int = 68; 326 pub const EDQUOT: ::c_int = 69; 327 pub const ESTALE: ::c_int = 70; 328 pub const EREMOTE: ::c_int = 71; 329 pub const EBADRPC: ::c_int = 72; 330 pub const ERPCMISMATCH: ::c_int = 73; 331 pub const EPROGUNAVAIL: ::c_int = 74; 332 pub const EPROGMISMATCH: ::c_int = 75; 333 pub const EPROCUNAVAIL: ::c_int = 76; 334 pub const ENOLCK: ::c_int = 77; 335 pub const ENOSYS: ::c_int = 78; 336 pub const EFTYPE: ::c_int = 79; 337 pub const EAUTH: ::c_int = 80; 338 pub const ENEEDAUTH: ::c_int = 81; 339 340 pub const F_DUPFD: ::c_int = 0; 341 pub const F_GETFD: ::c_int = 1; 342 pub const F_SETFD: ::c_int = 2; 343 pub const F_GETFL: ::c_int = 3; 344 pub const F_SETFL: ::c_int = 4; 345 346 pub const SIGTRAP: ::c_int = 5; 347 348 pub const GLOB_APPEND: ::c_int = 0x0001; 349 pub const GLOB_DOOFFS: ::c_int = 0x0002; 350 pub const GLOB_ERR: ::c_int = 0x0004; 351 pub const GLOB_MARK: ::c_int = 0x0008; 352 pub const GLOB_NOCHECK: ::c_int = 0x0010; 353 pub const GLOB_NOSORT: ::c_int = 0x0020; 354 pub const GLOB_NOESCAPE: ::c_int = 0x1000; 355 356 pub const GLOB_NOSPACE: ::c_int = -1; 357 pub const GLOB_ABORTED: ::c_int = -2; 358 pub const GLOB_NOMATCH: ::c_int = -3; 359 pub const GLOB_NOSYS: ::c_int = -4; 360 361 pub const POSIX_MADV_NORMAL: ::c_int = 0; 362 pub const POSIX_MADV_RANDOM: ::c_int = 1; 363 pub const POSIX_MADV_SEQUENTIAL: ::c_int = 2; 364 pub const POSIX_MADV_WILLNEED: ::c_int = 3; 365 pub const POSIX_MADV_DONTNEED: ::c_int = 4; 366 367 pub const POSIX_SPAWN_RESETIDS: ::c_int = 0x01; 368 pub const POSIX_SPAWN_SETPGROUP: ::c_int = 0x02; 369 pub const POSIX_SPAWN_SETSCHEDPARAM: ::c_int = 0x04; 370 pub const POSIX_SPAWN_SETSCHEDULER: ::c_int = 0x08; 371 pub const POSIX_SPAWN_SETSIGDEF: ::c_int = 0x10; 372 pub const POSIX_SPAWN_SETSIGMASK: ::c_int = 0x20; 373 374 pub const PTHREAD_CREATE_JOINABLE: ::c_int = 0; 375 pub const PTHREAD_CREATE_DETACHED: ::c_int = 1; 376 377 pub const PIOD_READ_D: ::c_int = 1; 378 pub const PIOD_WRITE_D: ::c_int = 2; 379 pub const PIOD_READ_I: ::c_int = 3; 380 pub const PIOD_WRITE_I: ::c_int = 4; 381 pub const PIOD_READ_AUXV: ::c_int = 5; 382 383 pub const PT_TRACE_ME: ::c_int = 0; 384 pub const PT_READ_I: ::c_int = 1; 385 pub const PT_READ_D: ::c_int = 2; 386 pub const PT_WRITE_I: ::c_int = 4; 387 pub const PT_WRITE_D: ::c_int = 5; 388 pub const PT_CONTINUE: ::c_int = 7; 389 pub const PT_KILL: ::c_int = 8; 390 pub const PT_ATTACH: ::c_int = 9; 391 pub const PT_DETACH: ::c_int = 10; 392 pub const PT_IO: ::c_int = 11; 393 394 // http://man.openbsd.org/OpenBSD-current/man2/clock_getres.2 395 // The man page says clock_gettime(3) can accept various values as clockid_t but 396 // http://fxr.watson.org/fxr/source/kern/kern_time.c?v=OPENBSD;im=excerpts#L161 397 // the implementation rejects anything other than the below two 398 // 399 // http://netbsd.gw.com/cgi-bin/man-cgi?clock_gettime 400 // https://github.com/jsonn/src/blob/HEAD/sys/kern/subr_time.c#L222 401 // Basically the same goes for NetBSD 402 pub const CLOCK_REALTIME: ::clockid_t = 0; 403 pub const CLOCK_MONOTONIC: ::clockid_t = 3; 404 405 pub const RLIMIT_CPU: ::c_int = 0; 406 pub const RLIMIT_FSIZE: ::c_int = 1; 407 pub const RLIMIT_DATA: ::c_int = 2; 408 pub const RLIMIT_STACK: ::c_int = 3; 409 pub const RLIMIT_CORE: ::c_int = 4; 410 pub const RLIMIT_RSS: ::c_int = 5; 411 pub const RLIMIT_MEMLOCK: ::c_int = 6; 412 pub const RLIMIT_NPROC: ::c_int = 7; 413 pub const RLIMIT_NOFILE: ::c_int = 8; 414 415 pub const RLIM_INFINITY: rlim_t = 0x7fff_ffff_ffff_ffff; 416 pub const RLIM_SAVED_MAX: rlim_t = RLIM_INFINITY; 417 pub const RLIM_SAVED_CUR: rlim_t = RLIM_INFINITY; 418 419 pub const RUSAGE_SELF: ::c_int = 0; 420 pub const RUSAGE_CHILDREN: ::c_int = -1; 421 422 pub const MADV_NORMAL: ::c_int = 0; 423 pub const MADV_RANDOM: ::c_int = 1; 424 pub const MADV_SEQUENTIAL: ::c_int = 2; 425 pub const MADV_WILLNEED: ::c_int = 3; 426 pub const MADV_DONTNEED: ::c_int = 4; 427 pub const MADV_FREE: ::c_int = 6; 428 429 // sys/fstypes.h in NetBSD, or sys/mount.h in OpenBSD 430 pub const MNT_NODEV: ::c_int = 0x00000010; 431 pub const MNT_LOCAL: ::c_int = 0x00001000; 432 pub const MNT_QUOTA: ::c_int = 0x00002000; 433 434 pub const AF_UNSPEC: ::c_int = 0; 435 pub const AF_LOCAL: ::c_int = 1; 436 pub const AF_UNIX: ::c_int = AF_LOCAL; 437 pub const AF_INET: ::c_int = 2; 438 pub const AF_IMPLINK: ::c_int = 3; 439 pub const AF_PUP: ::c_int = 4; 440 pub const AF_CHAOS: ::c_int = 5; 441 pub const AF_NS: ::c_int = 6; 442 pub const AF_ISO: ::c_int = 7; 443 pub const AF_OSI: ::c_int = AF_ISO; 444 pub const AF_DATAKIT: ::c_int = 9; 445 pub const AF_CCITT: ::c_int = 10; 446 pub const AF_SNA: ::c_int = 11; 447 pub const AF_DECnet: ::c_int = 12; 448 pub const AF_DLI: ::c_int = 13; 449 pub const AF_LAT: ::c_int = 14; 450 pub const AF_HYLINK: ::c_int = 15; 451 pub const AF_APPLETALK: ::c_int = 16; 452 pub const AF_LINK: ::c_int = 18; 453 pub const pseudo_AF_XTP: ::c_int = 19; 454 pub const AF_COIP: ::c_int = 20; 455 pub const AF_CNT: ::c_int = 21; 456 pub const pseudo_AF_RTIP: ::c_int = 22; 457 pub const AF_IPX: ::c_int = 23; 458 pub const AF_INET6: ::c_int = 24; 459 pub const pseudo_AF_PIP: ::c_int = 25; 460 pub const AF_ISDN: ::c_int = 26; 461 pub const AF_E164: ::c_int = AF_ISDN; 462 pub const AF_NATM: ::c_int = 27; 463 464 pub const PF_UNSPEC: ::c_int = AF_UNSPEC; 465 pub const PF_LOCAL: ::c_int = AF_LOCAL; 466 pub const PF_UNIX: ::c_int = PF_LOCAL; 467 pub const PF_INET: ::c_int = AF_INET; 468 pub const PF_IMPLINK: ::c_int = AF_IMPLINK; 469 pub const PF_PUP: ::c_int = AF_PUP; 470 pub const PF_CHAOS: ::c_int = AF_CHAOS; 471 pub const PF_NS: ::c_int = AF_NS; 472 pub const PF_ISO: ::c_int = AF_ISO; 473 pub const PF_OSI: ::c_int = AF_ISO; 474 pub const PF_DATAKIT: ::c_int = AF_DATAKIT; 475 pub const PF_CCITT: ::c_int = AF_CCITT; 476 pub const PF_SNA: ::c_int = AF_SNA; 477 pub const PF_DECnet: ::c_int = AF_DECnet; 478 pub const PF_DLI: ::c_int = AF_DLI; 479 pub const PF_LAT: ::c_int = AF_LAT; 480 pub const PF_HYLINK: ::c_int = AF_HYLINK; 481 pub const PF_APPLETALK: ::c_int = AF_APPLETALK; 482 pub const PF_LINK: ::c_int = AF_LINK; 483 pub const PF_XTP: ::c_int = pseudo_AF_XTP; 484 pub const PF_COIP: ::c_int = AF_COIP; 485 pub const PF_CNT: ::c_int = AF_CNT; 486 pub const PF_IPX: ::c_int = AF_IPX; 487 pub const PF_INET6: ::c_int = AF_INET6; 488 pub const PF_RTIP: ::c_int = pseudo_AF_RTIP; 489 pub const PF_PIP: ::c_int = pseudo_AF_PIP; 490 pub const PF_ISDN: ::c_int = AF_ISDN; 491 pub const PF_NATM: ::c_int = AF_NATM; 492 493 pub const SOCK_STREAM: ::c_int = 1; 494 pub const SOCK_DGRAM: ::c_int = 2; 495 pub const SOCK_RAW: ::c_int = 3; 496 pub const SOCK_RDM: ::c_int = 4; 497 pub const SOCK_SEQPACKET: ::c_int = 5; 498 pub const IP_TTL: ::c_int = 4; 499 pub const IP_HDRINCL: ::c_int = 2; 500 pub const IP_ADD_MEMBERSHIP: ::c_int = 12; 501 pub const IP_DROP_MEMBERSHIP: ::c_int = 13; 502 pub const IPV6_RECVPKTINFO: ::c_int = 36; 503 pub const IPV6_PKTINFO: ::c_int = 46; 504 pub const IPV6_RECVTCLASS: ::c_int = 57; 505 pub const IPV6_TCLASS: ::c_int = 61; 506 507 pub const SOL_SOCKET: ::c_int = 0xffff; 508 pub const SO_DEBUG: ::c_int = 0x01; 509 pub const SO_ACCEPTCONN: ::c_int = 0x0002; 510 pub const SO_REUSEADDR: ::c_int = 0x0004; 511 pub const SO_KEEPALIVE: ::c_int = 0x0008; 512 pub const SO_DONTROUTE: ::c_int = 0x0010; 513 pub const SO_BROADCAST: ::c_int = 0x0020; 514 pub const SO_USELOOPBACK: ::c_int = 0x0040; 515 pub const SO_LINGER: ::c_int = 0x0080; 516 pub const SO_OOBINLINE: ::c_int = 0x0100; 517 pub const SO_REUSEPORT: ::c_int = 0x0200; 518 pub const SO_SNDBUF: ::c_int = 0x1001; 519 pub const SO_RCVBUF: ::c_int = 0x1002; 520 pub const SO_SNDLOWAT: ::c_int = 0x1003; 521 pub const SO_RCVLOWAT: ::c_int = 0x1004; 522 pub const SO_ERROR: ::c_int = 0x1007; 523 pub const SO_TYPE: ::c_int = 0x1008; 524 525 pub const SOMAXCONN: ::c_int = 128; 526 527 pub const MSG_OOB: ::c_int = 0x1; 528 pub const MSG_PEEK: ::c_int = 0x2; 529 pub const MSG_DONTROUTE: ::c_int = 0x4; 530 pub const MSG_EOR: ::c_int = 0x8; 531 pub const MSG_TRUNC: ::c_int = 0x10; 532 pub const MSG_CTRUNC: ::c_int = 0x20; 533 pub const MSG_WAITALL: ::c_int = 0x40; 534 pub const MSG_DONTWAIT: ::c_int = 0x80; 535 pub const MSG_BCAST: ::c_int = 0x100; 536 pub const MSG_MCAST: ::c_int = 0x200; 537 pub const MSG_NOSIGNAL: ::c_int = 0x400; 538 pub const MSG_CMSG_CLOEXEC: ::c_int = 0x800; 539 540 pub const SHUT_RD: ::c_int = 0; 541 pub const SHUT_WR: ::c_int = 1; 542 pub const SHUT_RDWR: ::c_int = 2; 543 544 pub const LOCK_SH: ::c_int = 1; 545 pub const LOCK_EX: ::c_int = 2; 546 pub const LOCK_NB: ::c_int = 4; 547 pub const LOCK_UN: ::c_int = 8; 548 549 pub const IPPROTO_RAW: ::c_int = 255; 550 551 pub const _SC_ARG_MAX: ::c_int = 1; 552 pub const _SC_CHILD_MAX: ::c_int = 2; 553 pub const _SC_NGROUPS_MAX: ::c_int = 4; 554 pub const _SC_OPEN_MAX: ::c_int = 5; 555 pub const _SC_JOB_CONTROL: ::c_int = 6; 556 pub const _SC_SAVED_IDS: ::c_int = 7; 557 pub const _SC_VERSION: ::c_int = 8; 558 pub const _SC_BC_BASE_MAX: ::c_int = 9; 559 pub const _SC_BC_DIM_MAX: ::c_int = 10; 560 pub const _SC_BC_SCALE_MAX: ::c_int = 11; 561 pub const _SC_BC_STRING_MAX: ::c_int = 12; 562 pub const _SC_COLL_WEIGHTS_MAX: ::c_int = 13; 563 pub const _SC_EXPR_NEST_MAX: ::c_int = 14; 564 pub const _SC_LINE_MAX: ::c_int = 15; 565 pub const _SC_RE_DUP_MAX: ::c_int = 16; 566 pub const _SC_2_VERSION: ::c_int = 17; 567 pub const _SC_2_C_BIND: ::c_int = 18; 568 pub const _SC_2_C_DEV: ::c_int = 19; 569 pub const _SC_2_CHAR_TERM: ::c_int = 20; 570 pub const _SC_2_FORT_DEV: ::c_int = 21; 571 pub const _SC_2_FORT_RUN: ::c_int = 22; 572 pub const _SC_2_LOCALEDEF: ::c_int = 23; 573 pub const _SC_2_SW_DEV: ::c_int = 24; 574 pub const _SC_2_UPE: ::c_int = 25; 575 pub const _SC_STREAM_MAX: ::c_int = 26; 576 pub const _SC_TZNAME_MAX: ::c_int = 27; 577 pub const _SC_PAGESIZE: ::c_int = 28; 578 pub const _SC_PAGE_SIZE: ::c_int = _SC_PAGESIZE; 579 pub const _SC_FSYNC: ::c_int = 29; 580 pub const _SC_XOPEN_SHM: ::c_int = 30; 581 582 pub const Q_GETQUOTA: ::c_int = 0x300; 583 pub const Q_SETQUOTA: ::c_int = 0x400; 584 585 pub const RTLD_GLOBAL: ::c_int = 0x100; 586 587 pub const LOG_NFACILITIES: ::c_int = 24; 588 589 pub const HW_NCPU: ::c_int = 3; 590 591 pub const B0: speed_t = 0; 592 pub const B50: speed_t = 50; 593 pub const B75: speed_t = 75; 594 pub const B110: speed_t = 110; 595 pub const B134: speed_t = 134; 596 pub const B150: speed_t = 150; 597 pub const B200: speed_t = 200; 598 pub const B300: speed_t = 300; 599 pub const B600: speed_t = 600; 600 pub const B1200: speed_t = 1200; 601 pub const B1800: speed_t = 1800; 602 pub const B2400: speed_t = 2400; 603 pub const B4800: speed_t = 4800; 604 pub const B9600: speed_t = 9600; 605 pub const B19200: speed_t = 19200; 606 pub const B38400: speed_t = 38400; 607 pub const B7200: speed_t = 7200; 608 pub const B14400: speed_t = 14400; 609 pub const B28800: speed_t = 28800; 610 pub const B57600: speed_t = 57600; 611 pub const B76800: speed_t = 76800; 612 pub const B115200: speed_t = 115200; 613 pub const B230400: speed_t = 230400; 614 pub const EXTA: speed_t = 19200; 615 pub const EXTB: speed_t = 38400; 616 617 pub const SEM_FAILED: *mut sem_t = 0 as *mut sem_t; 618 619 pub const CRTSCTS: ::tcflag_t = 0x00010000; 620 pub const CRTS_IFLOW: ::tcflag_t = CRTSCTS; 621 pub const CCTS_OFLOW: ::tcflag_t = CRTSCTS; 622 pub const OCRNL: ::tcflag_t = 0x10; 623 624 pub const TIOCEXCL: ::c_ulong = 0x2000740d; 625 pub const TIOCNXCL: ::c_ulong = 0x2000740e; 626 pub const TIOCFLUSH: ::c_ulong = 0x80047410; 627 pub const TIOCGETA: ::c_ulong = 0x402c7413; 628 pub const TIOCSETA: ::c_ulong = 0x802c7414; 629 pub const TIOCSETAW: ::c_ulong = 0x802c7415; 630 pub const TIOCSETAF: ::c_ulong = 0x802c7416; 631 pub const TIOCGETD: ::c_ulong = 0x4004741a; 632 pub const TIOCSETD: ::c_ulong = 0x8004741b; 633 pub const TIOCMGET: ::c_ulong = 0x4004746a; 634 pub const TIOCMBIC: ::c_ulong = 0x8004746b; 635 pub const TIOCMBIS: ::c_ulong = 0x8004746c; 636 pub const TIOCMSET: ::c_ulong = 0x8004746d; 637 pub const TIOCSTART: ::c_ulong = 0x2000746e; 638 pub const TIOCSTOP: ::c_ulong = 0x2000746f; 639 pub const TIOCSCTTY: ::c_ulong = 0x20007461; 640 pub const TIOCGWINSZ: ::c_ulong = 0x40087468; 641 pub const TIOCSWINSZ: ::c_ulong = 0x80087467; 642 pub const TIOCM_LE: ::c_int = 0o0001; 643 pub const TIOCM_DTR: ::c_int = 0o0002; 644 pub const TIOCM_RTS: ::c_int = 0o0004; 645 pub const TIOCM_ST: ::c_int = 0o0010; 646 pub const TIOCM_SR: ::c_int = 0o0020; 647 pub const TIOCM_CTS: ::c_int = 0o0040; 648 pub const TIOCM_CAR: ::c_int = 0o0100; 649 pub const TIOCM_RNG: ::c_int = 0o0200; 650 pub const TIOCM_DSR: ::c_int = 0o0400; 651 pub const TIOCM_CD: ::c_int = TIOCM_CAR; 652 pub const TIOCM_RI: ::c_int = TIOCM_RNG; 653 654 pub const TIMER_ABSTIME: ::c_int = 1; 655 656 // sys/reboot.h 657 658 pub const RB_AUTOBOOT: ::c_int = 0; 659 660 pub const TCP_INFO: ::c_int = 9; 661 662 #[link(name = "util")] 663 extern "C" { setgrent()664 pub fn setgrent(); sem_destroy(sem: *mut sem_t) -> ::c_int665 pub fn sem_destroy(sem: *mut sem_t) -> ::c_int; sem_init(sem: *mut sem_t, pshared: ::c_int, value: ::c_uint) -> ::c_int666 pub fn sem_init(sem: *mut sem_t, pshared: ::c_int, value: ::c_uint) -> ::c_int; 667 daemon(nochdir: ::c_int, noclose: ::c_int) -> ::c_int668 pub fn daemon(nochdir: ::c_int, noclose: ::c_int) -> ::c_int; accept4( s: ::c_int, addr: *mut ::sockaddr, addrlen: *mut ::socklen_t, flags: ::c_int, ) -> ::c_int669 pub fn accept4( 670 s: ::c_int, 671 addr: *mut ::sockaddr, 672 addrlen: *mut ::socklen_t, 673 flags: ::c_int, 674 ) -> ::c_int; mincore(addr: *mut ::c_void, len: ::size_t, vec: *mut ::c_char) -> ::c_int675 pub fn mincore(addr: *mut ::c_void, len: ::size_t, vec: *mut ::c_char) -> ::c_int; 676 #[cfg_attr(target_os = "netbsd", link_name = "__clock_getres50")] clock_getres(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int677 pub fn clock_getres(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int; 678 #[cfg_attr(target_os = "netbsd", link_name = "__clock_gettime50")] clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int679 pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int; 680 #[cfg_attr(target_os = "netbsd", link_name = "__clock_settime50")] clock_settime(clk_id: ::clockid_t, tp: *const ::timespec) -> ::c_int681 pub fn clock_settime(clk_id: ::clockid_t, tp: *const ::timespec) -> ::c_int; __errno() -> *mut ::c_int682 pub fn __errno() -> *mut ::c_int; shm_open(name: *const ::c_char, oflag: ::c_int, mode: ::mode_t) -> ::c_int683 pub fn shm_open(name: *const ::c_char, oflag: ::c_int, mode: ::mode_t) -> ::c_int; memrchr(cx: *const ::c_void, c: ::c_int, n: ::size_t) -> *mut ::c_void684 pub fn memrchr(cx: *const ::c_void, c: ::c_int, n: ::size_t) -> *mut ::c_void; mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int685 pub fn mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int; mkostemps(template: *mut ::c_char, suffixlen: ::c_int, flags: ::c_int) -> ::c_int686 pub fn mkostemps(template: *mut ::c_char, suffixlen: ::c_int, flags: ::c_int) -> ::c_int; pwritev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t) -> ::ssize_t687 pub fn pwritev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t) 688 -> ::ssize_t; preadv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t) -> ::ssize_t689 pub fn preadv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t) -> ::ssize_t; futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int690 pub fn futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int; utimensat( dirfd: ::c_int, path: *const ::c_char, times: *const ::timespec, flag: ::c_int, ) -> ::c_int691 pub fn utimensat( 692 dirfd: ::c_int, 693 path: *const ::c_char, 694 times: *const ::timespec, 695 flag: ::c_int, 696 ) -> ::c_int; fdatasync(fd: ::c_int) -> ::c_int697 pub fn fdatasync(fd: ::c_int) -> ::c_int; login_tty(fd: ::c_int) -> ::c_int698 pub fn login_tty(fd: ::c_int) -> ::c_int; getpriority(which: ::c_int, who: ::id_t) -> ::c_int699 pub fn getpriority(which: ::c_int, who: ::id_t) -> ::c_int; setpriority(which: ::c_int, who: ::id_t, prio: ::c_int) -> ::c_int700 pub fn setpriority(which: ::c_int, who: ::id_t, prio: ::c_int) -> ::c_int; 701 mknodat( dirfd: ::c_int, pathname: *const ::c_char, mode: ::mode_t, dev: dev_t, ) -> ::c_int702 pub fn mknodat( 703 dirfd: ::c_int, 704 pathname: *const ::c_char, 705 mode: ::mode_t, 706 dev: dev_t, 707 ) -> ::c_int; mkfifoat(dirfd: ::c_int, pathname: *const ::c_char, mode: ::mode_t) -> ::c_int708 pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_char, mode: ::mode_t) -> ::c_int; sem_timedwait(sem: *mut sem_t, abstime: *const ::timespec) -> ::c_int709 pub fn sem_timedwait(sem: *mut sem_t, abstime: *const ::timespec) -> ::c_int; sem_getvalue(sem: *mut sem_t, sval: *mut ::c_int) -> ::c_int710 pub fn sem_getvalue(sem: *mut sem_t, sval: *mut ::c_int) -> ::c_int; pthread_condattr_setclock( attr: *mut pthread_condattr_t, clock_id: ::clockid_t, ) -> ::c_int711 pub fn pthread_condattr_setclock( 712 attr: *mut pthread_condattr_t, 713 clock_id: ::clockid_t, 714 ) -> ::c_int; sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int715 pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int; pthread_mutex_timedlock( lock: *mut pthread_mutex_t, abstime: *const ::timespec, ) -> ::c_int716 pub fn pthread_mutex_timedlock( 717 lock: *mut pthread_mutex_t, 718 abstime: *const ::timespec, 719 ) -> ::c_int; pthread_spin_init(lock: *mut pthread_spinlock_t, pshared: ::c_int) -> ::c_int720 pub fn pthread_spin_init(lock: *mut pthread_spinlock_t, pshared: ::c_int) -> ::c_int; pthread_spin_destroy(lock: *mut pthread_spinlock_t) -> ::c_int721 pub fn pthread_spin_destroy(lock: *mut pthread_spinlock_t) -> ::c_int; pthread_spin_lock(lock: *mut pthread_spinlock_t) -> ::c_int722 pub fn pthread_spin_lock(lock: *mut pthread_spinlock_t) -> ::c_int; pthread_spin_trylock(lock: *mut pthread_spinlock_t) -> ::c_int723 pub fn pthread_spin_trylock(lock: *mut pthread_spinlock_t) -> ::c_int; pthread_spin_unlock(lock: *mut pthread_spinlock_t) -> ::c_int724 pub fn pthread_spin_unlock(lock: *mut pthread_spinlock_t) -> ::c_int; pthread_setschedparam( native: ::pthread_t, policy: ::c_int, param: *const sched_param, ) -> ::c_int725 pub fn pthread_setschedparam( 726 native: ::pthread_t, 727 policy: ::c_int, 728 param: *const sched_param, 729 ) -> ::c_int; pthread_getschedparam( native: ::pthread_t, policy: *mut ::c_int, param: *mut sched_param, ) -> ::c_int730 pub fn pthread_getschedparam( 731 native: ::pthread_t, 732 policy: *mut ::c_int, 733 param: *mut sched_param, 734 ) -> ::c_int; pipe2(fds: *mut ::c_int, flags: ::c_int) -> ::c_int735 pub fn pipe2(fds: *mut ::c_int, flags: ::c_int) -> ::c_int; 736 getgrouplist( name: *const ::c_char, basegid: ::gid_t, groups: *mut ::gid_t, ngroups: *mut ::c_int, ) -> ::c_int737 pub fn getgrouplist( 738 name: *const ::c_char, 739 basegid: ::gid_t, 740 groups: *mut ::gid_t, 741 ngroups: *mut ::c_int, 742 ) -> ::c_int; initgroups(name: *const ::c_char, basegid: ::gid_t) -> ::c_int743 pub fn initgroups(name: *const ::c_char, basegid: ::gid_t) -> ::c_int; getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int744 pub fn getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int; setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int745 pub fn setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int; uname(buf: *mut ::utsname) -> ::c_int746 pub fn uname(buf: *mut ::utsname) -> ::c_int; 747 shmget(key: ::key_t, size: ::size_t, shmflg: ::c_int) -> ::c_int748 pub fn shmget(key: ::key_t, size: ::size_t, shmflg: ::c_int) -> ::c_int; shmat(shmid: ::c_int, shmaddr: *const ::c_void, shmflg: ::c_int) -> *mut ::c_void749 pub fn shmat(shmid: ::c_int, shmaddr: *const ::c_void, shmflg: ::c_int) -> *mut ::c_void; shmdt(shmaddr: *const ::c_void) -> ::c_int750 pub fn shmdt(shmaddr: *const ::c_void) -> ::c_int; shmctl(shmid: ::c_int, cmd: ::c_int, buf: *mut ::shmid_ds) -> ::c_int751 pub fn shmctl(shmid: ::c_int, cmd: ::c_int, buf: *mut ::shmid_ds) -> ::c_int; execvpe( file: *const ::c_char, argv: *const *const ::c_char, envp: *const *const ::c_char, ) -> ::c_int752 pub fn execvpe( 753 file: *const ::c_char, 754 argv: *const *const ::c_char, 755 envp: *const *const ::c_char, 756 ) -> ::c_int; waitid( idtype: idtype_t, id: ::id_t, infop: *mut ::siginfo_t, options: ::c_int, ) -> ::c_int757 pub fn waitid( 758 idtype: idtype_t, 759 id: ::id_t, 760 infop: *mut ::siginfo_t, 761 options: ::c_int, 762 ) -> ::c_int; 763 posix_spawn( pid: *mut ::pid_t, path: *const ::c_char, file_actions: *const ::posix_spawn_file_actions_t, attrp: *const ::posix_spawnattr_t, argv: *const *mut ::c_char, envp: *const *mut ::c_char, ) -> ::c_int764 pub fn posix_spawn( 765 pid: *mut ::pid_t, 766 path: *const ::c_char, 767 file_actions: *const ::posix_spawn_file_actions_t, 768 attrp: *const ::posix_spawnattr_t, 769 argv: *const *mut ::c_char, 770 envp: *const *mut ::c_char, 771 ) -> ::c_int; posix_spawnp( pid: *mut ::pid_t, file: *const ::c_char, file_actions: *const ::posix_spawn_file_actions_t, attrp: *const ::posix_spawnattr_t, argv: *const *mut ::c_char, envp: *const *mut ::c_char, ) -> ::c_int772 pub fn posix_spawnp( 773 pid: *mut ::pid_t, 774 file: *const ::c_char, 775 file_actions: *const ::posix_spawn_file_actions_t, 776 attrp: *const ::posix_spawnattr_t, 777 argv: *const *mut ::c_char, 778 envp: *const *mut ::c_char, 779 ) -> ::c_int; posix_spawnattr_init(attr: *mut posix_spawnattr_t) -> ::c_int780 pub fn posix_spawnattr_init(attr: *mut posix_spawnattr_t) -> ::c_int; posix_spawnattr_destroy(attr: *mut posix_spawnattr_t) -> ::c_int781 pub fn posix_spawnattr_destroy(attr: *mut posix_spawnattr_t) -> ::c_int; posix_spawnattr_getsigdefault( attr: *const posix_spawnattr_t, default: *mut ::sigset_t, ) -> ::c_int782 pub fn posix_spawnattr_getsigdefault( 783 attr: *const posix_spawnattr_t, 784 default: *mut ::sigset_t, 785 ) -> ::c_int; posix_spawnattr_setsigdefault( attr: *mut posix_spawnattr_t, default: *const ::sigset_t, ) -> ::c_int786 pub fn posix_spawnattr_setsigdefault( 787 attr: *mut posix_spawnattr_t, 788 default: *const ::sigset_t, 789 ) -> ::c_int; posix_spawnattr_getsigmask( attr: *const posix_spawnattr_t, default: *mut ::sigset_t, ) -> ::c_int790 pub fn posix_spawnattr_getsigmask( 791 attr: *const posix_spawnattr_t, 792 default: *mut ::sigset_t, 793 ) -> ::c_int; posix_spawnattr_setsigmask( attr: *mut posix_spawnattr_t, default: *const ::sigset_t, ) -> ::c_int794 pub fn posix_spawnattr_setsigmask( 795 attr: *mut posix_spawnattr_t, 796 default: *const ::sigset_t, 797 ) -> ::c_int; posix_spawnattr_getflags( attr: *const posix_spawnattr_t, flags: *mut ::c_short, ) -> ::c_int798 pub fn posix_spawnattr_getflags( 799 attr: *const posix_spawnattr_t, 800 flags: *mut ::c_short, 801 ) -> ::c_int; posix_spawnattr_setflags(attr: *mut posix_spawnattr_t, flags: ::c_short) -> ::c_int802 pub fn posix_spawnattr_setflags(attr: *mut posix_spawnattr_t, flags: ::c_short) -> ::c_int; posix_spawnattr_getpgroup( attr: *const posix_spawnattr_t, flags: *mut ::pid_t, ) -> ::c_int803 pub fn posix_spawnattr_getpgroup( 804 attr: *const posix_spawnattr_t, 805 flags: *mut ::pid_t, 806 ) -> ::c_int; posix_spawnattr_setpgroup(attr: *mut posix_spawnattr_t, flags: ::pid_t) -> ::c_int807 pub fn posix_spawnattr_setpgroup(attr: *mut posix_spawnattr_t, flags: ::pid_t) -> ::c_int; posix_spawnattr_getschedpolicy( attr: *const posix_spawnattr_t, flags: *mut ::c_int, ) -> ::c_int808 pub fn posix_spawnattr_getschedpolicy( 809 attr: *const posix_spawnattr_t, 810 flags: *mut ::c_int, 811 ) -> ::c_int; posix_spawnattr_setschedpolicy(attr: *mut posix_spawnattr_t, flags: ::c_int) -> ::c_int812 pub fn posix_spawnattr_setschedpolicy(attr: *mut posix_spawnattr_t, flags: ::c_int) -> ::c_int; posix_spawnattr_getschedparam( attr: *const posix_spawnattr_t, param: *mut ::sched_param, ) -> ::c_int813 pub fn posix_spawnattr_getschedparam( 814 attr: *const posix_spawnattr_t, 815 param: *mut ::sched_param, 816 ) -> ::c_int; posix_spawnattr_setschedparam( attr: *mut posix_spawnattr_t, param: *const ::sched_param, ) -> ::c_int817 pub fn posix_spawnattr_setschedparam( 818 attr: *mut posix_spawnattr_t, 819 param: *const ::sched_param, 820 ) -> ::c_int; 821 posix_spawn_file_actions_init(actions: *mut posix_spawn_file_actions_t) -> ::c_int822 pub fn posix_spawn_file_actions_init(actions: *mut posix_spawn_file_actions_t) -> ::c_int; posix_spawn_file_actions_destroy(actions: *mut posix_spawn_file_actions_t) -> ::c_int823 pub fn posix_spawn_file_actions_destroy(actions: *mut posix_spawn_file_actions_t) -> ::c_int; posix_spawn_file_actions_addopen( actions: *mut posix_spawn_file_actions_t, fd: ::c_int, path: *const ::c_char, oflag: ::c_int, mode: ::mode_t, ) -> ::c_int824 pub fn posix_spawn_file_actions_addopen( 825 actions: *mut posix_spawn_file_actions_t, 826 fd: ::c_int, 827 path: *const ::c_char, 828 oflag: ::c_int, 829 mode: ::mode_t, 830 ) -> ::c_int; posix_spawn_file_actions_addclose( actions: *mut posix_spawn_file_actions_t, fd: ::c_int, ) -> ::c_int831 pub fn posix_spawn_file_actions_addclose( 832 actions: *mut posix_spawn_file_actions_t, 833 fd: ::c_int, 834 ) -> ::c_int; posix_spawn_file_actions_adddup2( actions: *mut posix_spawn_file_actions_t, fd: ::c_int, newfd: ::c_int, ) -> ::c_int835 pub fn posix_spawn_file_actions_adddup2( 836 actions: *mut posix_spawn_file_actions_t, 837 fd: ::c_int, 838 newfd: ::c_int, 839 ) -> ::c_int; 840 } 841 842 extern "C" { reallocarray(ptr: *mut ::c_void, nmemb: ::size_t, size: ::size_t) -> *mut ::c_void843 pub fn reallocarray(ptr: *mut ::c_void, nmemb: ::size_t, size: ::size_t) -> *mut ::c_void; gethostid() -> ::c_long844 pub fn gethostid() -> ::c_long; sethostid(hostid: ::c_long) -> ::c_int845 pub fn sethostid(hostid: ::c_long) -> ::c_int; ftok(path: *const ::c_char, id: ::c_int) -> ::key_t846 pub fn ftok(path: *const ::c_char, id: ::c_int) -> ::key_t; 847 dirname(path: *mut ::c_char) -> *mut ::c_char848 pub fn dirname(path: *mut ::c_char) -> *mut ::c_char; basename(path: *mut ::c_char) -> *mut ::c_char849 pub fn basename(path: *mut ::c_char) -> *mut ::c_char; getentropy(buf: *mut ::c_void, buflen: ::size_t) -> ::c_int850 pub fn getentropy(buf: *mut ::c_void, buflen: ::size_t) -> ::c_int; 851 } 852 853 cfg_if! { 854 if #[cfg(target_os = "netbsd")] { 855 mod netbsd; 856 pub use self::netbsd::*; 857 } else if #[cfg(target_os = "openbsd")] { 858 mod openbsd; 859 pub use self::openbsd::*; 860 } else { 861 // Unknown target_os 862 } 863 } 864