Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 1 | //! Definitions found commonly among almost all Unix derivatives |
| 2 | //! |
| 3 | //! More functions and definitions can be found in the more specific modules |
| 4 | //! according to the platform in question. |
| 5 | |
| 6 | use dox::{mem, Option}; |
| 7 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 8 | // PUB_TYPE |
| 9 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 10 | pub type pid_t = i32; |
| 11 | pub type uid_t = u32; |
| 12 | pub type gid_t = u32; |
| 13 | pub type in_addr_t = u32; |
| 14 | pub type in_port_t = u16; |
| 15 | pub type sighandler_t = ::size_t; |
| 16 | pub type cc_t = ::c_uchar; |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 17 | pub type sa_family_t = u16; |
| 18 | pub type pthread_key_t = ::c_uint; |
| 19 | pub type speed_t = ::c_uint; |
| 20 | pub type tcflag_t = ::c_uint; |
| 21 | pub type clockid_t = ::c_int; |
| 22 | pub type key_t = ::c_int; |
| 23 | pub type id_t = ::c_uint; |
| 24 | pub type useconds_t = u32; |
| 25 | pub type dev_t = u64; |
| 26 | pub type socklen_t = u32; |
| 27 | pub type pthread_t = c_ulong; |
| 28 | pub type mode_t = u32; |
| 29 | pub type ino64_t = u64; |
| 30 | pub type off64_t = i64; |
| 31 | pub type blkcnt64_t = i64; |
| 32 | pub type rlim64_t = u64; |
| 33 | pub type mqd_t = ::c_int; |
| 34 | pub type nfds_t = ::c_ulong; |
| 35 | pub type nl_item = ::c_int; |
| 36 | pub type idtype_t = ::c_uint; |
| 37 | pub type loff_t = ::c_longlong; |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 38 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 39 | pub type __u8 = ::c_uchar; |
| 40 | pub type __u16 = ::c_ushort; |
| 41 | pub type __s16 = ::c_short; |
| 42 | pub type __u32 = ::c_uint; |
| 43 | pub type __s32 = ::c_int; |
| 44 | |
| 45 | pub type Elf32_Half = u16; |
| 46 | pub type Elf32_Word = u32; |
| 47 | pub type Elf32_Off = u32; |
| 48 | pub type Elf32_Addr = u32; |
| 49 | |
| 50 | pub type Elf64_Half = u16; |
| 51 | pub type Elf64_Word = u32; |
| 52 | pub type Elf64_Off = u64; |
| 53 | pub type Elf64_Addr = u64; |
| 54 | pub type Elf64_Xword = u64; |
| 55 | |
| 56 | pub type clock_t = c_long; |
| 57 | pub type time_t = c_long; |
| 58 | pub type suseconds_t = c_long; |
| 59 | pub type ino_t = u64; |
| 60 | pub type off_t = i64; |
| 61 | pub type blkcnt_t = i64; |
| 62 | |
| 63 | pub type shmatt_t = ::c_ulong; |
| 64 | pub type msgqnum_t = ::c_ulong; |
| 65 | pub type msglen_t = ::c_ulong; |
| 66 | pub type fsblkcnt_t = ::c_ulonglong; |
| 67 | pub type fsfilcnt_t = ::c_ulonglong; |
| 68 | pub type rlim_t = ::c_ulonglong; |
| 69 | |
| 70 | pub type c_long = i64; |
| 71 | pub type c_ulong = u64; |
| 72 | |
| 73 | // FIXME: why are these uninhabited types? that seems... wrong? |
| 74 | // Presumably these should be `()` or an `extern type` (when that stabilizes). |
| 75 | pub enum timezone {} |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 76 | pub enum DIR {} |
| 77 | pub enum locale_t {} |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 78 | pub enum fpos64_t {} // TODO: fill this out with a struct |
| 79 | |
| 80 | // PUB_STRUCT |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 81 | |
| 82 | s! { |
| 83 | pub struct group { |
| 84 | pub gr_name: *mut ::c_char, |
| 85 | pub gr_passwd: *mut ::c_char, |
| 86 | pub gr_gid: ::gid_t, |
| 87 | pub gr_mem: *mut *mut ::c_char, |
| 88 | } |
| 89 | |
| 90 | pub struct utimbuf { |
| 91 | pub actime: time_t, |
| 92 | pub modtime: time_t, |
| 93 | } |
| 94 | |
| 95 | pub struct timeval { |
| 96 | pub tv_sec: time_t, |
| 97 | pub tv_usec: suseconds_t, |
| 98 | } |
| 99 | |
| 100 | // linux x32 compatibility |
| 101 | // See https://sourceware.org/bugzilla/show_bug.cgi?id=16437 |
| 102 | pub struct timespec { |
| 103 | pub tv_sec: time_t, |
| 104 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 105 | pub tv_nsec: i64, |
| 106 | #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))] |
| 107 | pub tv_nsec: ::c_long, |
| 108 | } |
| 109 | |
| 110 | pub struct rlimit { |
| 111 | pub rlim_cur: rlim_t, |
| 112 | pub rlim_max: rlim_t, |
| 113 | } |
| 114 | |
| 115 | pub struct rusage { |
| 116 | pub ru_utime: timeval, |
| 117 | pub ru_stime: timeval, |
| 118 | pub ru_maxrss: c_long, |
| 119 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 120 | __pad1: u32, |
| 121 | pub ru_ixrss: c_long, |
| 122 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 123 | __pad2: u32, |
| 124 | pub ru_idrss: c_long, |
| 125 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 126 | __pad3: u32, |
| 127 | pub ru_isrss: c_long, |
| 128 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 129 | __pad4: u32, |
| 130 | pub ru_minflt: c_long, |
| 131 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 132 | __pad5: u32, |
| 133 | pub ru_majflt: c_long, |
| 134 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 135 | __pad6: u32, |
| 136 | pub ru_nswap: c_long, |
| 137 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 138 | __pad7: u32, |
| 139 | pub ru_inblock: c_long, |
| 140 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 141 | __pad8: u32, |
| 142 | pub ru_oublock: c_long, |
| 143 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 144 | __pad9: u32, |
| 145 | pub ru_msgsnd: c_long, |
| 146 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 147 | __pad10: u32, |
| 148 | pub ru_msgrcv: c_long, |
| 149 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 150 | __pad11: u32, |
| 151 | pub ru_nsignals: c_long, |
| 152 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 153 | __pad12: u32, |
| 154 | pub ru_nvcsw: c_long, |
| 155 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 156 | __pad13: u32, |
| 157 | pub ru_nivcsw: c_long, |
| 158 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 159 | __pad14: u32, |
| 160 | |
| 161 | #[cfg(any(target_env = "musl", target_os = "emscripten"))] |
| 162 | __reserved: [c_long; 16], |
| 163 | } |
| 164 | |
| 165 | pub struct in_addr { |
| 166 | pub s_addr: in_addr_t, |
| 167 | } |
| 168 | |
| 169 | pub struct in6_addr { |
| 170 | pub s6_addr: [u8; 16], |
| 171 | __align: [u32; 0], |
| 172 | } |
| 173 | |
| 174 | pub struct ip_mreq { |
| 175 | pub imr_multiaddr: in_addr, |
| 176 | pub imr_interface: in_addr, |
| 177 | } |
| 178 | |
| 179 | pub struct ipv6_mreq { |
| 180 | pub ipv6mr_multiaddr: in6_addr, |
| 181 | #[cfg(target_os = "android")] |
| 182 | pub ipv6mr_interface: ::c_int, |
| 183 | #[cfg(not(target_os = "android"))] |
| 184 | pub ipv6mr_interface: ::c_uint, |
| 185 | } |
| 186 | |
| 187 | pub struct hostent { |
| 188 | pub h_name: *mut ::c_char, |
| 189 | pub h_aliases: *mut *mut ::c_char, |
| 190 | pub h_addrtype: ::c_int, |
| 191 | pub h_length: ::c_int, |
| 192 | pub h_addr_list: *mut *mut ::c_char, |
| 193 | } |
| 194 | |
| 195 | pub struct iovec { |
| 196 | pub iov_base: *mut ::c_void, |
| 197 | pub iov_len: ::size_t, |
| 198 | } |
| 199 | |
| 200 | pub struct pollfd { |
| 201 | pub fd: ::c_int, |
| 202 | pub events: ::c_short, |
| 203 | pub revents: ::c_short, |
| 204 | } |
| 205 | |
| 206 | pub struct winsize { |
| 207 | pub ws_row: ::c_ushort, |
| 208 | pub ws_col: ::c_ushort, |
| 209 | pub ws_xpixel: ::c_ushort, |
| 210 | pub ws_ypixel: ::c_ushort, |
| 211 | } |
| 212 | |
| 213 | pub struct linger { |
| 214 | pub l_onoff: ::c_int, |
| 215 | pub l_linger: ::c_int, |
| 216 | } |
| 217 | |
| 218 | pub struct sigval { |
| 219 | // Actually a union of an int and a void* |
| 220 | pub sival_ptr: *mut ::c_void |
| 221 | } |
| 222 | |
| 223 | // <sys/time.h> |
| 224 | pub struct itimerval { |
| 225 | pub it_interval: ::timeval, |
| 226 | pub it_value: ::timeval, |
| 227 | } |
| 228 | |
| 229 | // <sys/times.h> |
| 230 | pub struct tms { |
| 231 | pub tms_utime: ::clock_t, |
| 232 | pub tms_stime: ::clock_t, |
| 233 | pub tms_cutime: ::clock_t, |
| 234 | pub tms_cstime: ::clock_t, |
| 235 | } |
| 236 | |
| 237 | pub struct servent { |
| 238 | pub s_name: *mut ::c_char, |
| 239 | pub s_aliases: *mut *mut ::c_char, |
| 240 | pub s_port: ::c_int, |
| 241 | pub s_proto: *mut ::c_char, |
| 242 | } |
| 243 | |
| 244 | pub struct protoent { |
| 245 | pub p_name: *mut ::c_char, |
| 246 | pub p_aliases: *mut *mut ::c_char, |
| 247 | pub p_proto: ::c_int, |
| 248 | } |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 249 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 250 | pub struct aiocb { |
| 251 | pub aio_fildes: ::c_int, |
| 252 | pub aio_lio_opcode: ::c_int, |
| 253 | pub aio_reqprio: ::c_int, |
| 254 | pub aio_buf: *mut ::c_void, |
| 255 | pub aio_nbytes: ::size_t, |
| 256 | pub aio_sigevent: ::sigevent, |
| 257 | __td: *mut ::c_void, |
| 258 | __lock: [::c_int; 2], |
| 259 | __err: ::c_int, |
| 260 | __ret: ::ssize_t, |
| 261 | pub aio_offset: off_t, |
| 262 | __next: *mut ::c_void, |
| 263 | __prev: *mut ::c_void, |
| 264 | #[cfg(target_pointer_width = "32")] |
| 265 | __dummy4: [::c_char; 24], |
| 266 | #[cfg(target_pointer_width = "64")] |
| 267 | __dummy4: [::c_char; 16], |
| 268 | } |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 269 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 270 | pub struct sigaction { |
| 271 | pub sa_sigaction: ::sighandler_t, |
| 272 | pub sa_mask: ::sigset_t, |
| 273 | pub sa_flags: ::c_int, |
| 274 | pub sa_restorer: ::dox::Option<extern fn()>, |
| 275 | } |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 276 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 277 | pub struct termios { |
| 278 | pub c_iflag: ::tcflag_t, |
| 279 | pub c_oflag: ::tcflag_t, |
| 280 | pub c_cflag: ::tcflag_t, |
| 281 | pub c_lflag: ::tcflag_t, |
| 282 | pub c_line: ::cc_t, |
| 283 | pub c_cc: [::cc_t; ::NCCS], |
| 284 | pub __c_ispeed: ::speed_t, |
| 285 | pub __c_ospeed: ::speed_t, |
| 286 | } |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 287 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 288 | pub struct flock { |
| 289 | pub l_type: ::c_short, |
| 290 | pub l_whence: ::c_short, |
| 291 | pub l_start: ::off_t, |
| 292 | pub l_len: ::off_t, |
| 293 | pub l_pid: ::pid_t, |
| 294 | } |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 295 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 296 | pub struct sysinfo { |
| 297 | pub uptime: ::c_ulong, |
| 298 | pub loads: [::c_ulong; 3], |
| 299 | pub totalram: ::c_ulong, |
| 300 | pub freeram: ::c_ulong, |
| 301 | pub sharedram: ::c_ulong, |
| 302 | pub bufferram: ::c_ulong, |
| 303 | pub totalswap: ::c_ulong, |
| 304 | pub freeswap: ::c_ulong, |
| 305 | pub procs: ::c_ushort, |
| 306 | pub pad: ::c_ushort, |
| 307 | pub totalhigh: ::c_ulong, |
| 308 | pub freehigh: ::c_ulong, |
| 309 | pub mem_unit: ::c_uint, |
| 310 | pub __reserved: [::c_char; 256], |
| 311 | } |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 312 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 313 | pub struct ucred { |
| 314 | pub pid: ::pid_t, |
| 315 | pub uid: ::uid_t, |
| 316 | pub gid: ::gid_t, |
| 317 | } |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 318 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 319 | pub struct sockaddr { |
| 320 | pub sa_family: sa_family_t, |
| 321 | pub sa_data: [::c_char; 14], |
| 322 | } |
| 323 | |
| 324 | pub struct sockaddr_in { |
| 325 | pub sin_family: sa_family_t, |
| 326 | pub sin_port: ::in_port_t, |
| 327 | pub sin_addr: ::in_addr, |
| 328 | pub sin_zero: [u8; 8], |
| 329 | } |
| 330 | |
| 331 | pub struct sockaddr_in6 { |
| 332 | pub sin6_family: sa_family_t, |
| 333 | pub sin6_port: ::in_port_t, |
| 334 | pub sin6_flowinfo: u32, |
| 335 | pub sin6_addr: ::in6_addr, |
| 336 | pub sin6_scope_id: u32, |
| 337 | } |
| 338 | |
| 339 | pub struct sockaddr_un { |
| 340 | pub sun_family: sa_family_t, |
| 341 | pub sun_path: [::c_char; 108] |
| 342 | } |
| 343 | |
| 344 | pub struct sockaddr_storage { |
| 345 | pub ss_family: sa_family_t, |
| 346 | __ss_align: ::size_t, |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 347 | __ss_pad2: [u8; 128 - 2 * 8], |
| 348 | } |
| 349 | |
| 350 | pub struct addrinfo { |
| 351 | pub ai_flags: ::c_int, |
| 352 | pub ai_family: ::c_int, |
| 353 | pub ai_socktype: ::c_int, |
| 354 | pub ai_protocol: ::c_int, |
| 355 | pub ai_addrlen: socklen_t, |
| 356 | |
| 357 | pub ai_addr: *mut ::sockaddr, |
| 358 | |
| 359 | pub ai_canonname: *mut c_char, |
| 360 | |
| 361 | pub ai_next: *mut addrinfo, |
| 362 | } |
| 363 | |
| 364 | pub struct sockaddr_nl { |
| 365 | pub nl_family: ::sa_family_t, |
| 366 | nl_pad: ::c_ushort, |
| 367 | pub nl_pid: u32, |
| 368 | pub nl_groups: u32 |
| 369 | } |
| 370 | |
| 371 | pub struct sockaddr_ll { |
| 372 | pub sll_family: ::c_ushort, |
| 373 | pub sll_protocol: ::c_ushort, |
| 374 | pub sll_ifindex: ::c_int, |
| 375 | pub sll_hatype: ::c_ushort, |
| 376 | pub sll_pkttype: ::c_uchar, |
| 377 | pub sll_halen: ::c_uchar, |
| 378 | pub sll_addr: [::c_uchar; 8] |
| 379 | } |
| 380 | |
| 381 | pub struct fd_set { |
| 382 | fds_bits: [::c_ulong; FD_SETSIZE / ULONG_SIZE], |
| 383 | } |
| 384 | |
| 385 | pub struct tm { |
| 386 | pub tm_sec: ::c_int, |
| 387 | pub tm_min: ::c_int, |
| 388 | pub tm_hour: ::c_int, |
| 389 | pub tm_mday: ::c_int, |
| 390 | pub tm_mon: ::c_int, |
| 391 | pub tm_year: ::c_int, |
| 392 | pub tm_wday: ::c_int, |
| 393 | pub tm_yday: ::c_int, |
| 394 | pub tm_isdst: ::c_int, |
| 395 | pub tm_gmtoff: ::c_long, |
| 396 | pub tm_zone: *const ::c_char, |
| 397 | } |
| 398 | |
| 399 | pub struct sched_param { |
| 400 | pub sched_priority: ::c_int, |
| 401 | #[cfg(target_env = "musl")] |
| 402 | pub sched_ss_low_priority: ::c_int, |
| 403 | #[cfg(target_env = "musl")] |
| 404 | pub sched_ss_repl_period: ::timespec, |
| 405 | #[cfg(target_env = "musl")] |
| 406 | pub sched_ss_init_budget: ::timespec, |
| 407 | #[cfg(target_env = "musl")] |
| 408 | pub sched_ss_max_repl: ::c_int, |
| 409 | } |
| 410 | |
| 411 | pub struct Dl_info { |
| 412 | pub dli_fname: *const ::c_char, |
| 413 | pub dli_fbase: *mut ::c_void, |
| 414 | pub dli_sname: *const ::c_char, |
| 415 | pub dli_saddr: *mut ::c_void, |
| 416 | } |
| 417 | |
| 418 | #[cfg_attr(any(all(target_arch = "x86", |
| 419 | not(target_env = "musl"), |
| 420 | not(target_os = "android")), |
| 421 | target_arch = "x86_64"), |
| 422 | repr(packed))] |
| 423 | pub struct epoll_event { |
| 424 | pub events: ::uint32_t, |
| 425 | pub u64: ::uint64_t, |
| 426 | } |
| 427 | |
| 428 | pub struct utsname { |
| 429 | pub sysname: [::c_char; 65], |
| 430 | pub nodename: [::c_char; 65], |
| 431 | pub release: [::c_char; 65], |
| 432 | pub version: [::c_char; 65], |
| 433 | pub machine: [::c_char; 65], |
| 434 | pub domainname: [::c_char; 65] |
| 435 | } |
| 436 | |
| 437 | pub struct lconv { |
| 438 | pub decimal_point: *mut ::c_char, |
| 439 | pub thousands_sep: *mut ::c_char, |
| 440 | pub grouping: *mut ::c_char, |
| 441 | pub int_curr_symbol: *mut ::c_char, |
| 442 | pub currency_symbol: *mut ::c_char, |
| 443 | pub mon_decimal_point: *mut ::c_char, |
| 444 | pub mon_thousands_sep: *mut ::c_char, |
| 445 | pub mon_grouping: *mut ::c_char, |
| 446 | pub positive_sign: *mut ::c_char, |
| 447 | pub negative_sign: *mut ::c_char, |
| 448 | pub int_frac_digits: ::c_char, |
| 449 | pub frac_digits: ::c_char, |
| 450 | pub p_cs_precedes: ::c_char, |
| 451 | pub p_sep_by_space: ::c_char, |
| 452 | pub n_cs_precedes: ::c_char, |
| 453 | pub n_sep_by_space: ::c_char, |
| 454 | pub p_sign_posn: ::c_char, |
| 455 | pub n_sign_posn: ::c_char, |
| 456 | pub int_p_cs_precedes: ::c_char, |
| 457 | pub int_p_sep_by_space: ::c_char, |
| 458 | pub int_n_cs_precedes: ::c_char, |
| 459 | pub int_n_sep_by_space: ::c_char, |
| 460 | pub int_p_sign_posn: ::c_char, |
| 461 | pub int_n_sign_posn: ::c_char, |
| 462 | } |
| 463 | |
| 464 | pub struct sigevent { |
| 465 | pub sigev_value: ::sigval, |
| 466 | pub sigev_signo: ::c_int, |
| 467 | pub sigev_notify: ::c_int, |
| 468 | // Actually a union. We only expose sigev_notify_thread_id because it's |
| 469 | // the most useful member |
| 470 | pub sigev_notify_thread_id: ::c_int, |
| 471 | #[cfg(target_pointer_width = "64")] |
| 472 | __unused1: [::c_int; 11], |
| 473 | #[cfg(target_pointer_width = "32")] |
| 474 | __unused1: [::c_int; 12] |
| 475 | } |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 476 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 477 | pub struct dirent { |
| 478 | pub d_ino: ::ino_t, |
| 479 | pub d_off: ::off_t, |
| 480 | pub d_reclen: ::c_ushort, |
| 481 | pub d_type: ::c_uchar, |
| 482 | pub d_name: [::c_char; 256], |
| 483 | } |
| 484 | |
| 485 | pub struct dirent64 { |
| 486 | pub d_ino: ::ino64_t, |
| 487 | pub d_off: ::off64_t, |
| 488 | pub d_reclen: ::c_ushort, |
| 489 | pub d_type: ::c_uchar, |
| 490 | pub d_name: [::c_char; 256], |
| 491 | } |
| 492 | |
| 493 | pub struct rlimit64 { |
| 494 | pub rlim_cur: rlim64_t, |
| 495 | pub rlim_max: rlim64_t, |
| 496 | } |
| 497 | |
| 498 | pub struct glob_t { |
| 499 | pub gl_pathc: ::size_t, |
| 500 | pub gl_pathv: *mut *mut c_char, |
| 501 | pub gl_offs: ::size_t, |
| 502 | pub gl_flags: ::c_int, |
| 503 | |
| 504 | __unused1: *mut ::c_void, |
| 505 | __unused2: *mut ::c_void, |
| 506 | __unused3: *mut ::c_void, |
| 507 | __unused4: *mut ::c_void, |
| 508 | __unused5: *mut ::c_void, |
| 509 | } |
| 510 | |
| 511 | pub struct ifaddrs { |
| 512 | pub ifa_next: *mut ifaddrs, |
| 513 | pub ifa_name: *mut c_char, |
| 514 | pub ifa_flags: ::c_uint, |
| 515 | pub ifa_addr: *mut ::sockaddr, |
| 516 | pub ifa_netmask: *mut ::sockaddr, |
| 517 | pub ifa_ifu: *mut ::sockaddr, // FIXME This should be a union |
| 518 | pub ifa_data: *mut ::c_void |
| 519 | } |
| 520 | |
| 521 | pub struct pthread_mutex_t { |
| 522 | #[cfg(any(target_arch = "mips", |
| 523 | target_arch = "arm", |
| 524 | target_arch = "powerpc", |
| 525 | all(target_arch = "x86_64", |
| 526 | target_pointer_width = "32")))] |
| 527 | __align: [::c_long; 0], |
| 528 | #[cfg(not(any(target_arch = "mips", |
| 529 | target_arch = "arm", |
| 530 | target_arch = "powerpc", |
| 531 | all(target_arch = "x86_64", |
| 532 | target_pointer_width = "32"))))] |
| 533 | __align: [::c_longlong; 0], |
| 534 | size: [u8; __SIZEOF_PTHREAD_MUTEX_T], |
| 535 | } |
| 536 | |
| 537 | pub struct pthread_rwlock_t { |
| 538 | #[cfg(any(target_arch = "mips", |
| 539 | target_arch = "arm", |
| 540 | target_arch = "powerpc", |
| 541 | all(target_arch = "x86_64", |
| 542 | target_pointer_width = "32")))] |
| 543 | __align: [::c_long; 0], |
| 544 | #[cfg(not(any(target_arch = "mips", |
| 545 | target_arch = "arm", |
| 546 | target_arch = "powerpc", |
| 547 | all(target_arch = "x86_64", |
| 548 | target_pointer_width = "32"))))] |
| 549 | __align: [::c_longlong; 0], |
| 550 | size: [u8; __SIZEOF_PTHREAD_RWLOCK_T], |
| 551 | } |
| 552 | |
| 553 | pub struct pthread_mutexattr_t { |
| 554 | #[cfg(any(target_arch = "x86_64", target_arch = "powerpc64", |
| 555 | target_arch = "mips64", target_arch = "s390x", |
| 556 | target_arch = "sparc64"))] |
| 557 | __align: [::c_int; 0], |
| 558 | #[cfg(not(any(target_arch = "x86_64", target_arch = "powerpc64", |
| 559 | target_arch = "mips64", target_arch = "s390x", |
| 560 | target_arch = "sparc64", target_arch = "aarch64")))] |
| 561 | __align: [::c_long; 0], |
| 562 | #[cfg(all(target_arch = "aarch64", target_env = "gnu"))] |
| 563 | __align: [::c_long; 0], |
| 564 | #[cfg(all(target_arch = "aarch64", target_env = "musl"))] |
| 565 | __align: [::c_int; 0], |
| 566 | size: [u8; __SIZEOF_PTHREAD_MUTEXATTR_T], |
| 567 | } |
| 568 | |
| 569 | pub struct pthread_rwlockattr_t { |
| 570 | #[cfg(any(target_env = "musl"))] |
| 571 | __align: [::c_int; 0], |
| 572 | #[cfg(not(any(target_env = "musl")))] |
| 573 | __align: [::c_long; 0], |
| 574 | size: [u8; __SIZEOF_PTHREAD_RWLOCKATTR_T], |
| 575 | } |
| 576 | |
| 577 | pub struct pthread_cond_t { |
| 578 | #[cfg(any(target_env = "musl"))] |
| 579 | __align: [*const ::c_void; 0], |
| 580 | #[cfg(not(any(target_env = "musl")))] |
| 581 | __align: [::c_longlong; 0], |
| 582 | size: [u8; __SIZEOF_PTHREAD_COND_T], |
| 583 | } |
| 584 | |
| 585 | pub struct pthread_condattr_t { |
| 586 | __align: [::c_int; 0], |
| 587 | size: [u8; __SIZEOF_PTHREAD_CONDATTR_T], |
| 588 | } |
| 589 | |
| 590 | pub struct passwd { |
| 591 | pub pw_name: *mut ::c_char, |
| 592 | pub pw_passwd: *mut ::c_char, |
| 593 | pub pw_uid: ::uid_t, |
| 594 | pub pw_gid: ::gid_t, |
| 595 | pub pw_gecos: *mut ::c_char, |
| 596 | pub pw_dir: *mut ::c_char, |
| 597 | pub pw_shell: *mut ::c_char, |
| 598 | } |
| 599 | |
| 600 | pub struct spwd { |
| 601 | pub sp_namp: *mut ::c_char, |
| 602 | pub sp_pwdp: *mut ::c_char, |
| 603 | pub sp_lstchg: ::c_long, |
| 604 | pub sp_min: ::c_long, |
| 605 | pub sp_max: ::c_long, |
| 606 | pub sp_warn: ::c_long, |
| 607 | pub sp_inact: ::c_long, |
| 608 | pub sp_expire: ::c_long, |
| 609 | pub sp_flag: ::c_ulong, |
| 610 | } |
| 611 | |
| 612 | pub struct statvfs { |
| 613 | pub f_bsize: ::c_ulong, |
| 614 | pub f_frsize: ::c_ulong, |
| 615 | pub f_blocks: ::fsblkcnt_t, |
| 616 | pub f_bfree: ::fsblkcnt_t, |
| 617 | pub f_bavail: ::fsblkcnt_t, |
| 618 | pub f_files: ::fsfilcnt_t, |
| 619 | pub f_ffree: ::fsfilcnt_t, |
| 620 | pub f_favail: ::fsfilcnt_t, |
| 621 | #[cfg(target_endian = "little")] |
| 622 | pub f_fsid: ::c_ulong, |
| 623 | #[cfg(all(target_pointer_width = "32", not(target_arch = "x86_64")))] |
| 624 | __f_unused: ::c_int, |
| 625 | #[cfg(target_endian = "big")] |
| 626 | pub f_fsid: ::c_ulong, |
| 627 | pub f_flag: ::c_ulong, |
| 628 | pub f_namemax: ::c_ulong, |
| 629 | __f_spare: [::c_int; 6], |
| 630 | } |
| 631 | |
| 632 | pub struct dqblk { |
| 633 | pub dqb_bhardlimit: ::uint64_t, |
| 634 | pub dqb_bsoftlimit: ::uint64_t, |
| 635 | pub dqb_curspace: ::uint64_t, |
| 636 | pub dqb_ihardlimit: ::uint64_t, |
| 637 | pub dqb_isoftlimit: ::uint64_t, |
| 638 | pub dqb_curinodes: ::uint64_t, |
| 639 | pub dqb_btime: ::uint64_t, |
| 640 | pub dqb_itime: ::uint64_t, |
| 641 | pub dqb_valid: ::uint32_t, |
| 642 | } |
| 643 | |
| 644 | pub struct signalfd_siginfo { |
| 645 | pub ssi_signo: ::uint32_t, |
| 646 | pub ssi_errno: ::int32_t, |
| 647 | pub ssi_code: ::int32_t, |
| 648 | pub ssi_pid: ::uint32_t, |
| 649 | pub ssi_uid: ::uint32_t, |
| 650 | pub ssi_fd: ::int32_t, |
| 651 | pub ssi_tid: ::uint32_t, |
| 652 | pub ssi_band: ::uint32_t, |
| 653 | pub ssi_overrun: ::uint32_t, |
| 654 | pub ssi_trapno: ::uint32_t, |
| 655 | pub ssi_status: ::int32_t, |
| 656 | pub ssi_int: ::int32_t, |
| 657 | pub ssi_ptr: ::uint64_t, |
| 658 | pub ssi_utime: ::uint64_t, |
| 659 | pub ssi_stime: ::uint64_t, |
| 660 | pub ssi_addr: ::uint64_t, |
| 661 | _pad: [::uint8_t; 48], |
| 662 | } |
| 663 | |
| 664 | pub struct itimerspec { |
| 665 | pub it_interval: ::timespec, |
| 666 | pub it_value: ::timespec, |
| 667 | } |
| 668 | |
| 669 | pub struct fsid_t { |
| 670 | __val: [::c_int; 2], |
| 671 | } |
| 672 | |
| 673 | // x32 compatibility |
| 674 | // See https://sourceware.org/bugzilla/show_bug.cgi?id=21279 |
| 675 | pub struct mq_attr { |
| 676 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 677 | pub mq_flags: i64, |
| 678 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 679 | pub mq_maxmsg: i64, |
| 680 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 681 | pub mq_msgsize: i64, |
| 682 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 683 | pub mq_curmsgs: i64, |
| 684 | #[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))] |
| 685 | pad: [i64; 4], |
| 686 | |
| 687 | #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))] |
| 688 | pub mq_flags: ::c_long, |
| 689 | #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))] |
| 690 | pub mq_maxmsg: ::c_long, |
| 691 | #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))] |
| 692 | pub mq_msgsize: ::c_long, |
| 693 | #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))] |
| 694 | pub mq_curmsgs: ::c_long, |
| 695 | #[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))] |
| 696 | pad: [::c_long; 4], |
| 697 | } |
| 698 | |
| 699 | pub struct cpu_set_t { |
| 700 | #[cfg(all(target_pointer_width = "32", |
| 701 | not(target_arch = "x86_64")))] |
| 702 | bits: [u32; 32], |
| 703 | #[cfg(not(all(target_pointer_width = "32", |
| 704 | not(target_arch = "x86_64"))))] |
| 705 | bits: [u64; 16], |
| 706 | } |
| 707 | |
| 708 | pub struct if_nameindex { |
| 709 | pub if_index: ::c_uint, |
| 710 | pub if_name: *mut ::c_char, |
| 711 | } |
| 712 | |
| 713 | // System V IPC |
| 714 | pub struct msginfo { |
| 715 | pub msgpool: ::c_int, |
| 716 | pub msgmap: ::c_int, |
| 717 | pub msgmax: ::c_int, |
| 718 | pub msgmnb: ::c_int, |
| 719 | pub msgmni: ::c_int, |
| 720 | pub msgssz: ::c_int, |
| 721 | pub msgtql: ::c_int, |
| 722 | pub msgseg: ::c_ushort, |
| 723 | } |
| 724 | |
| 725 | pub struct mmsghdr { |
| 726 | pub msg_hdr: ::msghdr, |
| 727 | pub msg_len: ::c_uint, |
| 728 | } |
| 729 | |
| 730 | pub struct sembuf { |
| 731 | pub sem_num: ::c_ushort, |
| 732 | pub sem_op: ::c_short, |
| 733 | pub sem_flg: ::c_short, |
| 734 | } |
| 735 | |
| 736 | pub struct input_event { |
| 737 | pub time: ::timeval, |
| 738 | pub type_: ::__u16, |
| 739 | pub code: ::__u16, |
| 740 | pub value: ::__s32, |
| 741 | } |
| 742 | |
| 743 | pub struct input_id { |
| 744 | pub bustype: ::__u16, |
| 745 | pub vendor: ::__u16, |
| 746 | pub product: ::__u16, |
| 747 | pub version: ::__u16, |
| 748 | } |
| 749 | |
| 750 | pub struct input_absinfo { |
| 751 | pub value: ::__s32, |
| 752 | pub minimum: ::__s32, |
| 753 | pub maximum: ::__s32, |
| 754 | pub fuzz: ::__s32, |
| 755 | pub flat: ::__s32, |
| 756 | pub resolution: ::__s32, |
| 757 | } |
| 758 | |
| 759 | pub struct input_keymap_entry { |
| 760 | pub flags: ::__u8, |
| 761 | pub len: ::__u8, |
| 762 | pub index: ::__u16, |
| 763 | pub keycode: ::__u32, |
| 764 | pub scancode: [::__u8; 32], |
| 765 | } |
| 766 | |
| 767 | pub struct input_mask { |
| 768 | pub type_: ::__u32, |
| 769 | pub codes_size: ::__u32, |
| 770 | pub codes_ptr: ::__u64, |
| 771 | } |
| 772 | |
| 773 | pub struct ff_replay { |
| 774 | pub length: ::__u16, |
| 775 | pub delay: ::__u16, |
| 776 | } |
| 777 | |
| 778 | pub struct ff_trigger { |
| 779 | pub button: ::__u16, |
| 780 | pub interval: ::__u16, |
| 781 | } |
| 782 | |
| 783 | pub struct ff_envelope { |
| 784 | pub attack_length: ::__u16, |
| 785 | pub attack_level: ::__u16, |
| 786 | pub fade_length: ::__u16, |
| 787 | pub fade_level: ::__u16, |
| 788 | } |
| 789 | |
| 790 | pub struct ff_constant_effect { |
| 791 | pub level: ::__s16, |
| 792 | pub envelope: ff_envelope, |
| 793 | } |
| 794 | |
| 795 | pub struct ff_ramp_effect { |
| 796 | pub start_level: ::__s16, |
| 797 | pub end_level: ::__s16, |
| 798 | pub envelope: ff_envelope, |
| 799 | } |
| 800 | |
| 801 | pub struct ff_condition_effect { |
| 802 | pub right_saturation: ::__u16, |
| 803 | pub left_saturation: ::__u16, |
| 804 | |
| 805 | pub right_coeff: ::__s16, |
| 806 | pub left_coeff: ::__s16, |
| 807 | |
| 808 | pub deadband: ::__u16, |
| 809 | pub center: ::__s16, |
| 810 | } |
| 811 | |
| 812 | pub struct ff_periodic_effect { |
| 813 | pub waveform: ::__u16, |
| 814 | pub period: ::__u16, |
| 815 | pub magnitude: ::__s16, |
| 816 | pub offset: ::__s16, |
| 817 | pub phase: ::__u16, |
| 818 | |
| 819 | pub envelope: ff_envelope, |
| 820 | |
| 821 | pub custom_len: ::__u32, |
| 822 | pub custom_data: *mut ::__s16, |
| 823 | } |
| 824 | |
| 825 | pub struct ff_rumble_effect { |
| 826 | pub strong_magnitude: ::__u16, |
| 827 | pub weak_magnitude: ::__u16, |
| 828 | } |
| 829 | |
| 830 | pub struct ff_effect { |
| 831 | pub type_: ::__u16, |
| 832 | pub id: ::__s16, |
| 833 | pub direction: ::__u16, |
| 834 | pub trigger: ff_trigger, |
| 835 | pub replay: ff_replay, |
| 836 | // FIXME this is actually a union |
| 837 | #[cfg(target_pointer_width = "64")] |
| 838 | pub u: [u64; 4], |
| 839 | #[cfg(target_pointer_width = "32")] |
| 840 | pub u: [u32; 7], |
| 841 | } |
| 842 | |
| 843 | pub struct dl_phdr_info { |
| 844 | #[cfg(target_pointer_width = "64")] |
| 845 | pub dlpi_addr: Elf64_Addr, |
| 846 | #[cfg(target_pointer_width = "32")] |
| 847 | pub dlpi_addr: Elf32_Addr, |
| 848 | |
| 849 | pub dlpi_name: *const ::c_char, |
| 850 | |
| 851 | #[cfg(target_pointer_width = "64")] |
| 852 | pub dlpi_phdr: *const Elf64_Phdr, |
| 853 | #[cfg(target_pointer_width = "32")] |
| 854 | pub dlpi_phdr: *const Elf32_Phdr, |
| 855 | |
| 856 | #[cfg(target_pointer_width = "64")] |
| 857 | pub dlpi_phnum: Elf64_Half, |
| 858 | #[cfg(target_pointer_width = "32")] |
| 859 | pub dlpi_phnum: Elf32_Half, |
| 860 | |
| 861 | pub dlpi_adds: ::c_ulonglong, |
| 862 | pub dlpi_subs: ::c_ulonglong, |
| 863 | pub dlpi_tls_modid: ::size_t, |
| 864 | pub dlpi_tls_data: *mut ::c_void, |
| 865 | } |
| 866 | |
| 867 | pub struct Elf32_Phdr { |
| 868 | pub p_type: Elf32_Word, |
| 869 | pub p_offset: Elf32_Off, |
| 870 | pub p_vaddr: Elf32_Addr, |
| 871 | pub p_paddr: Elf32_Addr, |
| 872 | pub p_filesz: Elf32_Word, |
| 873 | pub p_memsz: Elf32_Word, |
| 874 | pub p_flags: Elf32_Word, |
| 875 | pub p_align: Elf32_Word, |
| 876 | } |
| 877 | |
| 878 | pub struct Elf64_Phdr { |
| 879 | pub p_type: Elf64_Word, |
| 880 | pub p_flags: Elf64_Word, |
| 881 | pub p_offset: Elf64_Off, |
| 882 | pub p_vaddr: Elf64_Addr, |
| 883 | pub p_paddr: Elf64_Addr, |
| 884 | pub p_filesz: Elf64_Xword, |
| 885 | pub p_memsz: Elf64_Xword, |
| 886 | pub p_align: Elf64_Xword, |
| 887 | } |
| 888 | |
| 889 | pub struct statfs64 { |
| 890 | pub f_type: ::c_ulong, |
| 891 | pub f_bsize: ::c_ulong, |
| 892 | pub f_blocks: ::fsblkcnt_t, |
| 893 | pub f_bfree: ::fsblkcnt_t, |
| 894 | pub f_bavail: ::fsblkcnt_t, |
| 895 | pub f_files: ::fsfilcnt_t, |
| 896 | pub f_ffree: ::fsfilcnt_t, |
| 897 | pub f_fsid: ::fsid_t, |
| 898 | pub f_namelen: ::c_ulong, |
| 899 | pub f_frsize: ::c_ulong, |
| 900 | pub f_flags: ::c_ulong, |
| 901 | pub f_spare: [::c_ulong; 4], |
| 902 | } |
| 903 | |
| 904 | pub struct statvfs64 { |
| 905 | pub f_bsize: ::c_ulong, |
| 906 | pub f_frsize: ::c_ulong, |
| 907 | pub f_blocks: u64, |
| 908 | pub f_bfree: u64, |
| 909 | pub f_bavail: u64, |
| 910 | pub f_files: u64, |
| 911 | pub f_ffree: u64, |
| 912 | pub f_favail: u64, |
| 913 | pub f_fsid: ::c_ulong, |
| 914 | pub f_flag: ::c_ulong, |
| 915 | pub f_namemax: ::c_ulong, |
| 916 | __f_spare: [::c_int; 6], |
| 917 | } |
| 918 | |
| 919 | pub struct stack_t { |
| 920 | pub ss_sp: *mut ::c_void, |
| 921 | pub ss_flags: ::c_int, |
| 922 | pub ss_size: ::size_t |
| 923 | } |
| 924 | |
| 925 | pub struct pthread_attr_t { |
| 926 | __size: [u64; 7] |
| 927 | } |
| 928 | |
| 929 | pub struct sigset_t { |
| 930 | __val: [::c_ulong; 16], |
| 931 | } |
| 932 | |
| 933 | pub struct shmid_ds { |
| 934 | pub shm_perm: ::ipc_perm, |
| 935 | pub shm_segsz: ::size_t, |
| 936 | pub shm_atime: ::time_t, |
| 937 | pub shm_dtime: ::time_t, |
| 938 | pub shm_ctime: ::time_t, |
| 939 | pub shm_cpid: ::pid_t, |
| 940 | pub shm_lpid: ::pid_t, |
| 941 | pub shm_nattch: ::c_ulong, |
| 942 | __pad1: ::c_ulong, |
| 943 | __pad2: ::c_ulong, |
| 944 | } |
| 945 | |
| 946 | pub struct msqid_ds { |
| 947 | pub msg_perm: ::ipc_perm, |
| 948 | pub msg_stime: ::time_t, |
| 949 | pub msg_rtime: ::time_t, |
| 950 | pub msg_ctime: ::time_t, |
| 951 | __msg_cbytes: ::c_ulong, |
| 952 | pub msg_qnum: ::msgqnum_t, |
| 953 | pub msg_qbytes: ::msglen_t, |
| 954 | pub msg_lspid: ::pid_t, |
| 955 | pub msg_lrpid: ::pid_t, |
| 956 | __pad1: ::c_ulong, |
| 957 | __pad2: ::c_ulong, |
| 958 | } |
| 959 | |
| 960 | pub struct statfs { |
| 961 | pub f_type: ::c_ulong, |
| 962 | pub f_bsize: ::c_ulong, |
| 963 | pub f_blocks: ::fsblkcnt_t, |
| 964 | pub f_bfree: ::fsblkcnt_t, |
| 965 | pub f_bavail: ::fsblkcnt_t, |
| 966 | pub f_files: ::fsfilcnt_t, |
| 967 | pub f_ffree: ::fsfilcnt_t, |
| 968 | pub f_fsid: ::fsid_t, |
| 969 | pub f_namelen: ::c_ulong, |
| 970 | pub f_frsize: ::c_ulong, |
| 971 | pub f_flags: ::c_ulong, |
| 972 | pub f_spare: [::c_ulong; 4], |
| 973 | } |
| 974 | |
| 975 | pub struct msghdr { |
| 976 | pub msg_name: *mut ::c_void, |
| 977 | pub msg_namelen: ::socklen_t, |
| 978 | pub msg_iov: *mut ::iovec, |
| 979 | pub msg_iovlen: ::c_int, |
| 980 | __pad1: ::c_int, |
| 981 | pub msg_control: *mut ::c_void, |
| 982 | pub msg_controllen: ::socklen_t, |
| 983 | __pad2: ::socklen_t, |
| 984 | pub msg_flags: ::c_int, |
| 985 | } |
| 986 | |
| 987 | pub struct cmsghdr { |
| 988 | pub cmsg_len: ::socklen_t, |
| 989 | pub __pad1: ::c_int, |
| 990 | pub cmsg_level: ::c_int, |
| 991 | pub cmsg_type: ::c_int, |
| 992 | } |
| 993 | |
| 994 | pub struct sem_t { |
| 995 | __val: [::c_int; 8], |
| 996 | } |
| 997 | |
| 998 | pub struct siginfo_t { |
| 999 | pub si_signo: ::c_int, |
| 1000 | pub si_errno: ::c_int, |
| 1001 | pub si_code: ::c_int, |
| 1002 | pub _pad: [::c_int; 29], |
| 1003 | _align: [usize; 0], |
| 1004 | } |
| 1005 | |
| 1006 | pub struct termios2 { |
| 1007 | pub c_iflag: ::tcflag_t, |
| 1008 | pub c_oflag: ::tcflag_t, |
| 1009 | pub c_cflag: ::tcflag_t, |
| 1010 | pub c_lflag: ::tcflag_t, |
| 1011 | pub c_line: ::cc_t, |
| 1012 | pub c_cc: [::cc_t; 19], |
| 1013 | pub c_ispeed: ::speed_t, |
| 1014 | pub c_ospeed: ::speed_t, |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 1015 | } |
| 1016 | } |
| 1017 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 1018 | // PUB_CONST |
| 1019 | |
| 1020 | pub const SIG_DFL: sighandler_t = 0 as sighandler_t; |
| 1021 | pub const SIG_IGN: sighandler_t = 1 as sighandler_t; |
| 1022 | pub const SIG_ERR: sighandler_t = !0 as sighandler_t; |
| 1023 | |
| 1024 | pub const DT_FIFO: u8 = 1; |
| 1025 | pub const DT_CHR: u8 = 2; |
| 1026 | pub const DT_DIR: u8 = 4; |
| 1027 | pub const DT_BLK: u8 = 6; |
| 1028 | pub const DT_REG: u8 = 8; |
| 1029 | pub const DT_LNK: u8 = 10; |
| 1030 | pub const DT_SOCK: u8 = 12; |
| 1031 | |
| 1032 | pub const FD_CLOEXEC: ::c_int = 0x1; |
| 1033 | |
| 1034 | pub const USRQUOTA: ::c_int = 0; |
| 1035 | pub const GRPQUOTA: ::c_int = 1; |
| 1036 | |
| 1037 | pub const SIGIOT: ::c_int = 6; |
| 1038 | |
| 1039 | pub const S_ISUID: ::c_int = 0x800; |
| 1040 | pub const S_ISGID: ::c_int = 0x400; |
| 1041 | pub const S_ISVTX: ::c_int = 0x200; |
| 1042 | |
| 1043 | pub const IF_NAMESIZE: ::size_t = 16; |
| 1044 | |
| 1045 | pub const LOG_EMERG: ::c_int = 0; |
| 1046 | pub const LOG_ALERT: ::c_int = 1; |
| 1047 | pub const LOG_CRIT: ::c_int = 2; |
| 1048 | pub const LOG_ERR: ::c_int = 3; |
| 1049 | pub const LOG_WARNING: ::c_int = 4; |
| 1050 | pub const LOG_NOTICE: ::c_int = 5; |
| 1051 | pub const LOG_INFO: ::c_int = 6; |
| 1052 | pub const LOG_DEBUG: ::c_int = 7; |
| 1053 | |
| 1054 | pub const LOG_KERN: ::c_int = 0; |
| 1055 | pub const LOG_USER: ::c_int = 1 << 3; |
| 1056 | pub const LOG_MAIL: ::c_int = 2 << 3; |
| 1057 | pub const LOG_DAEMON: ::c_int = 3 << 3; |
| 1058 | pub const LOG_AUTH: ::c_int = 4 << 3; |
| 1059 | pub const LOG_SYSLOG: ::c_int = 5 << 3; |
| 1060 | pub const LOG_LPR: ::c_int = 6 << 3; |
| 1061 | pub const LOG_NEWS: ::c_int = 7 << 3; |
| 1062 | pub const LOG_UUCP: ::c_int = 8 << 3; |
| 1063 | pub const LOG_LOCAL0: ::c_int = 16 << 3; |
| 1064 | pub const LOG_LOCAL1: ::c_int = 17 << 3; |
| 1065 | pub const LOG_LOCAL2: ::c_int = 18 << 3; |
| 1066 | pub const LOG_LOCAL3: ::c_int = 19 << 3; |
| 1067 | pub const LOG_LOCAL4: ::c_int = 20 << 3; |
| 1068 | pub const LOG_LOCAL5: ::c_int = 21 << 3; |
| 1069 | pub const LOG_LOCAL6: ::c_int = 22 << 3; |
| 1070 | pub const LOG_LOCAL7: ::c_int = 23 << 3; |
| 1071 | |
| 1072 | pub const LOG_PID: ::c_int = 0x01; |
| 1073 | pub const LOG_CONS: ::c_int = 0x02; |
| 1074 | pub const LOG_ODELAY: ::c_int = 0x04; |
| 1075 | pub const LOG_NDELAY: ::c_int = 0x08; |
| 1076 | pub const LOG_NOWAIT: ::c_int = 0x10; |
| 1077 | |
| 1078 | pub const LOG_PRIMASK: ::c_int = 7; |
| 1079 | pub const LOG_FACMASK: ::c_int = 0x3f8; |
| 1080 | |
| 1081 | pub const PRIO_PROCESS: ::c_int = 0; |
| 1082 | pub const PRIO_PGRP: ::c_int = 1; |
| 1083 | pub const PRIO_USER: ::c_int = 2; |
| 1084 | |
| 1085 | pub const PRIO_MIN: ::c_int = -20; |
| 1086 | pub const PRIO_MAX: ::c_int = 20; |
| 1087 | |
| 1088 | pub const IPPROTO_ICMP: ::c_int = 1; |
| 1089 | pub const IPPROTO_ICMPV6: ::c_int = 58; |
| 1090 | pub const IPPROTO_TCP: ::c_int = 6; |
| 1091 | pub const IPPROTO_UDP: ::c_int = 17; |
| 1092 | pub const IPPROTO_IP: ::c_int = 0; |
| 1093 | pub const IPPROTO_IPV6: ::c_int = 41; |
| 1094 | |
| 1095 | pub const INADDR_LOOPBACK: in_addr_t = 2130706433; |
| 1096 | pub const INADDR_ANY: in_addr_t = 0; |
| 1097 | pub const INADDR_BROADCAST: in_addr_t = 4294967295; |
| 1098 | pub const INADDR_NONE: in_addr_t = 4294967295; |
| 1099 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 1100 | pub const EXIT_FAILURE: ::c_int = 1; |
| 1101 | pub const EXIT_SUCCESS: ::c_int = 0; |
| 1102 | pub const RAND_MAX: ::c_int = 2147483647; |
| 1103 | pub const EOF: ::c_int = -1; |
| 1104 | pub const SEEK_SET: ::c_int = 0; |
| 1105 | pub const SEEK_CUR: ::c_int = 1; |
| 1106 | pub const SEEK_END: ::c_int = 2; |
| 1107 | pub const _IOFBF: ::c_int = 0; |
| 1108 | pub const _IONBF: ::c_int = 2; |
| 1109 | pub const _IOLBF: ::c_int = 1; |
| 1110 | |
| 1111 | pub const F_DUPFD: ::c_int = 0; |
| 1112 | pub const F_GETFD: ::c_int = 1; |
| 1113 | pub const F_SETFD: ::c_int = 2; |
| 1114 | pub const F_GETFL: ::c_int = 3; |
| 1115 | pub const F_SETFL: ::c_int = 4; |
| 1116 | |
| 1117 | // Linux-specific fcntls |
| 1118 | pub const F_SETLEASE: ::c_int = 1024; |
| 1119 | pub const F_GETLEASE: ::c_int = 1025; |
| 1120 | pub const F_NOTIFY: ::c_int = 1026; |
| 1121 | pub const F_CANCELLK: ::c_int = 1029; |
| 1122 | pub const F_DUPFD_CLOEXEC: ::c_int = 1030; |
| 1123 | pub const F_SETPIPE_SZ: ::c_int = 1031; |
| 1124 | pub const F_GETPIPE_SZ: ::c_int = 1032; |
| 1125 | pub const F_ADD_SEALS: ::c_int = 1033; |
| 1126 | pub const F_GET_SEALS: ::c_int = 1034; |
| 1127 | |
| 1128 | pub const F_SEAL_SEAL: ::c_int = 0x0001; |
| 1129 | pub const F_SEAL_SHRINK: ::c_int = 0x0002; |
| 1130 | pub const F_SEAL_GROW: ::c_int = 0x0004; |
| 1131 | pub const F_SEAL_WRITE: ::c_int = 0x0008; |
| 1132 | |
| 1133 | // TODO(#235): Include file sealing fcntls once we have a way to verify them. |
| 1134 | |
| 1135 | pub const SIGTRAP: ::c_int = 5; |
| 1136 | |
| 1137 | pub const PTHREAD_CREATE_JOINABLE: ::c_int = 0; |
| 1138 | pub const PTHREAD_CREATE_DETACHED: ::c_int = 1; |
| 1139 | |
| 1140 | pub const CLOCK_REALTIME: ::clockid_t = 0; |
| 1141 | pub const CLOCK_MONOTONIC: ::clockid_t = 1; |
| 1142 | pub const CLOCK_PROCESS_CPUTIME_ID: ::clockid_t = 2; |
| 1143 | pub const CLOCK_THREAD_CPUTIME_ID: ::clockid_t = 3; |
| 1144 | pub const CLOCK_MONOTONIC_RAW: ::clockid_t = 4; |
| 1145 | pub const CLOCK_REALTIME_COARSE: ::clockid_t = 5; |
| 1146 | pub const CLOCK_MONOTONIC_COARSE: ::clockid_t = 6; |
| 1147 | pub const CLOCK_BOOTTIME: ::clockid_t = 7; |
| 1148 | pub const CLOCK_REALTIME_ALARM: ::clockid_t = 8; |
| 1149 | pub const CLOCK_BOOTTIME_ALARM: ::clockid_t = 9; |
| 1150 | // TODO(#247) Someday our Travis shall have glibc 2.21 (released in Sep |
| 1151 | // 2014.) See also musl/mod.rs |
| 1152 | // pub const CLOCK_SGI_CYCLE: ::clockid_t = 10; |
| 1153 | // pub const CLOCK_TAI: ::clockid_t = 11; |
| 1154 | pub const TIMER_ABSTIME: ::c_int = 1; |
| 1155 | |
| 1156 | pub const RLIMIT_CPU: ::c_int = 0; |
| 1157 | pub const RLIMIT_FSIZE: ::c_int = 1; |
| 1158 | pub const RLIMIT_DATA: ::c_int = 2; |
| 1159 | pub const RLIMIT_STACK: ::c_int = 3; |
| 1160 | pub const RLIMIT_CORE: ::c_int = 4; |
| 1161 | pub const RLIMIT_LOCKS: ::c_int = 10; |
| 1162 | pub const RLIMIT_SIGPENDING: ::c_int = 11; |
| 1163 | pub const RLIMIT_MSGQUEUE: ::c_int = 12; |
| 1164 | pub const RLIMIT_NICE: ::c_int = 13; |
| 1165 | pub const RLIMIT_RTPRIO: ::c_int = 14; |
| 1166 | |
| 1167 | pub const RUSAGE_SELF: ::c_int = 0; |
| 1168 | |
| 1169 | pub const O_RDONLY: ::c_int = 0; |
| 1170 | pub const O_WRONLY: ::c_int = 1; |
| 1171 | pub const O_RDWR: ::c_int = 2; |
| 1172 | |
| 1173 | pub const SOCK_CLOEXEC: ::c_int = O_CLOEXEC; |
| 1174 | |
| 1175 | pub const S_IFIFO: ::mode_t = 4096; |
| 1176 | pub const S_IFCHR: ::mode_t = 8192; |
| 1177 | pub const S_IFBLK: ::mode_t = 24576; |
| 1178 | pub const S_IFDIR: ::mode_t = 16384; |
| 1179 | pub const S_IFREG: ::mode_t = 32768; |
| 1180 | pub const S_IFLNK: ::mode_t = 40960; |
| 1181 | pub const S_IFSOCK: ::mode_t = 49152; |
| 1182 | pub const S_IFMT: ::mode_t = 61440; |
| 1183 | pub const S_IRWXU: ::mode_t = 448; |
| 1184 | pub const S_IXUSR: ::mode_t = 64; |
| 1185 | pub const S_IWUSR: ::mode_t = 128; |
| 1186 | pub const S_IRUSR: ::mode_t = 256; |
| 1187 | pub const S_IRWXG: ::mode_t = 56; |
| 1188 | pub const S_IXGRP: ::mode_t = 8; |
| 1189 | pub const S_IWGRP: ::mode_t = 16; |
| 1190 | pub const S_IRGRP: ::mode_t = 32; |
| 1191 | pub const S_IRWXO: ::mode_t = 7; |
| 1192 | pub const S_IXOTH: ::mode_t = 1; |
| 1193 | pub const S_IWOTH: ::mode_t = 2; |
| 1194 | pub const S_IROTH: ::mode_t = 4; |
| 1195 | pub const F_OK: ::c_int = 0; |
| 1196 | pub const R_OK: ::c_int = 4; |
| 1197 | pub const W_OK: ::c_int = 2; |
| 1198 | pub const X_OK: ::c_int = 1; |
| 1199 | pub const STDIN_FILENO: ::c_int = 0; |
| 1200 | pub const STDOUT_FILENO: ::c_int = 1; |
| 1201 | pub const STDERR_FILENO: ::c_int = 2; |
| 1202 | pub const SIGHUP: ::c_int = 1; |
| 1203 | pub const SIGINT: ::c_int = 2; |
| 1204 | pub const SIGQUIT: ::c_int = 3; |
| 1205 | pub const SIGILL: ::c_int = 4; |
| 1206 | pub const SIGABRT: ::c_int = 6; |
| 1207 | pub const SIGFPE: ::c_int = 8; |
| 1208 | pub const SIGKILL: ::c_int = 9; |
| 1209 | pub const SIGSEGV: ::c_int = 11; |
| 1210 | pub const SIGPIPE: ::c_int = 13; |
| 1211 | pub const SIGALRM: ::c_int = 14; |
| 1212 | pub const SIGTERM: ::c_int = 15; |
| 1213 | |
| 1214 | pub const PROT_NONE: ::c_int = 0; |
| 1215 | pub const PROT_READ: ::c_int = 1; |
| 1216 | pub const PROT_WRITE: ::c_int = 2; |
| 1217 | pub const PROT_EXEC: ::c_int = 4; |
| 1218 | |
| 1219 | pub const LC_CTYPE: ::c_int = 0; |
| 1220 | pub const LC_NUMERIC: ::c_int = 1; |
| 1221 | pub const LC_TIME: ::c_int = 2; |
| 1222 | pub const LC_COLLATE: ::c_int = 3; |
| 1223 | pub const LC_MONETARY: ::c_int = 4; |
| 1224 | pub const LC_MESSAGES: ::c_int = 5; |
| 1225 | pub const LC_ALL: ::c_int = 6; |
| 1226 | pub const LC_CTYPE_MASK: ::c_int = (1 << LC_CTYPE); |
| 1227 | pub const LC_NUMERIC_MASK: ::c_int = (1 << LC_NUMERIC); |
| 1228 | pub const LC_TIME_MASK: ::c_int = (1 << LC_TIME); |
| 1229 | pub const LC_COLLATE_MASK: ::c_int = (1 << LC_COLLATE); |
| 1230 | pub const LC_MONETARY_MASK: ::c_int = (1 << LC_MONETARY); |
| 1231 | pub const LC_MESSAGES_MASK: ::c_int = (1 << LC_MESSAGES); |
| 1232 | // LC_ALL_MASK defined per platform |
| 1233 | |
| 1234 | pub const MAP_FILE: ::c_int = 0x0000; |
| 1235 | pub const MAP_SHARED: ::c_int = 0x0001; |
| 1236 | pub const MAP_PRIVATE: ::c_int = 0x0002; |
| 1237 | pub const MAP_FIXED: ::c_int = 0x0010; |
| 1238 | |
| 1239 | pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void; |
| 1240 | |
| 1241 | // MS_ flags for msync(2) |
| 1242 | pub const MS_ASYNC: ::c_int = 0x0001; |
| 1243 | pub const MS_INVALIDATE: ::c_int = 0x0002; |
| 1244 | pub const MS_SYNC: ::c_int = 0x0004; |
| 1245 | |
| 1246 | // MS_ flags for mount(2) |
| 1247 | pub const MS_RDONLY: ::c_ulong = 0x01; |
| 1248 | pub const MS_NOSUID: ::c_ulong = 0x02; |
| 1249 | pub const MS_NODEV: ::c_ulong = 0x04; |
| 1250 | pub const MS_NOEXEC: ::c_ulong = 0x08; |
| 1251 | pub const MS_SYNCHRONOUS: ::c_ulong = 0x10; |
| 1252 | pub const MS_REMOUNT: ::c_ulong = 0x20; |
| 1253 | pub const MS_MANDLOCK: ::c_ulong = 0x40; |
| 1254 | pub const MS_DIRSYNC: ::c_ulong = 0x80; |
| 1255 | pub const MS_NOATIME: ::c_ulong = 0x0400; |
| 1256 | pub const MS_NODIRATIME: ::c_ulong = 0x0800; |
| 1257 | pub const MS_BIND: ::c_ulong = 0x1000; |
| 1258 | pub const MS_MOVE: ::c_ulong = 0x2000; |
| 1259 | pub const MS_REC: ::c_ulong = 0x4000; |
| 1260 | pub const MS_SILENT: ::c_ulong = 0x8000; |
| 1261 | pub const MS_POSIXACL: ::c_ulong = 0x010000; |
| 1262 | pub const MS_UNBINDABLE: ::c_ulong = 0x020000; |
| 1263 | pub const MS_PRIVATE: ::c_ulong = 0x040000; |
| 1264 | pub const MS_SLAVE: ::c_ulong = 0x080000; |
| 1265 | pub const MS_SHARED: ::c_ulong = 0x100000; |
| 1266 | pub const MS_RELATIME: ::c_ulong = 0x200000; |
| 1267 | pub const MS_KERNMOUNT: ::c_ulong = 0x400000; |
| 1268 | pub const MS_I_VERSION: ::c_ulong = 0x800000; |
| 1269 | pub const MS_STRICTATIME: ::c_ulong = 0x1000000; |
| 1270 | pub const MS_ACTIVE: ::c_ulong = 0x40000000; |
| 1271 | pub const MS_NOUSER: ::c_ulong = 0x80000000; |
| 1272 | pub const MS_MGC_VAL: ::c_ulong = 0xc0ed0000; |
| 1273 | pub const MS_MGC_MSK: ::c_ulong = 0xffff0000; |
| 1274 | pub const MS_RMT_MASK: ::c_ulong = 0x800051; |
| 1275 | |
| 1276 | pub const EPERM: ::c_int = 1; |
| 1277 | pub const ENOENT: ::c_int = 2; |
| 1278 | pub const ESRCH: ::c_int = 3; |
| 1279 | pub const EINTR: ::c_int = 4; |
| 1280 | pub const EIO: ::c_int = 5; |
| 1281 | pub const ENXIO: ::c_int = 6; |
| 1282 | pub const E2BIG: ::c_int = 7; |
| 1283 | pub const ENOEXEC: ::c_int = 8; |
| 1284 | pub const EBADF: ::c_int = 9; |
| 1285 | pub const ECHILD: ::c_int = 10; |
| 1286 | pub const EAGAIN: ::c_int = 11; |
| 1287 | pub const ENOMEM: ::c_int = 12; |
| 1288 | pub const EACCES: ::c_int = 13; |
| 1289 | pub const EFAULT: ::c_int = 14; |
| 1290 | pub const ENOTBLK: ::c_int = 15; |
| 1291 | pub const EBUSY: ::c_int = 16; |
| 1292 | pub const EEXIST: ::c_int = 17; |
| 1293 | pub const EXDEV: ::c_int = 18; |
| 1294 | pub const ENODEV: ::c_int = 19; |
| 1295 | pub const ENOTDIR: ::c_int = 20; |
| 1296 | pub const EISDIR: ::c_int = 21; |
| 1297 | pub const EINVAL: ::c_int = 22; |
| 1298 | pub const ENFILE: ::c_int = 23; |
| 1299 | pub const EMFILE: ::c_int = 24; |
| 1300 | pub const ENOTTY: ::c_int = 25; |
| 1301 | pub const ETXTBSY: ::c_int = 26; |
| 1302 | pub const EFBIG: ::c_int = 27; |
| 1303 | pub const ENOSPC: ::c_int = 28; |
| 1304 | pub const ESPIPE: ::c_int = 29; |
| 1305 | pub const EROFS: ::c_int = 30; |
| 1306 | pub const EMLINK: ::c_int = 31; |
| 1307 | pub const EPIPE: ::c_int = 32; |
| 1308 | pub const EDOM: ::c_int = 33; |
| 1309 | pub const ERANGE: ::c_int = 34; |
| 1310 | pub const EWOULDBLOCK: ::c_int = EAGAIN; |
| 1311 | |
| 1312 | pub const SCM_RIGHTS: ::c_int = 0x01; |
| 1313 | pub const SCM_CREDENTIALS: ::c_int = 0x02; |
| 1314 | |
| 1315 | pub const PROT_GROWSDOWN: ::c_int = 0x1000000; |
| 1316 | pub const PROT_GROWSUP: ::c_int = 0x2000000; |
| 1317 | |
| 1318 | pub const MAP_TYPE: ::c_int = 0x000f; |
| 1319 | |
| 1320 | pub const MADV_NORMAL: ::c_int = 0; |
| 1321 | pub const MADV_RANDOM: ::c_int = 1; |
| 1322 | pub const MADV_SEQUENTIAL: ::c_int = 2; |
| 1323 | pub const MADV_WILLNEED: ::c_int = 3; |
| 1324 | pub const MADV_DONTNEED: ::c_int = 4; |
| 1325 | pub const MADV_FREE: ::c_int = 8; |
| 1326 | pub const MADV_REMOVE: ::c_int = 9; |
| 1327 | pub const MADV_DONTFORK: ::c_int = 10; |
| 1328 | pub const MADV_DOFORK: ::c_int = 11; |
| 1329 | pub const MADV_MERGEABLE: ::c_int = 12; |
| 1330 | pub const MADV_UNMERGEABLE: ::c_int = 13; |
| 1331 | pub const MADV_HUGEPAGE: ::c_int = 14; |
| 1332 | pub const MADV_NOHUGEPAGE: ::c_int = 15; |
| 1333 | pub const MADV_DONTDUMP: ::c_int = 16; |
| 1334 | pub const MADV_DODUMP: ::c_int = 17; |
| 1335 | pub const MADV_HWPOISON: ::c_int = 100; |
| 1336 | pub const MADV_SOFT_OFFLINE: ::c_int = 101; |
| 1337 | |
| 1338 | pub const IFF_UP: ::c_int = 0x1; |
| 1339 | pub const IFF_BROADCAST: ::c_int = 0x2; |
| 1340 | pub const IFF_DEBUG: ::c_int = 0x4; |
| 1341 | pub const IFF_LOOPBACK: ::c_int = 0x8; |
| 1342 | pub const IFF_POINTOPOINT: ::c_int = 0x10; |
| 1343 | pub const IFF_NOTRAILERS: ::c_int = 0x20; |
| 1344 | pub const IFF_RUNNING: ::c_int = 0x40; |
| 1345 | pub const IFF_NOARP: ::c_int = 0x80; |
| 1346 | pub const IFF_PROMISC: ::c_int = 0x100; |
| 1347 | pub const IFF_ALLMULTI: ::c_int = 0x200; |
| 1348 | pub const IFF_MASTER: ::c_int = 0x400; |
| 1349 | pub const IFF_SLAVE: ::c_int = 0x800; |
| 1350 | pub const IFF_MULTICAST: ::c_int = 0x1000; |
| 1351 | pub const IFF_PORTSEL: ::c_int = 0x2000; |
| 1352 | pub const IFF_AUTOMEDIA: ::c_int = 0x4000; |
| 1353 | pub const IFF_DYNAMIC: ::c_int = 0x8000; |
luozijun | 0f4ae0b | 2018-02-04 21:39:40 +0800 | [diff] [blame] | 1354 | pub const IFF_TUN: ::c_int = 0x0001; |
| 1355 | pub const IFF_TAP: ::c_int = 0x0002; |
| 1356 | pub const IFF_NO_PI: ::c_int = 0x1000; |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 1357 | |
| 1358 | pub const SOL_IP: ::c_int = 0; |
| 1359 | pub const SOL_TCP: ::c_int = 6; |
| 1360 | pub const SOL_UDP: ::c_int = 17; |
| 1361 | pub const SOL_IPV6: ::c_int = 41; |
| 1362 | pub const SOL_ICMPV6: ::c_int = 58; |
| 1363 | pub const SOL_RAW: ::c_int = 255; |
| 1364 | pub const SOL_DECNET: ::c_int = 261; |
| 1365 | pub const SOL_X25: ::c_int = 262; |
| 1366 | pub const SOL_PACKET: ::c_int = 263; |
| 1367 | pub const SOL_ATM: ::c_int = 264; |
| 1368 | pub const SOL_AAL: ::c_int = 265; |
| 1369 | pub const SOL_IRDA: ::c_int = 266; |
| 1370 | pub const SOL_NETBEUI: ::c_int = 267; |
| 1371 | pub const SOL_LLC: ::c_int = 268; |
| 1372 | pub const SOL_DCCP: ::c_int = 269; |
| 1373 | pub const SOL_NETLINK: ::c_int = 270; |
| 1374 | pub const SOL_TIPC: ::c_int = 271; |
| 1375 | |
| 1376 | pub const AF_UNSPEC: ::c_int = 0; |
| 1377 | pub const AF_UNIX: ::c_int = 1; |
| 1378 | pub const AF_LOCAL: ::c_int = 1; |
| 1379 | pub const AF_INET: ::c_int = 2; |
| 1380 | pub const AF_AX25: ::c_int = 3; |
| 1381 | pub const AF_IPX: ::c_int = 4; |
| 1382 | pub const AF_APPLETALK: ::c_int = 5; |
| 1383 | pub const AF_NETROM: ::c_int = 6; |
| 1384 | pub const AF_BRIDGE: ::c_int = 7; |
| 1385 | pub const AF_ATMPVC: ::c_int = 8; |
| 1386 | pub const AF_X25: ::c_int = 9; |
| 1387 | pub const AF_INET6: ::c_int = 10; |
| 1388 | pub const AF_ROSE: ::c_int = 11; |
| 1389 | pub const AF_DECnet: ::c_int = 12; |
| 1390 | pub const AF_NETBEUI: ::c_int = 13; |
| 1391 | pub const AF_SECURITY: ::c_int = 14; |
| 1392 | pub const AF_KEY: ::c_int = 15; |
| 1393 | pub const AF_NETLINK: ::c_int = 16; |
| 1394 | pub const AF_ROUTE: ::c_int = AF_NETLINK; |
| 1395 | pub const AF_PACKET: ::c_int = 17; |
| 1396 | pub const AF_ASH: ::c_int = 18; |
| 1397 | pub const AF_ECONET: ::c_int = 19; |
| 1398 | pub const AF_ATMSVC: ::c_int = 20; |
| 1399 | pub const AF_RDS: ::c_int = 21; |
| 1400 | pub const AF_SNA: ::c_int = 22; |
| 1401 | pub const AF_IRDA: ::c_int = 23; |
| 1402 | pub const AF_PPPOX: ::c_int = 24; |
| 1403 | pub const AF_WANPIPE: ::c_int = 25; |
| 1404 | pub const AF_LLC: ::c_int = 26; |
| 1405 | pub const AF_CAN: ::c_int = 29; |
| 1406 | pub const AF_TIPC: ::c_int = 30; |
| 1407 | pub const AF_BLUETOOTH: ::c_int = 31; |
| 1408 | pub const AF_IUCV: ::c_int = 32; |
| 1409 | pub const AF_RXRPC: ::c_int = 33; |
| 1410 | pub const AF_ISDN: ::c_int = 34; |
| 1411 | pub const AF_PHONET: ::c_int = 35; |
| 1412 | pub const AF_IEEE802154: ::c_int = 36; |
| 1413 | pub const AF_CAIF: ::c_int = 37; |
| 1414 | pub const AF_ALG: ::c_int = 38; |
| 1415 | |
| 1416 | pub const PF_UNSPEC: ::c_int = AF_UNSPEC; |
| 1417 | pub const PF_UNIX: ::c_int = AF_UNIX; |
| 1418 | pub const PF_LOCAL: ::c_int = AF_LOCAL; |
| 1419 | pub const PF_INET: ::c_int = AF_INET; |
| 1420 | pub const PF_AX25: ::c_int = AF_AX25; |
| 1421 | pub const PF_IPX: ::c_int = AF_IPX; |
| 1422 | pub const PF_APPLETALK: ::c_int = AF_APPLETALK; |
| 1423 | pub const PF_NETROM: ::c_int = AF_NETROM; |
| 1424 | pub const PF_BRIDGE: ::c_int = AF_BRIDGE; |
| 1425 | pub const PF_ATMPVC: ::c_int = AF_ATMPVC; |
| 1426 | pub const PF_X25: ::c_int = AF_X25; |
| 1427 | pub const PF_INET6: ::c_int = AF_INET6; |
| 1428 | pub const PF_ROSE: ::c_int = AF_ROSE; |
| 1429 | pub const PF_DECnet: ::c_int = AF_DECnet; |
| 1430 | pub const PF_NETBEUI: ::c_int = AF_NETBEUI; |
| 1431 | pub const PF_SECURITY: ::c_int = AF_SECURITY; |
| 1432 | pub const PF_KEY: ::c_int = AF_KEY; |
| 1433 | pub const PF_NETLINK: ::c_int = AF_NETLINK; |
| 1434 | pub const PF_ROUTE: ::c_int = AF_ROUTE; |
| 1435 | pub const PF_PACKET: ::c_int = AF_PACKET; |
| 1436 | pub const PF_ASH: ::c_int = AF_ASH; |
| 1437 | pub const PF_ECONET: ::c_int = AF_ECONET; |
| 1438 | pub const PF_ATMSVC: ::c_int = AF_ATMSVC; |
| 1439 | pub const PF_RDS: ::c_int = AF_RDS; |
| 1440 | pub const PF_SNA: ::c_int = AF_SNA; |
| 1441 | pub const PF_IRDA: ::c_int = AF_IRDA; |
| 1442 | pub const PF_PPPOX: ::c_int = AF_PPPOX; |
| 1443 | pub const PF_WANPIPE: ::c_int = AF_WANPIPE; |
| 1444 | pub const PF_LLC: ::c_int = AF_LLC; |
| 1445 | pub const PF_CAN: ::c_int = AF_CAN; |
| 1446 | pub const PF_TIPC: ::c_int = AF_TIPC; |
| 1447 | pub const PF_BLUETOOTH: ::c_int = AF_BLUETOOTH; |
| 1448 | pub const PF_IUCV: ::c_int = AF_IUCV; |
| 1449 | pub const PF_RXRPC: ::c_int = AF_RXRPC; |
| 1450 | pub const PF_ISDN: ::c_int = AF_ISDN; |
| 1451 | pub const PF_PHONET: ::c_int = AF_PHONET; |
| 1452 | pub const PF_IEEE802154: ::c_int = AF_IEEE802154; |
| 1453 | pub const PF_CAIF: ::c_int = AF_CAIF; |
| 1454 | pub const PF_ALG: ::c_int = AF_ALG; |
| 1455 | |
| 1456 | pub const SOMAXCONN: ::c_int = 128; |
| 1457 | |
| 1458 | pub const MSG_OOB: ::c_int = 1; |
| 1459 | pub const MSG_PEEK: ::c_int = 2; |
| 1460 | pub const MSG_DONTROUTE: ::c_int = 4; |
| 1461 | pub const MSG_CTRUNC: ::c_int = 8; |
| 1462 | pub const MSG_TRUNC: ::c_int = 0x20; |
| 1463 | pub const MSG_DONTWAIT: ::c_int = 0x40; |
| 1464 | pub const MSG_EOR: ::c_int = 0x80; |
| 1465 | pub const MSG_WAITALL: ::c_int = 0x100; |
| 1466 | pub const MSG_FIN: ::c_int = 0x200; |
| 1467 | pub const MSG_SYN: ::c_int = 0x400; |
| 1468 | pub const MSG_CONFIRM: ::c_int = 0x800; |
| 1469 | pub const MSG_RST: ::c_int = 0x1000; |
| 1470 | pub const MSG_ERRQUEUE: ::c_int = 0x2000; |
| 1471 | pub const MSG_NOSIGNAL: ::c_int = 0x4000; |
| 1472 | pub const MSG_MORE: ::c_int = 0x8000; |
| 1473 | pub const MSG_WAITFORONE: ::c_int = 0x10000; |
| 1474 | pub const MSG_FASTOPEN: ::c_int = 0x20000000; |
| 1475 | pub const MSG_CMSG_CLOEXEC: ::c_int = 0x40000000; |
| 1476 | |
| 1477 | pub const SCM_TIMESTAMP: ::c_int = SO_TIMESTAMP; |
| 1478 | |
| 1479 | pub const SOCK_RAW: ::c_int = 3; |
| 1480 | pub const SOCK_RDM: ::c_int = 4; |
| 1481 | pub const IP_MULTICAST_IF: ::c_int = 32; |
| 1482 | pub const IP_MULTICAST_TTL: ::c_int = 33; |
| 1483 | pub const IP_MULTICAST_LOOP: ::c_int = 34; |
| 1484 | pub const IP_TTL: ::c_int = 2; |
| 1485 | pub const IP_HDRINCL: ::c_int = 3; |
| 1486 | pub const IP_ADD_MEMBERSHIP: ::c_int = 35; |
| 1487 | pub const IP_DROP_MEMBERSHIP: ::c_int = 36; |
| 1488 | pub const IP_TRANSPARENT: ::c_int = 19; |
Benjamin Fry | 7ed5599 | 2018-02-25 10:58:44 -0800 | [diff] [blame^] | 1489 | pub const IPV6_MULTICAST_IF: ::c_int = 17; |
| 1490 | pub const IPV6_MULTICAST_HOPS: ::c_int = 18; |
| 1491 | pub const IPV6_MULTICAST_LOOP: ::c_int = 19; |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 1492 | pub const IPV6_ADD_MEMBERSHIP: ::c_int = 20; |
| 1493 | pub const IPV6_DROP_MEMBERSHIP: ::c_int = 21; |
Benjamin Fry | 7ed5599 | 2018-02-25 10:58:44 -0800 | [diff] [blame^] | 1494 | pub const IPV6_V6ONLY: ::c_int = 26; |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 1495 | |
| 1496 | pub const TCP_NODELAY: ::c_int = 1; |
| 1497 | pub const TCP_MAXSEG: ::c_int = 2; |
| 1498 | pub const TCP_CORK: ::c_int = 3; |
| 1499 | pub const TCP_KEEPIDLE: ::c_int = 4; |
| 1500 | pub const TCP_KEEPINTVL: ::c_int = 5; |
| 1501 | pub const TCP_KEEPCNT: ::c_int = 6; |
| 1502 | pub const TCP_SYNCNT: ::c_int = 7; |
| 1503 | pub const TCP_LINGER2: ::c_int = 8; |
| 1504 | pub const TCP_DEFER_ACCEPT: ::c_int = 9; |
| 1505 | pub const TCP_WINDOW_CLAMP: ::c_int = 10; |
| 1506 | pub const TCP_INFO: ::c_int = 11; |
| 1507 | pub const TCP_QUICKACK: ::c_int = 12; |
| 1508 | pub const TCP_CONGESTION: ::c_int = 13; |
| 1509 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 1510 | pub const SO_DEBUG: ::c_int = 1; |
| 1511 | |
| 1512 | pub const SHUT_RD: ::c_int = 0; |
| 1513 | pub const SHUT_WR: ::c_int = 1; |
| 1514 | pub const SHUT_RDWR: ::c_int = 2; |
| 1515 | |
| 1516 | pub const LOCK_SH: ::c_int = 1; |
| 1517 | pub const LOCK_EX: ::c_int = 2; |
| 1518 | pub const LOCK_NB: ::c_int = 4; |
| 1519 | pub const LOCK_UN: ::c_int = 8; |
| 1520 | |
| 1521 | pub const SS_ONSTACK: ::c_int = 1; |
| 1522 | pub const SS_DISABLE: ::c_int = 2; |
| 1523 | |
| 1524 | pub const PATH_MAX: ::c_int = 4096; |
| 1525 | |
| 1526 | pub const FD_SETSIZE: usize = 1024; |
| 1527 | |
| 1528 | pub const EPOLLIN: ::c_int = 0x1; |
| 1529 | pub const EPOLLPRI: ::c_int = 0x2; |
| 1530 | pub const EPOLLOUT: ::c_int = 0x4; |
| 1531 | pub const EPOLLRDNORM: ::c_int = 0x40; |
| 1532 | pub const EPOLLRDBAND: ::c_int = 0x80; |
| 1533 | pub const EPOLLWRNORM: ::c_int = 0x100; |
| 1534 | pub const EPOLLWRBAND: ::c_int = 0x200; |
| 1535 | pub const EPOLLMSG: ::c_int = 0x400; |
| 1536 | pub const EPOLLERR: ::c_int = 0x8; |
| 1537 | pub const EPOLLHUP: ::c_int = 0x10; |
| 1538 | pub const EPOLLET: ::c_int = 0x80000000; |
| 1539 | |
| 1540 | pub const EPOLL_CTL_ADD: ::c_int = 1; |
| 1541 | pub const EPOLL_CTL_MOD: ::c_int = 3; |
| 1542 | pub const EPOLL_CTL_DEL: ::c_int = 2; |
| 1543 | |
| 1544 | pub const MNT_DETACH: ::c_int = 0x2; |
| 1545 | pub const MNT_EXPIRE: ::c_int = 0x4; |
| 1546 | |
| 1547 | pub const Q_GETFMT: ::c_int = 0x800004; |
| 1548 | pub const Q_GETINFO: ::c_int = 0x800005; |
| 1549 | pub const Q_SETINFO: ::c_int = 0x800006; |
| 1550 | pub const QIF_BLIMITS: ::uint32_t = 1; |
| 1551 | pub const QIF_SPACE: ::uint32_t = 2; |
| 1552 | pub const QIF_ILIMITS: ::uint32_t = 4; |
| 1553 | pub const QIF_INODES: ::uint32_t = 8; |
| 1554 | pub const QIF_BTIME: ::uint32_t = 16; |
| 1555 | pub const QIF_ITIME: ::uint32_t = 32; |
| 1556 | pub const QIF_LIMITS: ::uint32_t = 5; |
| 1557 | pub const QIF_USAGE: ::uint32_t = 10; |
| 1558 | pub const QIF_TIMES: ::uint32_t = 48; |
| 1559 | pub const QIF_ALL: ::uint32_t = 63; |
| 1560 | |
| 1561 | pub const MNT_FORCE: ::c_int = 0x1; |
| 1562 | |
| 1563 | pub const Q_SYNC: ::c_int = 0x800001; |
| 1564 | pub const Q_QUOTAON: ::c_int = 0x800002; |
| 1565 | pub const Q_QUOTAOFF: ::c_int = 0x800003; |
| 1566 | pub const Q_GETQUOTA: ::c_int = 0x800007; |
| 1567 | pub const Q_SETQUOTA: ::c_int = 0x800008; |
| 1568 | |
| 1569 | pub const TCIOFF: ::c_int = 2; |
| 1570 | pub const TCION: ::c_int = 3; |
| 1571 | pub const TCOOFF: ::c_int = 0; |
| 1572 | pub const TCOON: ::c_int = 1; |
| 1573 | pub const TCIFLUSH: ::c_int = 0; |
| 1574 | pub const TCOFLUSH: ::c_int = 1; |
| 1575 | pub const TCIOFLUSH: ::c_int = 2; |
| 1576 | pub const NL0: ::c_int = 0x00000000; |
| 1577 | pub const NL1: ::c_int = 0x00000100; |
| 1578 | pub const TAB0: ::c_int = 0x00000000; |
| 1579 | pub const CR0: ::c_int = 0x00000000; |
| 1580 | pub const FF0: ::c_int = 0x00000000; |
| 1581 | pub const BS0: ::c_int = 0x00000000; |
| 1582 | pub const VT0: ::c_int = 0x00000000; |
| 1583 | pub const VERASE: usize = 2; |
| 1584 | pub const VKILL: usize = 3; |
| 1585 | pub const VINTR: usize = 0; |
| 1586 | pub const VQUIT: usize = 1; |
| 1587 | pub const VLNEXT: usize = 15; |
| 1588 | pub const IGNBRK: ::tcflag_t = 0x00000001; |
| 1589 | pub const BRKINT: ::tcflag_t = 0x00000002; |
| 1590 | pub const IGNPAR: ::tcflag_t = 0x00000004; |
| 1591 | pub const PARMRK: ::tcflag_t = 0x00000008; |
| 1592 | pub const INPCK: ::tcflag_t = 0x00000010; |
| 1593 | pub const ISTRIP: ::tcflag_t = 0x00000020; |
| 1594 | pub const INLCR: ::tcflag_t = 0x00000040; |
| 1595 | pub const IGNCR: ::tcflag_t = 0x00000080; |
| 1596 | pub const ICRNL: ::tcflag_t = 0x00000100; |
| 1597 | pub const IXANY: ::tcflag_t = 0x00000800; |
| 1598 | pub const IMAXBEL: ::tcflag_t = 0x00002000; |
| 1599 | pub const OPOST: ::tcflag_t = 0x1; |
| 1600 | pub const CS5: ::tcflag_t = 0x00000000; |
| 1601 | pub const CRTSCTS: ::tcflag_t = 0x80000000; |
| 1602 | pub const ECHO: ::tcflag_t = 0x00000008; |
| 1603 | pub const OCRNL: ::tcflag_t = 0o000010; |
| 1604 | pub const ONOCR: ::tcflag_t = 0o000020; |
| 1605 | pub const ONLRET: ::tcflag_t = 0o000040; |
| 1606 | pub const OFILL: ::tcflag_t = 0o000100; |
| 1607 | pub const OFDEL: ::tcflag_t = 0o000200; |
| 1608 | |
| 1609 | pub const CLONE_VM: ::c_int = 0x100; |
| 1610 | pub const CLONE_FS: ::c_int = 0x200; |
| 1611 | pub const CLONE_FILES: ::c_int = 0x400; |
| 1612 | pub const CLONE_SIGHAND: ::c_int = 0x800; |
| 1613 | pub const CLONE_PTRACE: ::c_int = 0x2000; |
| 1614 | pub const CLONE_VFORK: ::c_int = 0x4000; |
| 1615 | pub const CLONE_PARENT: ::c_int = 0x8000; |
| 1616 | pub const CLONE_THREAD: ::c_int = 0x10000; |
| 1617 | pub const CLONE_NEWNS: ::c_int = 0x20000; |
| 1618 | pub const CLONE_SYSVSEM: ::c_int = 0x40000; |
| 1619 | pub const CLONE_SETTLS: ::c_int = 0x80000; |
| 1620 | pub const CLONE_PARENT_SETTID: ::c_int = 0x100000; |
| 1621 | pub const CLONE_CHILD_CLEARTID: ::c_int = 0x200000; |
| 1622 | pub const CLONE_DETACHED: ::c_int = 0x400000; |
| 1623 | pub const CLONE_UNTRACED: ::c_int = 0x800000; |
| 1624 | pub const CLONE_CHILD_SETTID: ::c_int = 0x01000000; |
| 1625 | pub const CLONE_NEWUTS: ::c_int = 0x04000000; |
| 1626 | pub const CLONE_NEWIPC: ::c_int = 0x08000000; |
| 1627 | pub const CLONE_NEWUSER: ::c_int = 0x10000000; |
| 1628 | pub const CLONE_NEWPID: ::c_int = 0x20000000; |
| 1629 | pub const CLONE_NEWNET: ::c_int = 0x40000000; |
| 1630 | pub const CLONE_IO: ::c_int = 0x80000000; |
| 1631 | pub const CLONE_NEWCGROUP: ::c_int = 0x02000000; |
| 1632 | |
| 1633 | pub const WNOHANG: ::c_int = 0x00000001; |
| 1634 | pub const WUNTRACED: ::c_int = 0x00000002; |
| 1635 | pub const WSTOPPED: ::c_int = WUNTRACED; |
| 1636 | pub const WEXITED: ::c_int = 0x00000004; |
| 1637 | pub const WCONTINUED: ::c_int = 0x00000008; |
| 1638 | pub const WNOWAIT: ::c_int = 0x01000000; |
| 1639 | |
| 1640 | // Options set using PTRACE_SETOPTIONS. |
| 1641 | pub const PTRACE_O_TRACESYSGOOD: ::c_int = 0x00000001; |
| 1642 | pub const PTRACE_O_TRACEFORK: ::c_int = 0x00000002; |
| 1643 | pub const PTRACE_O_TRACEVFORK: ::c_int = 0x00000004; |
| 1644 | pub const PTRACE_O_TRACECLONE: ::c_int = 0x00000008; |
| 1645 | pub const PTRACE_O_TRACEEXEC: ::c_int = 0x00000010; |
| 1646 | pub const PTRACE_O_TRACEVFORKDONE: ::c_int = 0x00000020; |
| 1647 | pub const PTRACE_O_TRACEEXIT: ::c_int = 0x00000040; |
| 1648 | pub const PTRACE_O_TRACESECCOMP: ::c_int = 0x00000080; |
| 1649 | pub const PTRACE_O_EXITKILL: ::c_int = 0x00100000; |
| 1650 | pub const PTRACE_O_SUSPEND_SECCOMP: ::c_int = 0x00200000; |
| 1651 | pub const PTRACE_O_MASK: ::c_int = 0x003000ff; |
| 1652 | |
| 1653 | // Wait extended result codes for the above trace options. |
| 1654 | pub const PTRACE_EVENT_FORK: ::c_int = 1; |
| 1655 | pub const PTRACE_EVENT_VFORK: ::c_int = 2; |
| 1656 | pub const PTRACE_EVENT_CLONE: ::c_int = 3; |
| 1657 | pub const PTRACE_EVENT_EXEC: ::c_int = 4; |
| 1658 | pub const PTRACE_EVENT_VFORK_DONE: ::c_int = 5; |
| 1659 | pub const PTRACE_EVENT_EXIT: ::c_int = 6; |
| 1660 | pub const PTRACE_EVENT_SECCOMP: ::c_int = 7; |
| 1661 | // PTRACE_EVENT_STOP was added to glibc in 2.26 |
| 1662 | // pub const PTRACE_EVENT_STOP: ::c_int = 128; |
| 1663 | |
| 1664 | pub const __WNOTHREAD: ::c_int = 0x20000000; |
| 1665 | pub const __WALL: ::c_int = 0x40000000; |
| 1666 | pub const __WCLONE: ::c_int = 0x80000000; |
| 1667 | |
| 1668 | pub const SPLICE_F_MOVE: ::c_uint = 0x01; |
| 1669 | pub const SPLICE_F_NONBLOCK: ::c_uint = 0x02; |
| 1670 | pub const SPLICE_F_MORE: ::c_uint = 0x04; |
| 1671 | pub const SPLICE_F_GIFT: ::c_uint = 0x08; |
| 1672 | |
| 1673 | pub const RTLD_LOCAL: ::c_int = 0; |
| 1674 | pub const RTLD_LAZY: ::c_int = 1; |
| 1675 | |
| 1676 | pub const POSIX_FADV_NORMAL: ::c_int = 0; |
| 1677 | pub const POSIX_FADV_RANDOM: ::c_int = 1; |
| 1678 | pub const POSIX_FADV_SEQUENTIAL: ::c_int = 2; |
| 1679 | pub const POSIX_FADV_WILLNEED: ::c_int = 3; |
| 1680 | |
| 1681 | pub const AT_FDCWD: ::c_int = -100; |
| 1682 | pub const AT_SYMLINK_NOFOLLOW: ::c_int = 0x100; |
| 1683 | pub const AT_REMOVEDIR: ::c_int = 0x200; |
| 1684 | pub const AT_SYMLINK_FOLLOW: ::c_int = 0x400; |
| 1685 | pub const AT_NO_AUTOMOUNT: ::c_int = 0x800; |
| 1686 | pub const AT_EMPTY_PATH: ::c_int = 0x1000; |
| 1687 | |
| 1688 | pub const LOG_CRON: ::c_int = 9 << 3; |
| 1689 | pub const LOG_AUTHPRIV: ::c_int = 10 << 3; |
| 1690 | pub const LOG_FTP: ::c_int = 11 << 3; |
| 1691 | pub const LOG_PERROR: ::c_int = 0x20; |
| 1692 | |
| 1693 | pub const PIPE_BUF: usize = 4096; |
| 1694 | |
| 1695 | pub const SI_LOAD_SHIFT: ::c_uint = 16; |
| 1696 | |
| 1697 | pub const SIGEV_SIGNAL: ::c_int = 0; |
| 1698 | pub const SIGEV_NONE: ::c_int = 1; |
| 1699 | pub const SIGEV_THREAD: ::c_int = 2; |
| 1700 | |
| 1701 | pub const P_ALL: idtype_t = 0; |
| 1702 | pub const P_PID: idtype_t = 1; |
| 1703 | pub const P_PGID: idtype_t = 2; |
| 1704 | |
| 1705 | pub const UTIME_OMIT: c_long = 1073741822; |
| 1706 | pub const UTIME_NOW: c_long = 1073741823; |
| 1707 | |
| 1708 | pub const POLLIN: ::c_short = 0x1; |
| 1709 | pub const POLLPRI: ::c_short = 0x2; |
| 1710 | pub const POLLOUT: ::c_short = 0x4; |
| 1711 | pub const POLLERR: ::c_short = 0x8; |
| 1712 | pub const POLLHUP: ::c_short = 0x10; |
| 1713 | pub const POLLNVAL: ::c_short = 0x20; |
| 1714 | pub const POLLRDNORM: ::c_short = 0x040; |
| 1715 | pub const POLLRDBAND: ::c_short = 0x080; |
| 1716 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 1717 | pub const ABDAY_1: ::nl_item = 0x20000; |
| 1718 | pub const ABDAY_2: ::nl_item = 0x20001; |
| 1719 | pub const ABDAY_3: ::nl_item = 0x20002; |
| 1720 | pub const ABDAY_4: ::nl_item = 0x20003; |
| 1721 | pub const ABDAY_5: ::nl_item = 0x20004; |
| 1722 | pub const ABDAY_6: ::nl_item = 0x20005; |
| 1723 | pub const ABDAY_7: ::nl_item = 0x20006; |
| 1724 | |
| 1725 | pub const DAY_1: ::nl_item = 0x20007; |
| 1726 | pub const DAY_2: ::nl_item = 0x20008; |
| 1727 | pub const DAY_3: ::nl_item = 0x20009; |
| 1728 | pub const DAY_4: ::nl_item = 0x2000A; |
| 1729 | pub const DAY_5: ::nl_item = 0x2000B; |
| 1730 | pub const DAY_6: ::nl_item = 0x2000C; |
| 1731 | pub const DAY_7: ::nl_item = 0x2000D; |
| 1732 | |
| 1733 | pub const ABMON_1: ::nl_item = 0x2000E; |
| 1734 | pub const ABMON_2: ::nl_item = 0x2000F; |
| 1735 | pub const ABMON_3: ::nl_item = 0x20010; |
| 1736 | pub const ABMON_4: ::nl_item = 0x20011; |
| 1737 | pub const ABMON_5: ::nl_item = 0x20012; |
| 1738 | pub const ABMON_6: ::nl_item = 0x20013; |
| 1739 | pub const ABMON_7: ::nl_item = 0x20014; |
| 1740 | pub const ABMON_8: ::nl_item = 0x20015; |
| 1741 | pub const ABMON_9: ::nl_item = 0x20016; |
| 1742 | pub const ABMON_10: ::nl_item = 0x20017; |
| 1743 | pub const ABMON_11: ::nl_item = 0x20018; |
| 1744 | pub const ABMON_12: ::nl_item = 0x20019; |
| 1745 | |
| 1746 | pub const MON_1: ::nl_item = 0x2001A; |
| 1747 | pub const MON_2: ::nl_item = 0x2001B; |
| 1748 | pub const MON_3: ::nl_item = 0x2001C; |
| 1749 | pub const MON_4: ::nl_item = 0x2001D; |
| 1750 | pub const MON_5: ::nl_item = 0x2001E; |
| 1751 | pub const MON_6: ::nl_item = 0x2001F; |
| 1752 | pub const MON_7: ::nl_item = 0x20020; |
| 1753 | pub const MON_8: ::nl_item = 0x20021; |
| 1754 | pub const MON_9: ::nl_item = 0x20022; |
| 1755 | pub const MON_10: ::nl_item = 0x20023; |
| 1756 | pub const MON_11: ::nl_item = 0x20024; |
| 1757 | pub const MON_12: ::nl_item = 0x20025; |
| 1758 | |
| 1759 | pub const AM_STR: ::nl_item = 0x20026; |
| 1760 | pub const PM_STR: ::nl_item = 0x20027; |
| 1761 | |
| 1762 | pub const D_T_FMT: ::nl_item = 0x20028; |
| 1763 | pub const D_FMT: ::nl_item = 0x20029; |
| 1764 | pub const T_FMT: ::nl_item = 0x2002A; |
| 1765 | pub const T_FMT_AMPM: ::nl_item = 0x2002B; |
| 1766 | |
| 1767 | pub const ERA: ::nl_item = 0x2002C; |
| 1768 | pub const ERA_D_FMT: ::nl_item = 0x2002E; |
| 1769 | pub const ALT_DIGITS: ::nl_item = 0x2002F; |
| 1770 | pub const ERA_D_T_FMT: ::nl_item = 0x20030; |
| 1771 | pub const ERA_T_FMT: ::nl_item = 0x20031; |
| 1772 | |
| 1773 | pub const CODESET: ::nl_item = 14; |
| 1774 | |
| 1775 | pub const CRNCYSTR: ::nl_item = 0x4000F; |
| 1776 | |
| 1777 | pub const RUSAGE_THREAD: ::c_int = 1; |
| 1778 | pub const RUSAGE_CHILDREN: ::c_int = -1; |
| 1779 | |
| 1780 | pub const RADIXCHAR: ::nl_item = 0x10000; |
| 1781 | pub const THOUSEP: ::nl_item = 0x10001; |
| 1782 | |
| 1783 | pub const YESEXPR: ::nl_item = 0x50000; |
| 1784 | pub const NOEXPR: ::nl_item = 0x50001; |
| 1785 | pub const YESSTR: ::nl_item = 0x50002; |
| 1786 | pub const NOSTR: ::nl_item = 0x50003; |
| 1787 | |
| 1788 | pub const FILENAME_MAX: ::c_uint = 4096; |
| 1789 | pub const L_tmpnam: ::c_uint = 20; |
| 1790 | pub const _PC_LINK_MAX: ::c_int = 0; |
| 1791 | pub const _PC_MAX_CANON: ::c_int = 1; |
| 1792 | pub const _PC_MAX_INPUT: ::c_int = 2; |
| 1793 | pub const _PC_NAME_MAX: ::c_int = 3; |
| 1794 | pub const _PC_PATH_MAX: ::c_int = 4; |
| 1795 | pub const _PC_PIPE_BUF: ::c_int = 5; |
| 1796 | pub const _PC_CHOWN_RESTRICTED: ::c_int = 6; |
| 1797 | pub const _PC_NO_TRUNC: ::c_int = 7; |
| 1798 | pub const _PC_VDISABLE: ::c_int = 8; |
| 1799 | pub const _PC_SYNC_IO: ::c_int = 9; |
| 1800 | pub const _PC_ASYNC_IO: ::c_int = 10; |
| 1801 | pub const _PC_PRIO_IO: ::c_int = 11; |
| 1802 | pub const _PC_SOCK_MAXBUF: ::c_int = 12; |
| 1803 | pub const _PC_FILESIZEBITS: ::c_int = 13; |
| 1804 | pub const _PC_REC_INCR_XFER_SIZE: ::c_int = 14; |
| 1805 | pub const _PC_REC_MAX_XFER_SIZE: ::c_int = 15; |
| 1806 | pub const _PC_REC_MIN_XFER_SIZE: ::c_int = 16; |
| 1807 | pub const _PC_REC_XFER_ALIGN: ::c_int = 17; |
| 1808 | pub const _PC_ALLOC_SIZE_MIN: ::c_int = 18; |
| 1809 | pub const _PC_SYMLINK_MAX: ::c_int = 19; |
| 1810 | pub const _PC_2_SYMLINKS: ::c_int = 20; |
| 1811 | |
| 1812 | pub const _SC_ARG_MAX: ::c_int = 0; |
| 1813 | pub const _SC_CHILD_MAX: ::c_int = 1; |
| 1814 | pub const _SC_CLK_TCK: ::c_int = 2; |
| 1815 | pub const _SC_NGROUPS_MAX: ::c_int = 3; |
| 1816 | pub const _SC_OPEN_MAX: ::c_int = 4; |
| 1817 | pub const _SC_STREAM_MAX: ::c_int = 5; |
| 1818 | pub const _SC_TZNAME_MAX: ::c_int = 6; |
| 1819 | pub const _SC_JOB_CONTROL: ::c_int = 7; |
| 1820 | pub const _SC_SAVED_IDS: ::c_int = 8; |
| 1821 | pub const _SC_REALTIME_SIGNALS: ::c_int = 9; |
| 1822 | pub const _SC_PRIORITY_SCHEDULING: ::c_int = 10; |
| 1823 | pub const _SC_TIMERS: ::c_int = 11; |
| 1824 | pub const _SC_ASYNCHRONOUS_IO: ::c_int = 12; |
| 1825 | pub const _SC_PRIORITIZED_IO: ::c_int = 13; |
| 1826 | pub const _SC_SYNCHRONIZED_IO: ::c_int = 14; |
| 1827 | pub const _SC_FSYNC: ::c_int = 15; |
| 1828 | pub const _SC_MAPPED_FILES: ::c_int = 16; |
| 1829 | pub const _SC_MEMLOCK: ::c_int = 17; |
| 1830 | pub const _SC_MEMLOCK_RANGE: ::c_int = 18; |
| 1831 | pub const _SC_MEMORY_PROTECTION: ::c_int = 19; |
| 1832 | pub const _SC_MESSAGE_PASSING: ::c_int = 20; |
| 1833 | pub const _SC_SEMAPHORES: ::c_int = 21; |
| 1834 | pub const _SC_SHARED_MEMORY_OBJECTS: ::c_int = 22; |
| 1835 | pub const _SC_AIO_LISTIO_MAX: ::c_int = 23; |
| 1836 | pub const _SC_AIO_MAX: ::c_int = 24; |
| 1837 | pub const _SC_AIO_PRIO_DELTA_MAX: ::c_int = 25; |
| 1838 | pub const _SC_DELAYTIMER_MAX: ::c_int = 26; |
| 1839 | pub const _SC_MQ_OPEN_MAX: ::c_int = 27; |
| 1840 | pub const _SC_MQ_PRIO_MAX: ::c_int = 28; |
| 1841 | pub const _SC_VERSION: ::c_int = 29; |
| 1842 | pub const _SC_PAGESIZE: ::c_int = 30; |
| 1843 | pub const _SC_PAGE_SIZE: ::c_int = _SC_PAGESIZE; |
| 1844 | pub const _SC_RTSIG_MAX: ::c_int = 31; |
| 1845 | pub const _SC_SEM_NSEMS_MAX: ::c_int = 32; |
| 1846 | pub const _SC_SEM_VALUE_MAX: ::c_int = 33; |
| 1847 | pub const _SC_SIGQUEUE_MAX: ::c_int = 34; |
| 1848 | pub const _SC_TIMER_MAX: ::c_int = 35; |
| 1849 | pub const _SC_BC_BASE_MAX: ::c_int = 36; |
| 1850 | pub const _SC_BC_DIM_MAX: ::c_int = 37; |
| 1851 | pub const _SC_BC_SCALE_MAX: ::c_int = 38; |
| 1852 | pub const _SC_BC_STRING_MAX: ::c_int = 39; |
| 1853 | pub const _SC_COLL_WEIGHTS_MAX: ::c_int = 40; |
| 1854 | pub const _SC_EXPR_NEST_MAX: ::c_int = 42; |
| 1855 | pub const _SC_LINE_MAX: ::c_int = 43; |
| 1856 | pub const _SC_RE_DUP_MAX: ::c_int = 44; |
| 1857 | pub const _SC_2_VERSION: ::c_int = 46; |
| 1858 | pub const _SC_2_C_BIND: ::c_int = 47; |
| 1859 | pub const _SC_2_C_DEV: ::c_int = 48; |
| 1860 | pub const _SC_2_FORT_DEV: ::c_int = 49; |
| 1861 | pub const _SC_2_FORT_RUN: ::c_int = 50; |
| 1862 | pub const _SC_2_SW_DEV: ::c_int = 51; |
| 1863 | pub const _SC_2_LOCALEDEF: ::c_int = 52; |
| 1864 | pub const _SC_UIO_MAXIOV: ::c_int = 60; |
| 1865 | pub const _SC_IOV_MAX: ::c_int = 60; |
| 1866 | pub const _SC_THREADS: ::c_int = 67; |
| 1867 | pub const _SC_THREAD_SAFE_FUNCTIONS: ::c_int = 68; |
| 1868 | pub const _SC_GETGR_R_SIZE_MAX: ::c_int = 69; |
| 1869 | pub const _SC_GETPW_R_SIZE_MAX: ::c_int = 70; |
| 1870 | pub const _SC_LOGIN_NAME_MAX: ::c_int = 71; |
| 1871 | pub const _SC_TTY_NAME_MAX: ::c_int = 72; |
| 1872 | pub const _SC_THREAD_DESTRUCTOR_ITERATIONS: ::c_int = 73; |
| 1873 | pub const _SC_THREAD_KEYS_MAX: ::c_int = 74; |
| 1874 | pub const _SC_THREAD_STACK_MIN: ::c_int = 75; |
| 1875 | pub const _SC_THREAD_THREADS_MAX: ::c_int = 76; |
| 1876 | pub const _SC_THREAD_ATTR_STACKADDR: ::c_int = 77; |
| 1877 | pub const _SC_THREAD_ATTR_STACKSIZE: ::c_int = 78; |
| 1878 | pub const _SC_THREAD_PRIORITY_SCHEDULING: ::c_int = 79; |
| 1879 | pub const _SC_THREAD_PRIO_INHERIT: ::c_int = 80; |
| 1880 | pub const _SC_THREAD_PRIO_PROTECT: ::c_int = 81; |
| 1881 | pub const _SC_THREAD_PROCESS_SHARED: ::c_int = 82; |
| 1882 | pub const _SC_NPROCESSORS_CONF: ::c_int = 83; |
| 1883 | pub const _SC_NPROCESSORS_ONLN: ::c_int = 84; |
| 1884 | pub const _SC_PHYS_PAGES: ::c_int = 85; |
| 1885 | pub const _SC_AVPHYS_PAGES: ::c_int = 86; |
| 1886 | pub const _SC_ATEXIT_MAX: ::c_int = 87; |
| 1887 | pub const _SC_PASS_MAX: ::c_int = 88; |
| 1888 | pub const _SC_XOPEN_VERSION: ::c_int = 89; |
| 1889 | pub const _SC_XOPEN_XCU_VERSION: ::c_int = 90; |
| 1890 | pub const _SC_XOPEN_UNIX: ::c_int = 91; |
| 1891 | pub const _SC_XOPEN_CRYPT: ::c_int = 92; |
| 1892 | pub const _SC_XOPEN_ENH_I18N: ::c_int = 93; |
| 1893 | pub const _SC_XOPEN_SHM: ::c_int = 94; |
| 1894 | pub const _SC_2_CHAR_TERM: ::c_int = 95; |
| 1895 | pub const _SC_2_UPE: ::c_int = 97; |
| 1896 | pub const _SC_XOPEN_XPG2: ::c_int = 98; |
| 1897 | pub const _SC_XOPEN_XPG3: ::c_int = 99; |
| 1898 | pub const _SC_XOPEN_XPG4: ::c_int = 100; |
| 1899 | pub const _SC_NZERO: ::c_int = 109; |
| 1900 | pub const _SC_XBS5_ILP32_OFF32: ::c_int = 125; |
| 1901 | pub const _SC_XBS5_ILP32_OFFBIG: ::c_int = 126; |
| 1902 | pub const _SC_XBS5_LP64_OFF64: ::c_int = 127; |
| 1903 | pub const _SC_XBS5_LPBIG_OFFBIG: ::c_int = 128; |
| 1904 | pub const _SC_XOPEN_LEGACY: ::c_int = 129; |
| 1905 | pub const _SC_XOPEN_REALTIME: ::c_int = 130; |
| 1906 | pub const _SC_XOPEN_REALTIME_THREADS: ::c_int = 131; |
| 1907 | pub const _SC_ADVISORY_INFO: ::c_int = 132; |
| 1908 | pub const _SC_BARRIERS: ::c_int = 133; |
| 1909 | pub const _SC_CLOCK_SELECTION: ::c_int = 137; |
| 1910 | pub const _SC_CPUTIME: ::c_int = 138; |
| 1911 | pub const _SC_THREAD_CPUTIME: ::c_int = 139; |
| 1912 | pub const _SC_MONOTONIC_CLOCK: ::c_int = 149; |
| 1913 | pub const _SC_READER_WRITER_LOCKS: ::c_int = 153; |
| 1914 | pub const _SC_SPIN_LOCKS: ::c_int = 154; |
| 1915 | pub const _SC_REGEXP: ::c_int = 155; |
| 1916 | pub const _SC_SHELL: ::c_int = 157; |
| 1917 | pub const _SC_SPAWN: ::c_int = 159; |
| 1918 | pub const _SC_SPORADIC_SERVER: ::c_int = 160; |
| 1919 | pub const _SC_THREAD_SPORADIC_SERVER: ::c_int = 161; |
| 1920 | pub const _SC_TIMEOUTS: ::c_int = 164; |
| 1921 | pub const _SC_TYPED_MEMORY_OBJECTS: ::c_int = 165; |
| 1922 | pub const _SC_2_PBS: ::c_int = 168; |
| 1923 | pub const _SC_2_PBS_ACCOUNTING: ::c_int = 169; |
| 1924 | pub const _SC_2_PBS_LOCATE: ::c_int = 170; |
| 1925 | pub const _SC_2_PBS_MESSAGE: ::c_int = 171; |
| 1926 | pub const _SC_2_PBS_TRACK: ::c_int = 172; |
| 1927 | pub const _SC_SYMLOOP_MAX: ::c_int = 173; |
| 1928 | pub const _SC_STREAMS: ::c_int = 174; |
| 1929 | pub const _SC_2_PBS_CHECKPOINT: ::c_int = 175; |
| 1930 | pub const _SC_V6_ILP32_OFF32: ::c_int = 176; |
| 1931 | pub const _SC_V6_ILP32_OFFBIG: ::c_int = 177; |
| 1932 | pub const _SC_V6_LP64_OFF64: ::c_int = 178; |
| 1933 | pub const _SC_V6_LPBIG_OFFBIG: ::c_int = 179; |
| 1934 | pub const _SC_HOST_NAME_MAX: ::c_int = 180; |
| 1935 | pub const _SC_TRACE: ::c_int = 181; |
| 1936 | pub const _SC_TRACE_EVENT_FILTER: ::c_int = 182; |
| 1937 | pub const _SC_TRACE_INHERIT: ::c_int = 183; |
| 1938 | pub const _SC_TRACE_LOG: ::c_int = 184; |
| 1939 | pub const _SC_IPV6: ::c_int = 235; |
| 1940 | pub const _SC_RAW_SOCKETS: ::c_int = 236; |
| 1941 | pub const _SC_V7_ILP32_OFF32: ::c_int = 237; |
| 1942 | pub const _SC_V7_ILP32_OFFBIG: ::c_int = 238; |
| 1943 | pub const _SC_V7_LP64_OFF64: ::c_int = 239; |
| 1944 | pub const _SC_V7_LPBIG_OFFBIG: ::c_int = 240; |
| 1945 | pub const _SC_SS_REPL_MAX: ::c_int = 241; |
| 1946 | pub const _SC_TRACE_EVENT_NAME_MAX: ::c_int = 242; |
| 1947 | pub const _SC_TRACE_NAME_MAX: ::c_int = 243; |
| 1948 | pub const _SC_TRACE_SYS_MAX: ::c_int = 244; |
| 1949 | pub const _SC_TRACE_USER_EVENT_MAX: ::c_int = 245; |
| 1950 | pub const _SC_XOPEN_STREAMS: ::c_int = 246; |
| 1951 | pub const _SC_THREAD_ROBUST_PRIO_INHERIT: ::c_int = 247; |
| 1952 | pub const _SC_THREAD_ROBUST_PRIO_PROTECT: ::c_int = 248; |
| 1953 | |
| 1954 | pub const RLIM_SAVED_MAX: ::rlim_t = RLIM_INFINITY; |
| 1955 | pub const RLIM_SAVED_CUR: ::rlim_t = RLIM_INFINITY; |
| 1956 | |
| 1957 | pub const GLOB_ERR: ::c_int = 1 << 0; |
| 1958 | pub const GLOB_MARK: ::c_int = 1 << 1; |
| 1959 | pub const GLOB_NOSORT: ::c_int = 1 << 2; |
| 1960 | pub const GLOB_DOOFFS: ::c_int = 1 << 3; |
| 1961 | pub const GLOB_NOCHECK: ::c_int = 1 << 4; |
| 1962 | pub const GLOB_APPEND: ::c_int = 1 << 5; |
| 1963 | pub const GLOB_NOESCAPE: ::c_int = 1 << 6; |
| 1964 | |
| 1965 | pub const GLOB_NOSPACE: ::c_int = 1; |
| 1966 | pub const GLOB_ABORTED: ::c_int = 2; |
| 1967 | pub const GLOB_NOMATCH: ::c_int = 3; |
| 1968 | |
| 1969 | pub const POSIX_MADV_NORMAL: ::c_int = 0; |
| 1970 | pub const POSIX_MADV_RANDOM: ::c_int = 1; |
| 1971 | pub const POSIX_MADV_SEQUENTIAL: ::c_int = 2; |
| 1972 | pub const POSIX_MADV_WILLNEED: ::c_int = 3; |
| 1973 | |
| 1974 | pub const S_IEXEC: mode_t = 64; |
| 1975 | pub const S_IWRITE: mode_t = 128; |
| 1976 | pub const S_IREAD: mode_t = 256; |
| 1977 | |
| 1978 | pub const F_LOCK: ::c_int = 1; |
| 1979 | pub const F_TEST: ::c_int = 3; |
| 1980 | pub const F_TLOCK: ::c_int = 2; |
| 1981 | pub const F_ULOCK: ::c_int = 0; |
| 1982 | |
| 1983 | pub const IFF_LOWER_UP: ::c_int = 0x10000; |
| 1984 | pub const IFF_DORMANT: ::c_int = 0x20000; |
| 1985 | pub const IFF_ECHO: ::c_int = 0x40000; |
| 1986 | |
| 1987 | pub const ST_RDONLY: ::c_ulong = 1; |
| 1988 | pub const ST_NOSUID: ::c_ulong = 2; |
| 1989 | pub const ST_NODEV: ::c_ulong = 4; |
| 1990 | pub const ST_NOEXEC: ::c_ulong = 8; |
| 1991 | pub const ST_SYNCHRONOUS: ::c_ulong = 16; |
| 1992 | pub const ST_MANDLOCK: ::c_ulong = 64; |
| 1993 | pub const ST_WRITE: ::c_ulong = 128; |
| 1994 | pub const ST_APPEND: ::c_ulong = 256; |
| 1995 | pub const ST_IMMUTABLE: ::c_ulong = 512; |
| 1996 | pub const ST_NOATIME: ::c_ulong = 1024; |
| 1997 | pub const ST_NODIRATIME: ::c_ulong = 2048; |
| 1998 | |
| 1999 | pub const RTLD_NEXT: *mut ::c_void = -1i64 as *mut ::c_void; |
| 2000 | pub const RTLD_DEFAULT: *mut ::c_void = 0i64 as *mut ::c_void; |
| 2001 | pub const RTLD_NODELETE: ::c_int = 0x1000; |
| 2002 | pub const RTLD_NOW: ::c_int = 0x2; |
| 2003 | |
| 2004 | pub const TCP_MD5SIG: ::c_int = 14; |
| 2005 | |
| 2006 | pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t { |
| 2007 | __align: [], |
| 2008 | size: [0; __SIZEOF_PTHREAD_MUTEX_T], |
| 2009 | }; |
| 2010 | pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t { |
| 2011 | __align: [], |
| 2012 | size: [0; __SIZEOF_PTHREAD_COND_T], |
| 2013 | }; |
| 2014 | pub const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = pthread_rwlock_t { |
| 2015 | __align: [], |
| 2016 | size: [0; __SIZEOF_PTHREAD_RWLOCK_T], |
| 2017 | }; |
| 2018 | pub const PTHREAD_MUTEX_NORMAL: ::c_int = 0; |
| 2019 | pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 1; |
| 2020 | pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 2; |
| 2021 | pub const PTHREAD_MUTEX_DEFAULT: ::c_int = PTHREAD_MUTEX_NORMAL; |
| 2022 | pub const PTHREAD_PROCESS_PRIVATE: ::c_int = 0; |
| 2023 | pub const PTHREAD_PROCESS_SHARED: ::c_int = 1; |
| 2024 | pub const __SIZEOF_PTHREAD_COND_T: usize = 48; |
| 2025 | |
| 2026 | pub const RENAME_NOREPLACE: ::c_int = 1; |
| 2027 | pub const RENAME_EXCHANGE: ::c_int = 2; |
| 2028 | pub const RENAME_WHITEOUT: ::c_int = 4; |
| 2029 | |
| 2030 | pub const SCHED_OTHER: ::c_int = 0; |
| 2031 | pub const SCHED_FIFO: ::c_int = 1; |
| 2032 | pub const SCHED_RR: ::c_int = 2; |
| 2033 | pub const SCHED_BATCH: ::c_int = 3; |
| 2034 | pub const SCHED_IDLE: ::c_int = 5; |
| 2035 | |
| 2036 | // netinet/in.h |
| 2037 | // NOTE: These are in addition to the constants defined in src/unix/mod.rs |
| 2038 | |
| 2039 | // IPPROTO_IP defined in src/unix/mod.rs |
| 2040 | /// Hop-by-hop option header |
| 2041 | pub const IPPROTO_HOPOPTS: ::c_int = 0; |
| 2042 | // IPPROTO_ICMP defined in src/unix/mod.rs |
| 2043 | /// group mgmt protocol |
| 2044 | pub const IPPROTO_IGMP: ::c_int = 2; |
| 2045 | /// for compatibility |
| 2046 | pub const IPPROTO_IPIP: ::c_int = 4; |
| 2047 | // IPPROTO_TCP defined in src/unix/mod.rs |
| 2048 | /// exterior gateway protocol |
| 2049 | pub const IPPROTO_EGP: ::c_int = 8; |
| 2050 | /// pup |
| 2051 | pub const IPPROTO_PUP: ::c_int = 12; |
| 2052 | // IPPROTO_UDP defined in src/unix/mod.rs |
| 2053 | /// xns idp |
| 2054 | pub const IPPROTO_IDP: ::c_int = 22; |
| 2055 | /// tp-4 w/ class negotiation |
| 2056 | pub const IPPROTO_TP: ::c_int = 29; |
| 2057 | /// DCCP |
| 2058 | pub const IPPROTO_DCCP: ::c_int = 33; |
| 2059 | // IPPROTO_IPV6 defined in src/unix/mod.rs |
| 2060 | /// IP6 routing header |
| 2061 | pub const IPPROTO_ROUTING: ::c_int = 43; |
| 2062 | /// IP6 fragmentation header |
| 2063 | pub const IPPROTO_FRAGMENT: ::c_int = 44; |
| 2064 | /// resource reservation |
| 2065 | pub const IPPROTO_RSVP: ::c_int = 46; |
| 2066 | /// General Routing Encap. |
| 2067 | pub const IPPROTO_GRE: ::c_int = 47; |
| 2068 | /// IP6 Encap Sec. Payload |
| 2069 | pub const IPPROTO_ESP: ::c_int = 50; |
| 2070 | /// IP6 Auth Header |
| 2071 | pub const IPPROTO_AH: ::c_int = 51; |
| 2072 | // IPPROTO_ICMPV6 defined in src/unix/mod.rs |
| 2073 | /// IP6 no next header |
| 2074 | pub const IPPROTO_NONE: ::c_int = 59; |
| 2075 | /// IP6 destination option |
| 2076 | pub const IPPROTO_DSTOPTS: ::c_int = 60; |
| 2077 | pub const IPPROTO_MTP: ::c_int = 92; |
| 2078 | pub const IPPROTO_BEETPH: ::c_int = 94; |
| 2079 | /// encapsulation header |
| 2080 | pub const IPPROTO_ENCAP: ::c_int = 98; |
| 2081 | /// Protocol indep. multicast |
| 2082 | pub const IPPROTO_PIM: ::c_int = 103; |
| 2083 | /// IP Payload Comp. Protocol |
| 2084 | pub const IPPROTO_COMP: ::c_int = 108; |
| 2085 | /// SCTP |
| 2086 | pub const IPPROTO_SCTP: ::c_int = 132; |
| 2087 | pub const IPPROTO_MH: ::c_int = 135; |
| 2088 | pub const IPPROTO_UDPLITE: ::c_int = 136; |
| 2089 | pub const IPPROTO_MPLS: ::c_int = 137; |
| 2090 | /// raw IP packet |
| 2091 | pub const IPPROTO_RAW: ::c_int = 255; |
| 2092 | pub const IPPROTO_MAX: ::c_int = 256; |
| 2093 | |
| 2094 | pub const AF_IB: ::c_int = 27; |
| 2095 | pub const AF_MPLS: ::c_int = 28; |
| 2096 | pub const AF_NFC: ::c_int = 39; |
| 2097 | pub const AF_VSOCK: ::c_int = 40; |
| 2098 | pub const PF_IB: ::c_int = AF_IB; |
| 2099 | pub const PF_MPLS: ::c_int = AF_MPLS; |
| 2100 | pub const PF_NFC: ::c_int = AF_NFC; |
| 2101 | pub const PF_VSOCK: ::c_int = AF_VSOCK; |
| 2102 | |
| 2103 | // System V IPC |
| 2104 | pub const IPC_PRIVATE: ::key_t = 0; |
| 2105 | |
| 2106 | pub const IPC_CREAT: ::c_int = 0o1000; |
| 2107 | pub const IPC_EXCL: ::c_int = 0o2000; |
| 2108 | pub const IPC_NOWAIT: ::c_int = 0o4000; |
| 2109 | |
| 2110 | pub const IPC_RMID: ::c_int = 0; |
| 2111 | pub const IPC_SET: ::c_int = 1; |
| 2112 | pub const IPC_STAT: ::c_int = 2; |
| 2113 | pub const IPC_INFO: ::c_int = 3; |
| 2114 | pub const MSG_STAT: ::c_int = 11; |
| 2115 | pub const MSG_INFO: ::c_int = 12; |
| 2116 | |
| 2117 | pub const MSG_NOERROR: ::c_int = 0o10000; |
| 2118 | pub const MSG_EXCEPT: ::c_int = 0o20000; |
| 2119 | pub const MSG_COPY: ::c_int = 0o40000; |
| 2120 | |
| 2121 | pub const SHM_R: ::c_int = 0o400; |
| 2122 | pub const SHM_W: ::c_int = 0o200; |
| 2123 | |
| 2124 | pub const SHM_RDONLY: ::c_int = 0o10000; |
| 2125 | pub const SHM_RND: ::c_int = 0o20000; |
| 2126 | pub const SHM_REMAP: ::c_int = 0o40000; |
| 2127 | pub const SHM_EXEC: ::c_int = 0o100000; |
| 2128 | |
| 2129 | pub const SHM_LOCK: ::c_int = 11; |
| 2130 | pub const SHM_UNLOCK: ::c_int = 12; |
| 2131 | |
| 2132 | pub const SHM_HUGETLB: ::c_int = 0o4000; |
| 2133 | pub const SHM_NORESERVE: ::c_int = 0o10000; |
| 2134 | |
| 2135 | pub const EPOLLRDHUP: ::c_int = 0x2000; |
| 2136 | pub const EPOLLEXCLUSIVE: ::c_int = 0x10000000; |
| 2137 | pub const EPOLLONESHOT: ::c_int = 0x40000000; |
| 2138 | |
| 2139 | pub const QFMT_VFS_OLD: ::c_int = 1; |
| 2140 | pub const QFMT_VFS_V0: ::c_int = 2; |
| 2141 | pub const QFMT_VFS_V1: ::c_int = 4; |
| 2142 | |
| 2143 | pub const EFD_SEMAPHORE: ::c_int = 0x1; |
| 2144 | |
| 2145 | pub const LOG_NFACILITIES: ::c_int = 24; |
| 2146 | |
| 2147 | pub const SEM_FAILED: *mut ::sem_t = 0 as *mut sem_t; |
| 2148 | |
| 2149 | pub const RB_AUTOBOOT: ::c_int = 0x01234567u32 as i32; |
| 2150 | pub const RB_HALT_SYSTEM: ::c_int = 0xcdef0123u32 as i32; |
| 2151 | pub const RB_ENABLE_CAD: ::c_int = 0x89abcdefu32 as i32; |
| 2152 | pub const RB_DISABLE_CAD: ::c_int = 0x00000000u32 as i32; |
| 2153 | pub const RB_POWER_OFF: ::c_int = 0x4321fedcu32 as i32; |
| 2154 | pub const RB_SW_SUSPEND: ::c_int = 0xd000fce2u32 as i32; |
| 2155 | pub const RB_KEXEC: ::c_int = 0x45584543u32 as i32; |
| 2156 | |
| 2157 | pub const AI_PASSIVE: ::c_int = 0x0001; |
| 2158 | pub const AI_CANONNAME: ::c_int = 0x0002; |
| 2159 | pub const AI_NUMERICHOST: ::c_int = 0x0004; |
| 2160 | pub const AI_V4MAPPED: ::c_int = 0x0008; |
| 2161 | pub const AI_ALL: ::c_int = 0x0010; |
| 2162 | pub const AI_ADDRCONFIG: ::c_int = 0x0020; |
| 2163 | |
| 2164 | pub const AI_NUMERICSERV: ::c_int = 0x0400; |
| 2165 | |
| 2166 | pub const EAI_BADFLAGS: ::c_int = -1; |
| 2167 | pub const EAI_NONAME: ::c_int = -2; |
| 2168 | pub const EAI_AGAIN: ::c_int = -3; |
| 2169 | pub const EAI_FAIL: ::c_int = -4; |
| 2170 | pub const EAI_FAMILY: ::c_int = -6; |
| 2171 | pub const EAI_SOCKTYPE: ::c_int = -7; |
| 2172 | pub const EAI_SERVICE: ::c_int = -8; |
| 2173 | pub const EAI_MEMORY: ::c_int = -10; |
| 2174 | pub const EAI_OVERFLOW: ::c_int = -12; |
| 2175 | |
| 2176 | pub const NI_NUMERICHOST: ::c_int = 1; |
| 2177 | pub const NI_NUMERICSERV: ::c_int = 2; |
| 2178 | pub const NI_NOFQDN: ::c_int = 4; |
| 2179 | pub const NI_NAMEREQD: ::c_int = 8; |
| 2180 | pub const NI_DGRAM: ::c_int = 16; |
| 2181 | |
| 2182 | pub const SYNC_FILE_RANGE_WAIT_BEFORE: ::c_uint = 1; |
| 2183 | pub const SYNC_FILE_RANGE_WRITE: ::c_uint = 2; |
| 2184 | pub const SYNC_FILE_RANGE_WAIT_AFTER: ::c_uint = 4; |
| 2185 | |
| 2186 | pub const EAI_SYSTEM: ::c_int = -11; |
| 2187 | |
| 2188 | pub const AIO_CANCELED: ::c_int = 0; |
| 2189 | pub const AIO_NOTCANCELED: ::c_int = 1; |
| 2190 | pub const AIO_ALLDONE: ::c_int = 2; |
| 2191 | pub const LIO_READ: ::c_int = 0; |
| 2192 | pub const LIO_WRITE: ::c_int = 1; |
| 2193 | pub const LIO_NOP: ::c_int = 2; |
| 2194 | pub const LIO_WAIT: ::c_int = 0; |
| 2195 | pub const LIO_NOWAIT: ::c_int = 1; |
| 2196 | |
| 2197 | pub const MREMAP_MAYMOVE: ::c_int = 1; |
| 2198 | pub const MREMAP_FIXED: ::c_int = 2; |
| 2199 | |
| 2200 | pub const PR_SET_PDEATHSIG: ::c_int = 1; |
| 2201 | pub const PR_GET_PDEATHSIG: ::c_int = 2; |
| 2202 | |
| 2203 | pub const PR_GET_DUMPABLE: ::c_int = 3; |
| 2204 | pub const PR_SET_DUMPABLE: ::c_int = 4; |
| 2205 | |
| 2206 | pub const PR_GET_UNALIGN: ::c_int = 5; |
| 2207 | pub const PR_SET_UNALIGN: ::c_int = 6; |
| 2208 | pub const PR_UNALIGN_NOPRINT: ::c_int = 1; |
| 2209 | pub const PR_UNALIGN_SIGBUS: ::c_int = 2; |
| 2210 | |
| 2211 | pub const PR_GET_KEEPCAPS: ::c_int = 7; |
| 2212 | pub const PR_SET_KEEPCAPS: ::c_int = 8; |
| 2213 | |
| 2214 | pub const PR_GET_FPEMU: ::c_int = 9; |
| 2215 | pub const PR_SET_FPEMU: ::c_int = 10; |
| 2216 | pub const PR_FPEMU_NOPRINT: ::c_int = 1; |
| 2217 | pub const PR_FPEMU_SIGFPE: ::c_int = 2; |
| 2218 | |
| 2219 | pub const PR_GET_FPEXC: ::c_int = 11; |
| 2220 | pub const PR_SET_FPEXC: ::c_int = 12; |
| 2221 | pub const PR_FP_EXC_SW_ENABLE: ::c_int = 0x80; |
| 2222 | pub const PR_FP_EXC_DIV: ::c_int = 0x010000; |
| 2223 | pub const PR_FP_EXC_OVF: ::c_int = 0x020000; |
| 2224 | pub const PR_FP_EXC_UND: ::c_int = 0x040000; |
| 2225 | pub const PR_FP_EXC_RES: ::c_int = 0x080000; |
| 2226 | pub const PR_FP_EXC_INV: ::c_int = 0x100000; |
| 2227 | pub const PR_FP_EXC_DISABLED: ::c_int = 0; |
| 2228 | pub const PR_FP_EXC_NONRECOV: ::c_int = 1; |
| 2229 | pub const PR_FP_EXC_ASYNC: ::c_int = 2; |
| 2230 | pub const PR_FP_EXC_PRECISE: ::c_int = 3; |
| 2231 | |
| 2232 | pub const PR_GET_TIMING: ::c_int = 13; |
| 2233 | pub const PR_SET_TIMING: ::c_int = 14; |
| 2234 | pub const PR_TIMING_STATISTICAL: ::c_int = 0; |
| 2235 | pub const PR_TIMING_TIMESTAMP: ::c_int = 1; |
| 2236 | |
| 2237 | pub const PR_SET_NAME: ::c_int = 15; |
| 2238 | pub const PR_GET_NAME: ::c_int = 16; |
| 2239 | |
| 2240 | pub const PR_GET_ENDIAN: ::c_int = 19; |
| 2241 | pub const PR_SET_ENDIAN: ::c_int = 20; |
| 2242 | pub const PR_ENDIAN_BIG: ::c_int = 0; |
| 2243 | pub const PR_ENDIAN_LITTLE: ::c_int = 1; |
| 2244 | pub const PR_ENDIAN_PPC_LITTLE: ::c_int = 2; |
| 2245 | |
| 2246 | pub const PR_GET_SECCOMP: ::c_int = 21; |
| 2247 | pub const PR_SET_SECCOMP: ::c_int = 22; |
| 2248 | |
| 2249 | pub const PR_CAPBSET_READ: ::c_int = 23; |
| 2250 | pub const PR_CAPBSET_DROP: ::c_int = 24; |
| 2251 | |
| 2252 | pub const PR_GET_TSC: ::c_int = 25; |
| 2253 | pub const PR_SET_TSC: ::c_int = 26; |
| 2254 | pub const PR_TSC_ENABLE: ::c_int = 1; |
| 2255 | pub const PR_TSC_SIGSEGV: ::c_int = 2; |
| 2256 | |
| 2257 | pub const PR_GET_SECUREBITS: ::c_int = 27; |
| 2258 | pub const PR_SET_SECUREBITS: ::c_int = 28; |
| 2259 | |
| 2260 | pub const PR_SET_TIMERSLACK: ::c_int = 29; |
| 2261 | pub const PR_GET_TIMERSLACK: ::c_int = 30; |
| 2262 | |
| 2263 | pub const PR_TASK_PERF_EVENTS_DISABLE: ::c_int = 31; |
| 2264 | pub const PR_TASK_PERF_EVENTS_ENABLE: ::c_int = 32; |
| 2265 | |
| 2266 | pub const PR_MCE_KILL: ::c_int = 33; |
| 2267 | pub const PR_MCE_KILL_CLEAR: ::c_int = 0; |
| 2268 | pub const PR_MCE_KILL_SET: ::c_int = 1; |
| 2269 | |
| 2270 | pub const PR_MCE_KILL_LATE: ::c_int = 0; |
| 2271 | pub const PR_MCE_KILL_EARLY: ::c_int = 1; |
| 2272 | pub const PR_MCE_KILL_DEFAULT: ::c_int = 2; |
| 2273 | |
| 2274 | pub const PR_MCE_KILL_GET: ::c_int = 34; |
| 2275 | |
| 2276 | pub const PR_SET_MM: ::c_int = 35; |
| 2277 | pub const PR_SET_MM_START_CODE: ::c_int = 1; |
| 2278 | pub const PR_SET_MM_END_CODE: ::c_int = 2; |
| 2279 | pub const PR_SET_MM_START_DATA: ::c_int = 3; |
| 2280 | pub const PR_SET_MM_END_DATA: ::c_int = 4; |
| 2281 | pub const PR_SET_MM_START_STACK: ::c_int = 5; |
| 2282 | pub const PR_SET_MM_START_BRK: ::c_int = 6; |
| 2283 | pub const PR_SET_MM_BRK: ::c_int = 7; |
| 2284 | pub const PR_SET_MM_ARG_START: ::c_int = 8; |
| 2285 | pub const PR_SET_MM_ARG_END: ::c_int = 9; |
| 2286 | pub const PR_SET_MM_ENV_START: ::c_int = 10; |
| 2287 | pub const PR_SET_MM_ENV_END: ::c_int = 11; |
| 2288 | pub const PR_SET_MM_AUXV: ::c_int = 12; |
| 2289 | pub const PR_SET_MM_EXE_FILE: ::c_int = 13; |
| 2290 | pub const PR_SET_MM_MAP: ::c_int = 14; |
| 2291 | pub const PR_SET_MM_MAP_SIZE: ::c_int = 15; |
| 2292 | |
| 2293 | pub const PR_SET_PTRACER: ::c_int = 0x59616d61; |
| 2294 | |
| 2295 | pub const PR_SET_CHILD_SUBREAPER: ::c_int = 36; |
| 2296 | pub const PR_GET_CHILD_SUBREAPER: ::c_int = 37; |
| 2297 | |
| 2298 | pub const PR_SET_NO_NEW_PRIVS: ::c_int = 38; |
| 2299 | pub const PR_GET_NO_NEW_PRIVS: ::c_int = 39; |
| 2300 | |
| 2301 | pub const PR_GET_TID_ADDRESS: ::c_int = 40; |
| 2302 | |
| 2303 | pub const PR_SET_THP_DISABLE: ::c_int = 41; |
| 2304 | pub const PR_GET_THP_DISABLE: ::c_int = 42; |
| 2305 | |
| 2306 | pub const PR_MPX_ENABLE_MANAGEMENT: ::c_int = 43; |
| 2307 | pub const PR_MPX_DISABLE_MANAGEMENT: ::c_int = 44; |
| 2308 | |
| 2309 | pub const PR_SET_FP_MODE: ::c_int = 45; |
| 2310 | pub const PR_GET_FP_MODE: ::c_int = 46; |
| 2311 | pub const PR_FP_MODE_FR: ::c_int = 1 << 0; |
| 2312 | pub const PR_FP_MODE_FRE: ::c_int = 1 << 1; |
| 2313 | |
| 2314 | pub const PR_CAP_AMBIENT: ::c_int = 47; |
| 2315 | pub const PR_CAP_AMBIENT_IS_SET: ::c_int = 1; |
| 2316 | pub const PR_CAP_AMBIENT_RAISE: ::c_int = 2; |
| 2317 | pub const PR_CAP_AMBIENT_LOWER: ::c_int = 3; |
| 2318 | pub const PR_CAP_AMBIENT_CLEAR_ALL: ::c_int = 4; |
| 2319 | |
| 2320 | pub const GRND_NONBLOCK: ::c_uint = 0x0001; |
| 2321 | pub const GRND_RANDOM: ::c_uint = 0x0002; |
| 2322 | |
| 2323 | pub const ITIMER_REAL: ::c_int = 0; |
| 2324 | pub const ITIMER_VIRTUAL: ::c_int = 1; |
| 2325 | pub const ITIMER_PROF: ::c_int = 2; |
| 2326 | |
| 2327 | pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC; |
| 2328 | pub const TFD_NONBLOCK: ::c_int = O_NONBLOCK; |
| 2329 | pub const TFD_TIMER_ABSTIME: ::c_int = 1; |
| 2330 | |
| 2331 | pub const XATTR_CREATE: ::c_int = 0x1; |
| 2332 | pub const XATTR_REPLACE: ::c_int = 0x2; |
| 2333 | |
| 2334 | pub const _POSIX_VDISABLE: ::cc_t = 0; |
| 2335 | |
| 2336 | pub const FALLOC_FL_KEEP_SIZE: ::c_int = 0x01; |
| 2337 | pub const FALLOC_FL_PUNCH_HOLE: ::c_int = 0x02; |
| 2338 | pub const FALLOC_FL_COLLAPSE_RANGE: ::c_int = 0x08; |
| 2339 | pub const FALLOC_FL_ZERO_RANGE: ::c_int = 0x10; |
| 2340 | pub const FALLOC_FL_INSERT_RANGE: ::c_int = 0x20; |
| 2341 | pub const FALLOC_FL_UNSHARE_RANGE: ::c_int = 0x40; |
| 2342 | |
| 2343 | // On Linux, libc doesn't define this constant, libattr does instead. |
| 2344 | // We still define it for Linux as it's defined by libc on other platforms, |
| 2345 | // and it's mentioned in the man pages for getxattr and setxattr. |
| 2346 | pub const ENOATTR: ::c_int = ::ENODATA; |
| 2347 | |
| 2348 | pub const SO_ORIGINAL_DST: ::c_int = 80; |
| 2349 | pub const IUTF8: ::tcflag_t = 0x00004000; |
| 2350 | pub const CMSPAR: ::tcflag_t = 0o10000000000; |
| 2351 | |
| 2352 | pub const MFD_CLOEXEC: ::c_uint = 0x0001; |
| 2353 | pub const MFD_ALLOW_SEALING: ::c_uint = 0x0002; |
| 2354 | |
| 2355 | // these are used in the p_type field of Elf32_Phdr and Elf64_Phdr, which has |
| 2356 | // the type Elf32Word and Elf64Word respectively. Luckily, both of those are u32 |
| 2357 | // so we can use that type here to avoid having to cast. |
| 2358 | pub const PT_NULL: u32 = 0; |
| 2359 | pub const PT_LOAD: u32 = 1; |
| 2360 | pub const PT_DYNAMIC: u32 = 2; |
| 2361 | pub const PT_INTERP: u32 = 3; |
| 2362 | pub const PT_NOTE: u32 = 4; |
| 2363 | pub const PT_SHLIB: u32 = 5; |
| 2364 | pub const PT_PHDR: u32 = 6; |
| 2365 | pub const PT_TLS: u32 = 7; |
| 2366 | pub const PT_NUM: u32 = 8; |
| 2367 | pub const PT_LOOS: u32 = 0x60000000; |
| 2368 | pub const PT_GNU_EH_FRAME: u32 = 0x6474e550; |
| 2369 | pub const PT_GNU_STACK: u32 = 0x6474e551; |
| 2370 | pub const PT_GNU_RELRO: u32 = 0x6474e552; |
| 2371 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 2372 | pub const SFD_CLOEXEC: ::c_int = 0x080000; |
| 2373 | |
| 2374 | pub const NCCS: usize = 32; |
| 2375 | |
| 2376 | pub const O_TRUNC: ::c_int = 0x00040000; |
| 2377 | pub const O_NOATIME: ::c_int = 0x00002000; |
| 2378 | pub const O_CLOEXEC: ::c_int = 0x00000100; |
| 2379 | pub const O_TMPFILE: ::c_int = 0x00004000; |
| 2380 | |
| 2381 | pub const EBFONT: ::c_int = 59; |
| 2382 | pub const ENOSTR: ::c_int = 60; |
| 2383 | pub const ENODATA: ::c_int = 61; |
| 2384 | pub const ETIME: ::c_int = 62; |
| 2385 | pub const ENOSR: ::c_int = 63; |
| 2386 | pub const ENONET: ::c_int = 64; |
| 2387 | pub const ENOPKG: ::c_int = 65; |
| 2388 | pub const EREMOTE: ::c_int = 66; |
| 2389 | pub const ENOLINK: ::c_int = 67; |
| 2390 | pub const EADV: ::c_int = 68; |
| 2391 | pub const ESRMNT: ::c_int = 69; |
| 2392 | pub const ECOMM: ::c_int = 70; |
| 2393 | pub const EPROTO: ::c_int = 71; |
| 2394 | pub const EDOTDOT: ::c_int = 73; |
| 2395 | |
| 2396 | pub const SA_NODEFER: ::c_int = 0x40000000; |
| 2397 | pub const SA_RESETHAND: ::c_int = 0x80000000; |
| 2398 | pub const SA_RESTART: ::c_int = 0x10000000; |
| 2399 | pub const SA_NOCLDSTOP: ::c_int = 0x00000001; |
| 2400 | |
| 2401 | pub const EPOLL_CLOEXEC: ::c_int = 0x80000; |
| 2402 | |
| 2403 | pub const EFD_CLOEXEC: ::c_int = 0x80000; |
| 2404 | |
| 2405 | pub const BUFSIZ: ::c_uint = 1024; |
| 2406 | pub const TMP_MAX: ::c_uint = 10000; |
| 2407 | pub const FOPEN_MAX: ::c_uint = 1000; |
| 2408 | pub const O_PATH: ::c_int = 0x00400000; |
| 2409 | pub const O_EXEC: ::c_int = O_PATH; |
| 2410 | pub const O_SEARCH: ::c_int = O_PATH; |
| 2411 | pub const O_ACCMODE: ::c_int = (03 | O_SEARCH); |
| 2412 | pub const O_NDELAY: ::c_int = O_NONBLOCK; |
| 2413 | pub const NI_MAXHOST: ::socklen_t = 255; |
| 2414 | pub const PTHREAD_STACK_MIN: ::size_t = 2048; |
| 2415 | pub const POSIX_FADV_DONTNEED: ::c_int = 4; |
| 2416 | pub const POSIX_FADV_NOREUSE: ::c_int = 5; |
| 2417 | |
| 2418 | pub const POSIX_MADV_DONTNEED: ::c_int = 4; |
| 2419 | |
| 2420 | pub const RLIM_INFINITY: ::rlim_t = !0; |
| 2421 | pub const RLIMIT_RTTIME: ::c_int = 15; |
| 2422 | pub const RLIMIT_NLIMITS: ::c_int = 16; |
| 2423 | |
| 2424 | pub const MAP_ANONYMOUS: ::c_int = MAP_ANON; |
| 2425 | |
| 2426 | pub const SOCK_DCCP: ::c_int = 6; |
| 2427 | pub const SOCK_PACKET: ::c_int = 10; |
| 2428 | |
| 2429 | pub const TCP_COOKIE_TRANSACTIONS: ::c_int = 15; |
| 2430 | pub const TCP_THIN_LINEAR_TIMEOUTS: ::c_int = 16; |
| 2431 | pub const TCP_THIN_DUPACK: ::c_int = 17; |
| 2432 | pub const TCP_USER_TIMEOUT: ::c_int = 18; |
| 2433 | pub const TCP_REPAIR: ::c_int = 19; |
| 2434 | pub const TCP_REPAIR_QUEUE: ::c_int = 20; |
| 2435 | pub const TCP_QUEUE_SEQ: ::c_int = 21; |
| 2436 | pub const TCP_REPAIR_OPTIONS: ::c_int = 22; |
| 2437 | pub const TCP_FASTOPEN: ::c_int = 23; |
| 2438 | pub const TCP_TIMESTAMP: ::c_int = 24; |
| 2439 | |
| 2440 | pub const SIGUNUSED: ::c_int = ::SIGSYS; |
| 2441 | |
| 2442 | pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4; |
| 2443 | pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4; |
| 2444 | pub const __SIZEOF_PTHREAD_RWLOCKATTR_T: usize = 8; |
| 2445 | |
| 2446 | pub const CPU_SETSIZE: ::c_int = 128; |
| 2447 | |
| 2448 | pub const PTRACE_TRACEME: ::c_int = 0; |
| 2449 | pub const PTRACE_PEEKTEXT: ::c_int = 1; |
| 2450 | pub const PTRACE_PEEKDATA: ::c_int = 2; |
| 2451 | pub const PTRACE_PEEKUSER: ::c_int = 3; |
| 2452 | pub const PTRACE_POKETEXT: ::c_int = 4; |
| 2453 | pub const PTRACE_POKEDATA: ::c_int = 5; |
| 2454 | pub const PTRACE_POKEUSER: ::c_int = 6; |
| 2455 | pub const PTRACE_CONT: ::c_int = 7; |
| 2456 | pub const PTRACE_KILL: ::c_int = 8; |
| 2457 | pub const PTRACE_SINGLESTEP: ::c_int = 9; |
| 2458 | pub const PTRACE_GETREGS: ::c_int = 12; |
| 2459 | pub const PTRACE_SETREGS: ::c_int = 13; |
| 2460 | pub const PTRACE_GETFPREGS: ::c_int = 14; |
| 2461 | pub const PTRACE_SETFPREGS: ::c_int = 15; |
| 2462 | pub const PTRACE_ATTACH: ::c_int = 16; |
| 2463 | pub const PTRACE_DETACH: ::c_int = 17; |
| 2464 | pub const PTRACE_GETFPXREGS: ::c_int = 18; |
| 2465 | pub const PTRACE_SETFPXREGS: ::c_int = 19; |
| 2466 | pub const PTRACE_SYSCALL: ::c_int = 24; |
| 2467 | pub const PTRACE_SETOPTIONS: ::c_int = 0x4200; |
| 2468 | pub const PTRACE_GETEVENTMSG: ::c_int = 0x4201; |
| 2469 | pub const PTRACE_GETSIGINFO: ::c_int = 0x4202; |
| 2470 | pub const PTRACE_SETSIGINFO: ::c_int = 0x4203; |
| 2471 | pub const PTRACE_GETREGSET: ::c_int = 0x4204; |
| 2472 | pub const PTRACE_SETREGSET: ::c_int = 0x4205; |
| 2473 | pub const PTRACE_SEIZE: ::c_int = 0x4206; |
| 2474 | pub const PTRACE_INTERRUPT: ::c_int = 0x4207; |
| 2475 | pub const PTRACE_LISTEN: ::c_int = 0x4208; |
| 2476 | pub const PTRACE_PEEKSIGINFO: ::c_int = 0x4209; |
| 2477 | |
| 2478 | pub const EPOLLWAKEUP: ::c_int = 0x20000000; |
| 2479 | |
| 2480 | pub const EFD_NONBLOCK: ::c_int = ::O_NONBLOCK; |
| 2481 | |
| 2482 | pub const SFD_NONBLOCK: ::c_int = ::O_NONBLOCK; |
| 2483 | |
| 2484 | pub const TCSANOW: ::c_int = 0; |
| 2485 | pub const TCSADRAIN: ::c_int = 1; |
| 2486 | pub const TCSAFLUSH: ::c_int = 2; |
| 2487 | |
| 2488 | pub const TIOCINQ: ::c_int = ::FIONREAD; |
| 2489 | |
| 2490 | pub const RTLD_GLOBAL: ::c_int = 0x100; |
| 2491 | pub const RTLD_NOLOAD: ::c_int = 0x4; |
| 2492 | |
| 2493 | // TODO(#247) Temporarily musl-specific (available since musl 0.9.12 / Linux |
| 2494 | // kernel 3.10). See also notbsd/mod.rs |
| 2495 | pub const CLOCK_SGI_CYCLE: ::clockid_t = 10; |
| 2496 | pub const CLOCK_TAI: ::clockid_t = 11; |
| 2497 | |
| 2498 | pub const MCL_CURRENT: ::c_int = 0x0001; |
| 2499 | pub const MCL_FUTURE: ::c_int = 0x0002; |
| 2500 | |
| 2501 | pub const CBAUD: ::tcflag_t = 0o0010017; |
| 2502 | pub const TAB1: ::c_int = 0x00000800; |
| 2503 | pub const TAB2: ::c_int = 0x00001000; |
| 2504 | pub const TAB3: ::c_int = 0x00001800; |
| 2505 | pub const CR1: ::c_int = 0x00000200; |
| 2506 | pub const CR2: ::c_int = 0x00000400; |
| 2507 | pub const CR3: ::c_int = 0x00000600; |
| 2508 | pub const FF1: ::c_int = 0x00008000; |
| 2509 | pub const BS1: ::c_int = 0x00002000; |
| 2510 | pub const VT1: ::c_int = 0x00004000; |
| 2511 | pub const VWERASE: usize = 14; |
| 2512 | pub const VREPRINT: usize = 12; |
| 2513 | pub const VSUSP: usize = 10; |
| 2514 | pub const VSTART: usize = 8; |
| 2515 | pub const VSTOP: usize = 9; |
| 2516 | pub const VDISCARD: usize = 13; |
| 2517 | pub const VTIME: usize = 5; |
| 2518 | pub const IXON: ::tcflag_t = 0x00000400; |
| 2519 | pub const IXOFF: ::tcflag_t = 0x00001000; |
| 2520 | pub const ONLCR: ::tcflag_t = 0x4; |
| 2521 | pub const CSIZE: ::tcflag_t = 0x00000030; |
| 2522 | pub const CS6: ::tcflag_t = 0x00000010; |
| 2523 | pub const CS7: ::tcflag_t = 0x00000020; |
| 2524 | pub const CS8: ::tcflag_t = 0x00000030; |
| 2525 | pub const CSTOPB: ::tcflag_t = 0x00000040; |
| 2526 | pub const CREAD: ::tcflag_t = 0x00000080; |
| 2527 | pub const PARENB: ::tcflag_t = 0x00000100; |
| 2528 | pub const PARODD: ::tcflag_t = 0x00000200; |
| 2529 | pub const HUPCL: ::tcflag_t = 0x00000400; |
| 2530 | pub const CLOCAL: ::tcflag_t = 0x00000800; |
| 2531 | pub const ECHOKE: ::tcflag_t = 0x00000800; |
| 2532 | pub const ECHOE: ::tcflag_t = 0x00000010; |
| 2533 | pub const ECHOK: ::tcflag_t = 0x00000020; |
| 2534 | pub const ECHONL: ::tcflag_t = 0x00000040; |
| 2535 | pub const ECHOPRT: ::tcflag_t = 0x00000400; |
| 2536 | pub const ECHOCTL: ::tcflag_t = 0x00000200; |
| 2537 | pub const ISIG: ::tcflag_t = 0x00000001; |
| 2538 | pub const ICANON: ::tcflag_t = 0x00000002; |
| 2539 | pub const PENDIN: ::tcflag_t = 0x00004000; |
| 2540 | pub const NOFLSH: ::tcflag_t = 0x00000080; |
| 2541 | pub const CIBAUD: ::tcflag_t = 0o02003600000; |
| 2542 | pub const CBAUDEX: ::tcflag_t = 0o010000; |
| 2543 | pub const VSWTC: usize = 7; |
| 2544 | pub const OLCUC: ::tcflag_t = 0o000002; |
| 2545 | pub const NLDLY: ::tcflag_t = 0o000400; |
| 2546 | pub const CRDLY: ::tcflag_t = 0o003000; |
| 2547 | pub const TABDLY: ::tcflag_t = 0o014000; |
| 2548 | pub const BSDLY: ::tcflag_t = 0o020000; |
| 2549 | pub const FFDLY: ::tcflag_t = 0o100000; |
| 2550 | pub const VTDLY: ::tcflag_t = 0o040000; |
| 2551 | pub const XTABS: ::tcflag_t = 0o014000; |
| 2552 | |
| 2553 | pub const B0: ::speed_t = 0o000000; |
| 2554 | pub const B50: ::speed_t = 0o000001; |
| 2555 | pub const B75: ::speed_t = 0o000002; |
| 2556 | pub const B110: ::speed_t = 0o000003; |
| 2557 | pub const B134: ::speed_t = 0o000004; |
| 2558 | pub const B150: ::speed_t = 0o000005; |
| 2559 | pub const B200: ::speed_t = 0o000006; |
| 2560 | pub const B300: ::speed_t = 0o000007; |
| 2561 | pub const B600: ::speed_t = 0o000010; |
| 2562 | pub const B1200: ::speed_t = 0o000011; |
| 2563 | pub const B1800: ::speed_t = 0o000012; |
| 2564 | pub const B2400: ::speed_t = 0o000013; |
| 2565 | pub const B4800: ::speed_t = 0o000014; |
| 2566 | pub const B9600: ::speed_t = 0o000015; |
| 2567 | pub const B19200: ::speed_t = 0o000016; |
| 2568 | pub const B38400: ::speed_t = 0o000017; |
| 2569 | pub const EXTA: ::speed_t = B19200; |
| 2570 | pub const EXTB: ::speed_t = B38400; |
| 2571 | pub const B57600: ::speed_t = 0o010001; |
| 2572 | pub const B115200: ::speed_t = 0o010002; |
| 2573 | pub const B230400: ::speed_t = 0o010003; |
| 2574 | pub const B460800: ::speed_t = 0o010004; |
| 2575 | pub const B500000: ::speed_t = 0o010005; |
| 2576 | pub const B576000: ::speed_t = 0o010006; |
| 2577 | pub const B921600: ::speed_t = 0o010007; |
| 2578 | pub const B1000000: ::speed_t = 0o010010; |
| 2579 | pub const B1152000: ::speed_t = 0o010011; |
| 2580 | pub const B1500000: ::speed_t = 0o010012; |
| 2581 | pub const B2000000: ::speed_t = 0o010013; |
| 2582 | pub const B2500000: ::speed_t = 0o010014; |
| 2583 | pub const B3000000: ::speed_t = 0o010015; |
| 2584 | pub const B3500000: ::speed_t = 0o010016; |
| 2585 | pub const B4000000: ::speed_t = 0o010017; |
| 2586 | |
| 2587 | pub const SO_BINDTODEVICE: ::c_int = 25; |
| 2588 | pub const SO_TIMESTAMP: ::c_int = 29; |
| 2589 | pub const SO_MARK: ::c_int = 36; |
| 2590 | pub const SO_RXQ_OVFL: ::c_int = 40; |
| 2591 | pub const SO_PEEK_OFF: ::c_int = 42; |
| 2592 | pub const SO_BUSY_POLL: ::c_int = 46; |
| 2593 | |
| 2594 | pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56; |
| 2595 | pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40; |
| 2596 | |
| 2597 | pub const O_ASYNC: ::c_int = 0x00000400; |
| 2598 | |
| 2599 | pub const FIOCLEX: ::c_int = 0x5451; |
| 2600 | pub const FIONBIO: ::c_int = 0x5421; |
| 2601 | |
| 2602 | pub const RLIMIT_RSS: ::c_int = 5; |
| 2603 | pub const RLIMIT_NOFILE: ::c_int = 7; |
| 2604 | pub const RLIMIT_AS: ::c_int = 9; |
| 2605 | pub const RLIMIT_NPROC: ::c_int = 6; |
| 2606 | pub const RLIMIT_MEMLOCK: ::c_int = 8; |
| 2607 | |
| 2608 | pub const O_APPEND: ::c_int = 0x00100000; |
| 2609 | pub const O_CREAT: ::c_int = 0x00010000; |
| 2610 | pub const O_EXCL: ::c_int = 0x00020000; |
| 2611 | pub const O_NOCTTY: ::c_int = 0x00000200; |
| 2612 | pub const O_NONBLOCK: ::c_int = 0x00000010; |
| 2613 | pub const O_SYNC: ::c_int = (0x00000040 | O_DSYNC); |
| 2614 | pub const O_RSYNC: ::c_int = O_SYNC; |
| 2615 | pub const O_DSYNC: ::c_int = 0x00000020; |
| 2616 | |
| 2617 | pub const SOCK_NONBLOCK: ::c_int = 2048; |
| 2618 | |
| 2619 | pub const MAP_ANON: ::c_int = 0x0020; |
| 2620 | pub const MAP_GROWSDOWN: ::c_int = 0x0100; |
| 2621 | pub const MAP_DENYWRITE: ::c_int = 0x0800; |
| 2622 | pub const MAP_EXECUTABLE: ::c_int = 0x01000; |
| 2623 | pub const MAP_LOCKED: ::c_int = 0x02000; |
| 2624 | pub const MAP_NORESERVE: ::c_int = 0x04000; |
| 2625 | pub const MAP_POPULATE: ::c_int = 0x08000; |
| 2626 | pub const MAP_NONBLOCK: ::c_int = 0x010000; |
| 2627 | pub const MAP_STACK: ::c_int = 0x020000; |
| 2628 | |
| 2629 | pub const SOCK_STREAM: ::c_int = 1; |
| 2630 | pub const SOCK_DGRAM: ::c_int = 2; |
| 2631 | pub const SOCK_SEQPACKET: ::c_int = 5; |
| 2632 | |
| 2633 | pub const SOL_SOCKET: ::c_int = 1; |
| 2634 | |
| 2635 | pub const EDEADLK: ::c_int = 35; |
| 2636 | pub const ENAMETOOLONG: ::c_int = 36; |
| 2637 | pub const ENOLCK: ::c_int = 37; |
| 2638 | pub const ENOSYS: ::c_int = 38; |
| 2639 | pub const ENOTEMPTY: ::c_int = 39; |
| 2640 | pub const ELOOP: ::c_int = 40; |
| 2641 | pub const ENOMSG: ::c_int = 42; |
| 2642 | pub const EIDRM: ::c_int = 43; |
| 2643 | pub const ECHRNG: ::c_int = 44; |
| 2644 | pub const EL2NSYNC: ::c_int = 45; |
| 2645 | pub const EL3HLT: ::c_int = 46; |
| 2646 | pub const EL3RST: ::c_int = 47; |
| 2647 | pub const ELNRNG: ::c_int = 48; |
| 2648 | pub const EUNATCH: ::c_int = 49; |
| 2649 | pub const ENOCSI: ::c_int = 50; |
| 2650 | pub const EL2HLT: ::c_int = 51; |
| 2651 | pub const EBADE: ::c_int = 52; |
| 2652 | pub const EBADR: ::c_int = 53; |
| 2653 | pub const EXFULL: ::c_int = 54; |
| 2654 | pub const ENOANO: ::c_int = 55; |
| 2655 | pub const EBADRQC: ::c_int = 56; |
| 2656 | pub const EBADSLT: ::c_int = 57; |
| 2657 | pub const EDEADLOCK: ::c_int = EDEADLK; |
| 2658 | pub const EMULTIHOP: ::c_int = 72; |
| 2659 | pub const EBADMSG: ::c_int = 74; |
| 2660 | pub const EOVERFLOW: ::c_int = 75; |
| 2661 | pub const ENOTUNIQ: ::c_int = 76; |
| 2662 | pub const EBADFD: ::c_int = 77; |
| 2663 | pub const EREMCHG: ::c_int = 78; |
| 2664 | pub const ELIBACC: ::c_int = 79; |
| 2665 | pub const ELIBBAD: ::c_int = 80; |
| 2666 | pub const ELIBSCN: ::c_int = 81; |
| 2667 | pub const ELIBMAX: ::c_int = 82; |
| 2668 | pub const ELIBEXEC: ::c_int = 83; |
| 2669 | pub const EILSEQ: ::c_int = 84; |
| 2670 | pub const ERESTART: ::c_int = 85; |
| 2671 | pub const ESTRPIPE: ::c_int = 86; |
| 2672 | pub const EUSERS: ::c_int = 87; |
| 2673 | pub const ENOTSOCK: ::c_int = 88; |
| 2674 | pub const EDESTADDRREQ: ::c_int = 89; |
| 2675 | pub const EMSGSIZE: ::c_int = 90; |
| 2676 | pub const EPROTOTYPE: ::c_int = 91; |
| 2677 | pub const ENOPROTOOPT: ::c_int = 92; |
| 2678 | pub const EPROTONOSUPPORT: ::c_int = 93; |
| 2679 | pub const ESOCKTNOSUPPORT: ::c_int = 94; |
| 2680 | pub const EOPNOTSUPP: ::c_int = 95; |
| 2681 | pub const ENOTSUP: ::c_int = EOPNOTSUPP; |
| 2682 | pub const EPFNOSUPPORT: ::c_int = 96; |
| 2683 | pub const EAFNOSUPPORT: ::c_int = 97; |
| 2684 | pub const EADDRINUSE: ::c_int = 98; |
| 2685 | pub const EADDRNOTAVAIL: ::c_int = 99; |
| 2686 | pub const ENETDOWN: ::c_int = 100; |
| 2687 | pub const ENETUNREACH: ::c_int = 101; |
| 2688 | pub const ENETRESET: ::c_int = 102; |
| 2689 | pub const ECONNABORTED: ::c_int = 103; |
| 2690 | pub const ECONNRESET: ::c_int = 104; |
| 2691 | pub const ENOBUFS: ::c_int = 105; |
| 2692 | pub const EISCONN: ::c_int = 106; |
| 2693 | pub const ENOTCONN: ::c_int = 107; |
| 2694 | pub const ESHUTDOWN: ::c_int = 108; |
| 2695 | pub const ETOOMANYREFS: ::c_int = 109; |
| 2696 | pub const ETIMEDOUT: ::c_int = 110; |
| 2697 | pub const ECONNREFUSED: ::c_int = 111; |
| 2698 | pub const EHOSTDOWN: ::c_int = 112; |
| 2699 | pub const EHOSTUNREACH: ::c_int = 113; |
| 2700 | pub const EALREADY: ::c_int = 114; |
| 2701 | pub const EINPROGRESS: ::c_int = 115; |
| 2702 | pub const ESTALE: ::c_int = 116; |
| 2703 | pub const EUCLEAN: ::c_int = 117; |
| 2704 | pub const ENOTNAM: ::c_int = 118; |
| 2705 | pub const ENAVAIL: ::c_int = 119; |
| 2706 | pub const EISNAM: ::c_int = 120; |
| 2707 | pub const EREMOTEIO: ::c_int = 121; |
| 2708 | pub const EDQUOT: ::c_int = 122; |
| 2709 | pub const ENOMEDIUM: ::c_int = 123; |
| 2710 | pub const EMEDIUMTYPE: ::c_int = 124; |
| 2711 | pub const ECANCELED: ::c_int = 125; |
| 2712 | pub const ENOKEY: ::c_int = 126; |
| 2713 | pub const EKEYEXPIRED: ::c_int = 127; |
| 2714 | pub const EKEYREVOKED: ::c_int = 128; |
| 2715 | pub const EKEYREJECTED: ::c_int = 129; |
| 2716 | pub const EOWNERDEAD: ::c_int = 130; |
| 2717 | pub const ENOTRECOVERABLE: ::c_int = 131; |
| 2718 | pub const ERFKILL: ::c_int = 132; |
| 2719 | pub const EHWPOISON: ::c_int = 133; |
| 2720 | |
| 2721 | pub const SO_REUSEADDR: ::c_int = 2; |
| 2722 | pub const SO_TYPE: ::c_int = 3; |
| 2723 | pub const SO_ERROR: ::c_int = 4; |
| 2724 | pub const SO_DONTROUTE: ::c_int = 5; |
| 2725 | pub const SO_BROADCAST: ::c_int = 6; |
| 2726 | pub const SO_SNDBUF: ::c_int = 7; |
| 2727 | pub const SO_RCVBUF: ::c_int = 8; |
| 2728 | pub const SO_KEEPALIVE: ::c_int = 9; |
| 2729 | pub const SO_OOBINLINE: ::c_int = 10; |
| 2730 | pub const SO_NO_CHECK: ::c_int = 11; |
| 2731 | pub const SO_PRIORITY: ::c_int = 12; |
| 2732 | pub const SO_LINGER: ::c_int = 13; |
| 2733 | pub const SO_BSDCOMPAT: ::c_int = 14; |
| 2734 | pub const SO_REUSEPORT: ::c_int = 15; |
| 2735 | pub const SO_PASSCRED: ::c_int = 16; |
| 2736 | pub const SO_PEERCRED: ::c_int = 17; |
| 2737 | pub const SO_RCVLOWAT: ::c_int = 18; |
| 2738 | pub const SO_SNDLOWAT: ::c_int = 19; |
| 2739 | pub const SO_RCVTIMEO: ::c_int = 20; |
| 2740 | pub const SO_SNDTIMEO: ::c_int = 21; |
| 2741 | pub const SO_ACCEPTCONN: ::c_int = 30; |
| 2742 | pub const SO_SNDBUFFORCE: ::c_int = 32; |
| 2743 | pub const SO_RCVBUFFORCE: ::c_int = 33; |
| 2744 | pub const SO_PROTOCOL: ::c_int = 38; |
| 2745 | pub const SO_DOMAIN: ::c_int = 39; |
| 2746 | |
| 2747 | pub const SA_ONSTACK: ::c_int = 0x08000000; |
| 2748 | pub const SA_SIGINFO: ::c_int = 0x00000004; |
| 2749 | pub const SA_NOCLDWAIT: ::c_int = 0x00000002; |
| 2750 | |
| 2751 | pub const SIGCHLD: ::c_int = 17; |
| 2752 | pub const SIGBUS: ::c_int = 7; |
| 2753 | pub const SIGTTIN: ::c_int = 21; |
| 2754 | pub const SIGTTOU: ::c_int = 22; |
| 2755 | pub const SIGXCPU: ::c_int = 24; |
| 2756 | pub const SIGXFSZ: ::c_int = 25; |
| 2757 | pub const SIGVTALRM: ::c_int = 26; |
| 2758 | pub const SIGPROF: ::c_int = 27; |
| 2759 | pub const SIGWINCH: ::c_int = 28; |
| 2760 | pub const SIGUSR1: ::c_int = 10; |
| 2761 | pub const SIGUSR2: ::c_int = 12; |
| 2762 | pub const SIGCONT: ::c_int = 18; |
| 2763 | pub const SIGSTOP: ::c_int = 19; |
| 2764 | pub const SIGTSTP: ::c_int = 20; |
| 2765 | pub const SIGURG: ::c_int = 23; |
| 2766 | pub const SIGIO: ::c_int = 29; |
| 2767 | pub const SIGSYS: ::c_int = 31; |
| 2768 | pub const SIGSTKFLT: ::c_int = 16; |
| 2769 | pub const SIGPOLL: ::c_int = 29; |
| 2770 | pub const SIGPWR: ::c_int = 30; |
| 2771 | pub const SIG_SETMASK: ::c_int = 2; |
| 2772 | pub const SIG_BLOCK: ::c_int = 0x000000; |
| 2773 | pub const SIG_UNBLOCK: ::c_int = 0x01; |
| 2774 | |
| 2775 | pub const EXTPROC: ::tcflag_t = 0x00010000; |
| 2776 | |
| 2777 | pub const MAP_HUGETLB: ::c_int = 0x040000; |
| 2778 | |
| 2779 | pub const F_GETLK: ::c_int = 5; |
| 2780 | pub const F_GETOWN: ::c_int = 9; |
| 2781 | pub const F_SETLK: ::c_int = 6; |
| 2782 | pub const F_SETLKW: ::c_int = 7; |
| 2783 | pub const F_SETOWN: ::c_int = 8; |
| 2784 | |
| 2785 | pub const VEOF: usize = 4; |
| 2786 | pub const VEOL: usize = 11; |
| 2787 | pub const VEOL2: usize = 16; |
| 2788 | pub const VMIN: usize = 6; |
| 2789 | pub const IEXTEN: ::tcflag_t = 0x00008000; |
| 2790 | pub const TOSTOP: ::tcflag_t = 0x00000100; |
| 2791 | pub const FLUSHO: ::tcflag_t = 0x00001000; |
| 2792 | |
| 2793 | pub const TCGETS: ::c_int = 0x5401; |
| 2794 | pub const TCSETS: ::c_int = 0x5402; |
| 2795 | pub const TCSETSW: ::c_int = 0x5403; |
| 2796 | pub const TCSETSF: ::c_int = 0x5404; |
| 2797 | pub const TCGETA: ::c_int = 0x5405; |
| 2798 | pub const TCSETA: ::c_int = 0x5406; |
| 2799 | pub const TCSETAW: ::c_int = 0x5407; |
| 2800 | pub const TCSETAF: ::c_int = 0x5408; |
| 2801 | pub const TCSBRK: ::c_int = 0x5409; |
| 2802 | pub const TCXONC: ::c_int = 0x540A; |
| 2803 | pub const TCFLSH: ::c_int = 0x540B; |
| 2804 | pub const TIOCGSOFTCAR: ::c_int = 0x5419; |
| 2805 | pub const TIOCSSOFTCAR: ::c_int = 0x541A; |
| 2806 | pub const TIOCLINUX: ::c_int = 0x541C; |
| 2807 | pub const TIOCGSERIAL: ::c_int = 0x541E; |
| 2808 | pub const TIOCEXCL: ::c_int = 0x540C; |
| 2809 | pub const TIOCNXCL: ::c_int = 0x540D; |
| 2810 | pub const TIOCSCTTY: ::c_int = 0x540E; |
| 2811 | pub const TIOCGPGRP: ::c_int = 0x540F; |
| 2812 | pub const TIOCSPGRP: ::c_int = 0x5410; |
| 2813 | pub const TIOCOUTQ: ::c_int = 0x5411; |
| 2814 | pub const TIOCSTI: ::c_int = 0x5412; |
| 2815 | pub const TIOCGWINSZ: ::c_int = 0x5413; |
| 2816 | pub const TIOCSWINSZ: ::c_int = 0x5414; |
| 2817 | pub const TIOCMGET: ::c_int = 0x5415; |
| 2818 | pub const TIOCMBIS: ::c_int = 0x5416; |
| 2819 | pub const TIOCMBIC: ::c_int = 0x5417; |
| 2820 | pub const TIOCMSET: ::c_int = 0x5418; |
| 2821 | pub const FIONREAD: ::c_int = 0x541B; |
| 2822 | pub const TIOCCONS: ::c_int = 0x541D; |
| 2823 | |
| 2824 | pub const POLLWRNORM: ::c_short = 0x100; |
| 2825 | pub const POLLWRBAND: ::c_short = 0x200; |
| 2826 | |
| 2827 | pub const TIOCM_LE: ::c_int = 0x001; |
| 2828 | pub const TIOCM_DTR: ::c_int = 0x002; |
| 2829 | pub const TIOCM_RTS: ::c_int = 0x004; |
| 2830 | pub const TIOCM_ST: ::c_int = 0x008; |
| 2831 | pub const TIOCM_SR: ::c_int = 0x010; |
| 2832 | pub const TIOCM_CTS: ::c_int = 0x020; |
| 2833 | pub const TIOCM_CAR: ::c_int = 0x040; |
| 2834 | pub const TIOCM_RNG: ::c_int = 0x080; |
| 2835 | pub const TIOCM_DSR: ::c_int = 0x100; |
| 2836 | pub const TIOCM_CD: ::c_int = TIOCM_CAR; |
| 2837 | pub const TIOCM_RI: ::c_int = TIOCM_RNG; |
| 2838 | |
| 2839 | pub const O_DIRECTORY: ::c_int = 0x00080000; |
| 2840 | pub const O_DIRECT: ::c_int = 0x00000800; |
| 2841 | pub const O_LARGEFILE: ::c_int = 0x00001000; |
| 2842 | pub const O_NOFOLLOW: ::c_int = 0x00000080; |
| 2843 | |
| 2844 | // intentionally not public, only used for fd_set |
| 2845 | cfg_if! { |
| 2846 | if #[cfg(target_pointer_width = "32")] { |
| 2847 | const ULONG_SIZE: usize = 32; |
| 2848 | } else if #[cfg(target_pointer_width = "64")] { |
| 2849 | const ULONG_SIZE: usize = 64; |
| 2850 | } else { |
| 2851 | // Unknown target_pointer_width |
| 2852 | } |
| 2853 | } |
| 2854 | |
| 2855 | // END_PUB_CONST |
| 2856 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 2857 | f! { |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 2858 | pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> () { |
| 2859 | let fd = fd as usize; |
| 2860 | let size = mem::size_of_val(&(*set).fds_bits[0]) * 8; |
| 2861 | (*set).fds_bits[fd / size] &= !(1 << (fd % size)); |
| 2862 | return |
| 2863 | } |
| 2864 | |
| 2865 | pub fn FD_ISSET(fd: ::c_int, set: *mut fd_set) -> bool { |
| 2866 | let fd = fd as usize; |
| 2867 | let size = mem::size_of_val(&(*set).fds_bits[0]) * 8; |
| 2868 | return ((*set).fds_bits[fd / size] & (1 << (fd % size))) != 0 |
| 2869 | } |
| 2870 | |
| 2871 | pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { |
| 2872 | let fd = fd as usize; |
| 2873 | let size = mem::size_of_val(&(*set).fds_bits[0]) * 8; |
| 2874 | (*set).fds_bits[fd / size] |= 1 << (fd % size); |
| 2875 | return |
| 2876 | } |
| 2877 | |
| 2878 | pub fn FD_ZERO(set: *mut fd_set) -> () { |
| 2879 | for slot in (*set).fds_bits.iter_mut() { |
| 2880 | *slot = 0; |
| 2881 | } |
| 2882 | } |
| 2883 | |
| 2884 | pub fn WIFSTOPPED(status: ::c_int) -> bool { |
| 2885 | (status & 0xff) == 0x7f |
| 2886 | } |
| 2887 | |
| 2888 | pub fn WSTOPSIG(status: ::c_int) -> ::c_int { |
| 2889 | (status >> 8) & 0xff |
| 2890 | } |
| 2891 | |
| 2892 | pub fn WIFCONTINUED(status: ::c_int) -> bool { |
| 2893 | status == 0xffff |
| 2894 | } |
| 2895 | |
| 2896 | pub fn WIFSIGNALED(status: ::c_int) -> bool { |
| 2897 | ((status & 0x7f) + 1) as i8 >= 2 |
| 2898 | } |
| 2899 | |
| 2900 | pub fn WTERMSIG(status: ::c_int) -> ::c_int { |
| 2901 | status & 0x7f |
| 2902 | } |
| 2903 | |
| 2904 | pub fn WIFEXITED(status: ::c_int) -> bool { |
| 2905 | (status & 0x7f) == 0 |
| 2906 | } |
| 2907 | |
| 2908 | pub fn WEXITSTATUS(status: ::c_int) -> ::c_int { |
| 2909 | (status >> 8) & 0xff |
| 2910 | } |
| 2911 | |
| 2912 | pub fn WCOREDUMP(status: ::c_int) -> bool { |
| 2913 | (status & 0x80) != 0 |
| 2914 | } |
| 2915 | |
| 2916 | pub fn QCMD(cmd: ::c_int, type_: ::c_int) -> ::c_int { |
| 2917 | (cmd << 8) | (type_ & 0x00ff) |
| 2918 | } |
| 2919 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 2920 | pub fn CPU_ZERO(cpuset: &mut cpu_set_t) -> () { |
| 2921 | for slot in cpuset.bits.iter_mut() { |
| 2922 | *slot = 0; |
| 2923 | } |
| 2924 | } |
| 2925 | |
| 2926 | pub fn CPU_SET(cpu: usize, cpuset: &mut cpu_set_t) -> () { |
| 2927 | let size_in_bits = 8 * mem::size_of_val(&cpuset.bits[0]); // 32, 64 etc |
| 2928 | let (idx, offset) = (cpu / size_in_bits, cpu % size_in_bits); |
| 2929 | cpuset.bits[idx] |= 1 << offset; |
| 2930 | () |
| 2931 | } |
| 2932 | |
| 2933 | pub fn CPU_CLR(cpu: usize, cpuset: &mut cpu_set_t) -> () { |
| 2934 | let size_in_bits = 8 * mem::size_of_val(&cpuset.bits[0]); // 32, 64 etc |
| 2935 | let (idx, offset) = (cpu / size_in_bits, cpu % size_in_bits); |
| 2936 | cpuset.bits[idx] &= !(1 << offset); |
| 2937 | () |
| 2938 | } |
| 2939 | |
| 2940 | pub fn CPU_ISSET(cpu: usize, cpuset: &cpu_set_t) -> bool { |
| 2941 | let size_in_bits = 8 * mem::size_of_val(&cpuset.bits[0]); |
| 2942 | let (idx, offset) = (cpu / size_in_bits, cpu % size_in_bits); |
| 2943 | 0 != (cpuset.bits[idx] & (1 << offset)) |
| 2944 | } |
| 2945 | |
| 2946 | pub fn CPU_EQUAL(set1: &cpu_set_t, set2: &cpu_set_t) -> bool { |
| 2947 | set1.bits == set2.bits |
| 2948 | } |
| 2949 | |
| 2950 | pub fn major(dev: ::dev_t) -> ::c_uint { |
| 2951 | let mut major = 0; |
| 2952 | major |= (dev & 0x00000000000fff00) >> 8; |
| 2953 | major |= (dev & 0xfffff00000000000) >> 32; |
| 2954 | major as ::c_uint |
| 2955 | } |
| 2956 | |
| 2957 | pub fn minor(dev: ::dev_t) -> ::c_uint { |
| 2958 | let mut minor = 0; |
| 2959 | minor |= (dev & 0x00000000000000ff) >> 0; |
| 2960 | minor |= (dev & 0x00000ffffff00000) >> 12; |
| 2961 | minor as ::c_uint |
| 2962 | } |
| 2963 | |
| 2964 | pub fn makedev(major: ::c_uint, minor: ::c_uint) -> ::dev_t { |
| 2965 | let major = major as ::dev_t; |
| 2966 | let minor = minor as ::dev_t; |
| 2967 | let mut dev = 0; |
| 2968 | dev |= (major & 0x00000fff) << 8; |
| 2969 | dev |= (major & 0xfffff000) << 32; |
| 2970 | dev |= (minor & 0x000000ff) << 0; |
| 2971 | dev |= (minor & 0xffffff00) << 12; |
| 2972 | dev |
| 2973 | } |
| 2974 | } |
| 2975 | |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 2976 | // EXTERN_FN |
| 2977 | |
| 2978 | #[link(name = "c")] |
| 2979 | #[link(name = "fdio")] |
| 2980 | extern {} |
| 2981 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 2982 | extern { |
Taylor Cramer | b4cfe88 | 2017-11-15 11:29:01 -0800 | [diff] [blame] | 2983 | pub fn getpwnam(name: *const ::c_char) -> *mut passwd; |
| 2984 | pub fn getpwuid(uid: ::uid_t) -> *mut passwd; |
| 2985 | |
| 2986 | pub fn fprintf(stream: *mut ::FILE, |
| 2987 | format: *const ::c_char, ...) -> ::c_int; |
| 2988 | pub fn printf(format: *const ::c_char, ...) -> ::c_int; |
| 2989 | pub fn snprintf(s: *mut ::c_char, n: ::size_t, |
| 2990 | format: *const ::c_char, ...) -> ::c_int; |
| 2991 | pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int; |
| 2992 | pub fn fscanf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int; |
| 2993 | pub fn scanf(format: *const ::c_char, ...) -> ::c_int; |
| 2994 | pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int; |
| 2995 | pub fn getchar_unlocked() -> ::c_int; |
| 2996 | pub fn putchar_unlocked(c: ::c_int) -> ::c_int; |
| 2997 | |
| 2998 | pub fn socket(domain: ::c_int, ty: ::c_int, protocol: ::c_int) -> ::c_int; |
| 2999 | pub fn connect(socket: ::c_int, address: *const sockaddr, |
| 3000 | len: socklen_t) -> ::c_int; |
| 3001 | pub fn listen(socket: ::c_int, backlog: ::c_int) -> ::c_int; |
| 3002 | pub fn accept(socket: ::c_int, address: *mut sockaddr, |
| 3003 | address_len: *mut socklen_t) -> ::c_int; |
| 3004 | pub fn getpeername(socket: ::c_int, address: *mut sockaddr, |
| 3005 | address_len: *mut socklen_t) -> ::c_int; |
| 3006 | pub fn getsockname(socket: ::c_int, address: *mut sockaddr, |
| 3007 | address_len: *mut socklen_t) -> ::c_int; |
| 3008 | pub fn setsockopt(socket: ::c_int, level: ::c_int, name: ::c_int, |
| 3009 | value: *const ::c_void, |
| 3010 | option_len: socklen_t) -> ::c_int; |
| 3011 | pub fn socketpair(domain: ::c_int, type_: ::c_int, protocol: ::c_int, |
| 3012 | socket_vector: *mut ::c_int) -> ::c_int; |
| 3013 | pub fn sendto(socket: ::c_int, buf: *const ::c_void, len: ::size_t, |
| 3014 | flags: ::c_int, addr: *const sockaddr, |
| 3015 | addrlen: socklen_t) -> ::ssize_t; |
| 3016 | pub fn shutdown(socket: ::c_int, how: ::c_int) -> ::c_int; |
| 3017 | |
| 3018 | pub fn chmod(path: *const c_char, mode: mode_t) -> ::c_int; |
| 3019 | pub fn fchmod(fd: ::c_int, mode: mode_t) -> ::c_int; |
| 3020 | |
| 3021 | pub fn fstat(fildes: ::c_int, buf: *mut stat) -> ::c_int; |
| 3022 | |
| 3023 | pub fn mkdir(path: *const c_char, mode: mode_t) -> ::c_int; |
| 3024 | |
| 3025 | pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int; |
| 3026 | |
| 3027 | pub fn pclose(stream: *mut ::FILE) -> ::c_int; |
| 3028 | pub fn fdopen(fd: ::c_int, mode: *const c_char) -> *mut ::FILE; |
| 3029 | pub fn fileno(stream: *mut ::FILE) -> ::c_int; |
| 3030 | |
| 3031 | pub fn open(path: *const c_char, oflag: ::c_int, ...) -> ::c_int; |
| 3032 | pub fn creat(path: *const c_char, mode: mode_t) -> ::c_int; |
| 3033 | pub fn fcntl(fd: ::c_int, cmd: ::c_int, ...) -> ::c_int; |
| 3034 | |
| 3035 | pub fn opendir(dirname: *const c_char) -> *mut ::DIR; |
| 3036 | pub fn readdir(dirp: *mut ::DIR) -> *mut ::dirent; |
| 3037 | pub fn readdir_r(dirp: *mut ::DIR, entry: *mut ::dirent, |
| 3038 | result: *mut *mut ::dirent) -> ::c_int; |
| 3039 | pub fn closedir(dirp: *mut ::DIR) -> ::c_int; |
| 3040 | pub fn rewinddir(dirp: *mut ::DIR); |
| 3041 | |
| 3042 | pub fn openat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3043 | flags: ::c_int, ...) -> ::c_int; |
| 3044 | pub fn fchmodat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3045 | mode: ::mode_t, flags: ::c_int) -> ::c_int; |
| 3046 | pub fn fchown(fd: ::c_int, |
| 3047 | owner: ::uid_t, |
| 3048 | group: ::gid_t) -> ::c_int; |
| 3049 | pub fn fchownat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3050 | owner: ::uid_t, group: ::gid_t, |
| 3051 | flags: ::c_int) -> ::c_int; |
| 3052 | pub fn fstatat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3053 | buf: *mut stat, flags: ::c_int) -> ::c_int; |
| 3054 | pub fn linkat(olddirfd: ::c_int, oldpath: *const ::c_char, |
| 3055 | newdirfd: ::c_int, newpath: *const ::c_char, |
| 3056 | flags: ::c_int) -> ::c_int; |
| 3057 | pub fn mkdirat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3058 | mode: ::mode_t) -> ::c_int; |
| 3059 | pub fn readlinkat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3060 | buf: *mut ::c_char, bufsiz: ::size_t) -> ::ssize_t; |
| 3061 | pub fn renameat(olddirfd: ::c_int, oldpath: *const ::c_char, |
| 3062 | newdirfd: ::c_int, newpath: *const ::c_char) |
| 3063 | -> ::c_int; |
| 3064 | pub fn symlinkat(target: *const ::c_char, newdirfd: ::c_int, |
| 3065 | linkpath: *const ::c_char) -> ::c_int; |
| 3066 | pub fn unlinkat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3067 | flags: ::c_int) -> ::c_int; |
| 3068 | |
| 3069 | pub fn access(path: *const c_char, amode: ::c_int) -> ::c_int; |
| 3070 | pub fn alarm(seconds: ::c_uint) -> ::c_uint; |
| 3071 | pub fn chdir(dir: *const c_char) -> ::c_int; |
| 3072 | pub fn fchdir(dirfd: ::c_int) -> ::c_int; |
| 3073 | pub fn chown(path: *const c_char, uid: uid_t, |
| 3074 | gid: gid_t) -> ::c_int; |
| 3075 | pub fn lchown(path: *const c_char, uid: uid_t, |
| 3076 | gid: gid_t) -> ::c_int; |
| 3077 | pub fn close(fd: ::c_int) -> ::c_int; |
| 3078 | pub fn dup(fd: ::c_int) -> ::c_int; |
| 3079 | pub fn dup2(src: ::c_int, dst: ::c_int) -> ::c_int; |
| 3080 | pub fn execl(path: *const c_char, |
| 3081 | arg0: *const c_char, ...) -> ::c_int; |
| 3082 | pub fn execle(path: *const ::c_char, |
| 3083 | arg0: *const ::c_char, ...) -> ::c_int; |
| 3084 | pub fn execlp(file: *const ::c_char, |
| 3085 | arg0: *const ::c_char, ...) -> ::c_int; |
| 3086 | pub fn execv(prog: *const c_char, |
| 3087 | argv: *const *const c_char) -> ::c_int; |
| 3088 | pub fn execve(prog: *const c_char, argv: *const *const c_char, |
| 3089 | envp: *const *const c_char) |
| 3090 | -> ::c_int; |
| 3091 | pub fn execvp(c: *const c_char, |
| 3092 | argv: *const *const c_char) -> ::c_int; |
| 3093 | pub fn fork() -> pid_t; |
| 3094 | pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long; |
| 3095 | pub fn getcwd(buf: *mut c_char, size: ::size_t) -> *mut c_char; |
| 3096 | pub fn getegid() -> gid_t; |
| 3097 | pub fn geteuid() -> uid_t; |
| 3098 | pub fn getgid() -> gid_t; |
| 3099 | pub fn getgroups(ngroups_max: ::c_int, groups: *mut gid_t) |
| 3100 | -> ::c_int; |
| 3101 | pub fn getlogin() -> *mut c_char; |
| 3102 | pub fn getopt(argc: ::c_int, argv: *const *mut c_char, |
| 3103 | optstr: *const c_char) -> ::c_int; |
| 3104 | pub fn getpgid(pid: pid_t) -> pid_t; |
| 3105 | pub fn getpgrp() -> pid_t; |
| 3106 | pub fn getpid() -> pid_t; |
| 3107 | pub fn getppid() -> pid_t; |
| 3108 | pub fn getuid() -> uid_t; |
| 3109 | pub fn isatty(fd: ::c_int) -> ::c_int; |
| 3110 | pub fn link(src: *const c_char, dst: *const c_char) -> ::c_int; |
| 3111 | pub fn lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t; |
| 3112 | pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long; |
| 3113 | pub fn pause() -> ::c_int; |
| 3114 | pub fn pipe(fds: *mut ::c_int) -> ::c_int; |
| 3115 | pub fn posix_memalign(memptr: *mut *mut ::c_void, |
| 3116 | align: ::size_t, |
| 3117 | size: ::size_t) -> ::c_int; |
| 3118 | pub fn read(fd: ::c_int, buf: *mut ::c_void, count: ::size_t) |
| 3119 | -> ::ssize_t; |
| 3120 | pub fn rmdir(path: *const c_char) -> ::c_int; |
| 3121 | pub fn seteuid(uid: uid_t) -> ::c_int; |
| 3122 | pub fn setgid(gid: gid_t) -> ::c_int; |
| 3123 | pub fn setpgid(pid: pid_t, pgid: pid_t) -> ::c_int; |
| 3124 | pub fn setsid() -> pid_t; |
| 3125 | pub fn setuid(uid: uid_t) -> ::c_int; |
| 3126 | pub fn sleep(secs: ::c_uint) -> ::c_uint; |
| 3127 | pub fn nanosleep(rqtp: *const timespec, |
| 3128 | rmtp: *mut timespec) -> ::c_int; |
| 3129 | pub fn tcgetpgrp(fd: ::c_int) -> pid_t; |
| 3130 | pub fn tcsetpgrp(fd: ::c_int, pgrp: ::pid_t) -> ::c_int; |
| 3131 | pub fn ttyname(fd: ::c_int) -> *mut c_char; |
| 3132 | pub fn unlink(c: *const c_char) -> ::c_int; |
| 3133 | pub fn wait(status: *mut ::c_int) -> pid_t; |
| 3134 | pub fn waitpid(pid: pid_t, status: *mut ::c_int, options: ::c_int) |
| 3135 | -> pid_t; |
| 3136 | pub fn write(fd: ::c_int, buf: *const ::c_void, count: ::size_t) |
| 3137 | -> ::ssize_t; |
| 3138 | pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, |
| 3139 | offset: off_t) -> ::ssize_t; |
| 3140 | pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, |
| 3141 | offset: off_t) -> ::ssize_t; |
| 3142 | pub fn umask(mask: mode_t) -> mode_t; |
| 3143 | |
| 3144 | pub fn utime(file: *const c_char, buf: *const utimbuf) -> ::c_int; |
| 3145 | |
| 3146 | pub fn kill(pid: pid_t, sig: ::c_int) -> ::c_int; |
| 3147 | |
| 3148 | pub fn mlock(addr: *const ::c_void, len: ::size_t) -> ::c_int; |
| 3149 | pub fn munlock(addr: *const ::c_void, len: ::size_t) -> ::c_int; |
| 3150 | pub fn mlockall(flags: ::c_int) -> ::c_int; |
| 3151 | pub fn munlockall() -> ::c_int; |
| 3152 | |
| 3153 | pub fn mmap(addr: *mut ::c_void, |
| 3154 | len: ::size_t, |
| 3155 | prot: ::c_int, |
| 3156 | flags: ::c_int, |
| 3157 | fd: ::c_int, |
| 3158 | offset: off_t) |
| 3159 | -> *mut ::c_void; |
| 3160 | pub fn munmap(addr: *mut ::c_void, len: ::size_t) -> ::c_int; |
| 3161 | |
| 3162 | pub fn if_nametoindex(ifname: *const c_char) -> ::c_uint; |
| 3163 | pub fn if_indextoname(ifindex: ::c_uint, |
| 3164 | ifname: *mut ::c_char) -> *mut ::c_char; |
| 3165 | |
| 3166 | pub fn lstat(path: *const c_char, buf: *mut stat) -> ::c_int; |
| 3167 | |
| 3168 | pub fn fsync(fd: ::c_int) -> ::c_int; |
| 3169 | |
| 3170 | pub fn setenv(name: *const c_char, val: *const c_char, |
| 3171 | overwrite: ::c_int) -> ::c_int; |
| 3172 | pub fn unsetenv(name: *const c_char) -> ::c_int; |
| 3173 | |
| 3174 | pub fn symlink(path1: *const c_char, |
| 3175 | path2: *const c_char) -> ::c_int; |
| 3176 | |
| 3177 | pub fn ftruncate(fd: ::c_int, length: off_t) -> ::c_int; |
| 3178 | |
| 3179 | pub fn signal(signum: ::c_int, handler: sighandler_t) -> sighandler_t; |
| 3180 | |
| 3181 | pub fn getrlimit(resource: ::c_int, rlim: *mut rlimit) -> ::c_int; |
| 3182 | pub fn setrlimit(resource: ::c_int, rlim: *const rlimit) -> ::c_int; |
| 3183 | pub fn getrusage(resource: ::c_int, usage: *mut rusage) -> ::c_int; |
| 3184 | |
| 3185 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) |
| 3186 | -> *mut ::c_char; |
| 3187 | |
| 3188 | pub fn flock(fd: ::c_int, operation: ::c_int) -> ::c_int; |
| 3189 | |
| 3190 | pub fn gettimeofday(tp: *mut ::timeval, |
| 3191 | tz: *mut ::c_void) -> ::c_int; |
| 3192 | pub fn times(buf: *mut ::tms) -> ::clock_t; |
| 3193 | |
| 3194 | pub fn pthread_self() -> ::pthread_t; |
| 3195 | pub fn pthread_join(native: ::pthread_t, |
| 3196 | value: *mut *mut ::c_void) -> ::c_int; |
| 3197 | pub fn pthread_exit(value: *mut ::c_void); |
| 3198 | pub fn pthread_attr_init(attr: *mut ::pthread_attr_t) -> ::c_int; |
| 3199 | pub fn pthread_attr_destroy(attr: *mut ::pthread_attr_t) -> ::c_int; |
| 3200 | pub fn pthread_attr_setstacksize(attr: *mut ::pthread_attr_t, |
| 3201 | stack_size: ::size_t) -> ::c_int; |
| 3202 | pub fn pthread_attr_setdetachstate(attr: *mut ::pthread_attr_t, |
| 3203 | state: ::c_int) -> ::c_int; |
| 3204 | pub fn pthread_detach(thread: ::pthread_t) -> ::c_int; |
| 3205 | pub fn sched_yield() -> ::c_int; |
| 3206 | pub fn pthread_key_create(key: *mut pthread_key_t, |
| 3207 | dtor: Option<unsafe extern fn(*mut ::c_void)>) |
| 3208 | -> ::c_int; |
| 3209 | pub fn pthread_key_delete(key: pthread_key_t) -> ::c_int; |
| 3210 | pub fn pthread_getspecific(key: pthread_key_t) -> *mut ::c_void; |
| 3211 | pub fn pthread_setspecific(key: pthread_key_t, value: *const ::c_void) |
| 3212 | -> ::c_int; |
| 3213 | pub fn pthread_mutex_init(lock: *mut pthread_mutex_t, |
| 3214 | attr: *const pthread_mutexattr_t) -> ::c_int; |
| 3215 | pub fn pthread_mutex_destroy(lock: *mut pthread_mutex_t) -> ::c_int; |
| 3216 | pub fn pthread_mutex_lock(lock: *mut pthread_mutex_t) -> ::c_int; |
| 3217 | pub fn pthread_mutex_trylock(lock: *mut pthread_mutex_t) -> ::c_int; |
| 3218 | pub fn pthread_mutex_unlock(lock: *mut pthread_mutex_t) -> ::c_int; |
| 3219 | |
| 3220 | pub fn pthread_mutexattr_init(attr: *mut pthread_mutexattr_t) -> ::c_int; |
| 3221 | pub fn pthread_mutexattr_destroy(attr: *mut pthread_mutexattr_t) -> ::c_int; |
| 3222 | pub fn pthread_mutexattr_settype(attr: *mut pthread_mutexattr_t, |
| 3223 | _type: ::c_int) -> ::c_int; |
| 3224 | |
| 3225 | pub fn pthread_cond_init(cond: *mut pthread_cond_t, |
| 3226 | attr: *const pthread_condattr_t) -> ::c_int; |
| 3227 | pub fn pthread_cond_wait(cond: *mut pthread_cond_t, |
| 3228 | lock: *mut pthread_mutex_t) -> ::c_int; |
| 3229 | pub fn pthread_cond_timedwait(cond: *mut pthread_cond_t, |
| 3230 | lock: *mut pthread_mutex_t, |
| 3231 | abstime: *const ::timespec) -> ::c_int; |
| 3232 | pub fn pthread_cond_signal(cond: *mut pthread_cond_t) -> ::c_int; |
| 3233 | pub fn pthread_cond_broadcast(cond: *mut pthread_cond_t) -> ::c_int; |
| 3234 | pub fn pthread_cond_destroy(cond: *mut pthread_cond_t) -> ::c_int; |
| 3235 | pub fn pthread_condattr_init(attr: *mut pthread_condattr_t) -> ::c_int; |
| 3236 | pub fn pthread_condattr_destroy(attr: *mut pthread_condattr_t) -> ::c_int; |
| 3237 | pub fn pthread_rwlock_init(lock: *mut pthread_rwlock_t, |
| 3238 | attr: *const pthread_rwlockattr_t) -> ::c_int; |
| 3239 | pub fn pthread_rwlock_destroy(lock: *mut pthread_rwlock_t) -> ::c_int; |
| 3240 | pub fn pthread_rwlock_rdlock(lock: *mut pthread_rwlock_t) -> ::c_int; |
| 3241 | pub fn pthread_rwlock_tryrdlock(lock: *mut pthread_rwlock_t) -> ::c_int; |
| 3242 | pub fn pthread_rwlock_wrlock(lock: *mut pthread_rwlock_t) -> ::c_int; |
| 3243 | pub fn pthread_rwlock_trywrlock(lock: *mut pthread_rwlock_t) -> ::c_int; |
| 3244 | pub fn pthread_rwlock_unlock(lock: *mut pthread_rwlock_t) -> ::c_int; |
| 3245 | pub fn pthread_rwlockattr_init(attr: *mut pthread_rwlockattr_t) -> ::c_int; |
| 3246 | pub fn pthread_rwlockattr_destroy(attr: *mut pthread_rwlockattr_t) |
| 3247 | -> ::c_int; |
| 3248 | pub fn strerror_r(errnum: ::c_int, buf: *mut c_char, |
| 3249 | buflen: ::size_t) -> ::c_int; |
| 3250 | |
| 3251 | pub fn getsockopt(sockfd: ::c_int, |
| 3252 | level: ::c_int, |
| 3253 | optname: ::c_int, |
| 3254 | optval: *mut ::c_void, |
| 3255 | optlen: *mut ::socklen_t) -> ::c_int; |
| 3256 | pub fn raise(signum: ::c_int) -> ::c_int; |
| 3257 | pub fn sigaction(signum: ::c_int, |
| 3258 | act: *const sigaction, |
| 3259 | oldact: *mut sigaction) -> ::c_int; |
| 3260 | |
| 3261 | pub fn utimes(filename: *const ::c_char, |
| 3262 | times: *const ::timeval) -> ::c_int; |
| 3263 | pub fn dlopen(filename: *const ::c_char, |
| 3264 | flag: ::c_int) -> *mut ::c_void; |
| 3265 | pub fn dlerror() -> *mut ::c_char; |
| 3266 | pub fn dlsym(handle: *mut ::c_void, |
| 3267 | symbol: *const ::c_char) -> *mut ::c_void; |
| 3268 | pub fn dlclose(handle: *mut ::c_void) -> ::c_int; |
| 3269 | pub fn dladdr(addr: *const ::c_void, info: *mut Dl_info) -> ::c_int; |
| 3270 | |
| 3271 | pub fn getaddrinfo(node: *const c_char, |
| 3272 | service: *const c_char, |
| 3273 | hints: *const addrinfo, |
| 3274 | res: *mut *mut addrinfo) -> ::c_int; |
| 3275 | pub fn freeaddrinfo(res: *mut addrinfo); |
| 3276 | pub fn gai_strerror(errcode: ::c_int) -> *const ::c_char; |
| 3277 | pub fn res_init() -> ::c_int; |
| 3278 | |
| 3279 | pub fn gmtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm; |
| 3280 | pub fn localtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm; |
| 3281 | pub fn mktime(tm: *mut tm) -> time_t; |
| 3282 | pub fn time(time: *mut time_t) -> time_t; |
| 3283 | pub fn gmtime(time_p: *const time_t) -> *mut tm; |
| 3284 | pub fn localtime(time_p: *const time_t) -> *mut tm; |
| 3285 | |
| 3286 | pub fn mknod(pathname: *const ::c_char, mode: ::mode_t, |
| 3287 | dev: ::dev_t) -> ::c_int; |
| 3288 | pub fn uname(buf: *mut ::utsname) -> ::c_int; |
| 3289 | pub fn gethostname(name: *mut ::c_char, len: ::size_t) -> ::c_int; |
| 3290 | pub fn getservbyname(name: *const ::c_char, |
| 3291 | proto: *const ::c_char) -> *mut servent; |
| 3292 | pub fn getprotobyname(name: *const ::c_char) -> *mut protoent; |
| 3293 | pub fn getprotobynumber(proto: ::c_int) -> *mut protoent; |
| 3294 | pub fn chroot(name: *const ::c_char) -> ::c_int; |
| 3295 | pub fn usleep(secs: ::c_uint) -> ::c_int; |
| 3296 | pub fn send(socket: ::c_int, buf: *const ::c_void, len: ::size_t, |
| 3297 | flags: ::c_int) -> ::ssize_t; |
| 3298 | pub fn recv(socket: ::c_int, buf: *mut ::c_void, len: ::size_t, |
| 3299 | flags: ::c_int) -> ::ssize_t; |
| 3300 | pub fn putenv(string: *mut c_char) -> ::c_int; |
| 3301 | pub fn poll(fds: *mut pollfd, nfds: nfds_t, timeout: ::c_int) -> ::c_int; |
| 3302 | pub fn select(nfds: ::c_int, |
| 3303 | readfs: *mut fd_set, |
| 3304 | writefds: *mut fd_set, |
| 3305 | errorfds: *mut fd_set, |
| 3306 | timeout: *mut timeval) -> ::c_int; |
| 3307 | pub fn setlocale(category: ::c_int, |
| 3308 | locale: *const ::c_char) -> *mut ::c_char; |
| 3309 | pub fn localeconv() -> *mut lconv; |
| 3310 | |
| 3311 | pub fn sem_destroy(sem: *mut sem_t) -> ::c_int; |
| 3312 | pub fn sem_wait(sem: *mut sem_t) -> ::c_int; |
| 3313 | pub fn sem_trywait(sem: *mut sem_t) -> ::c_int; |
| 3314 | pub fn sem_post(sem: *mut sem_t) -> ::c_int; |
| 3315 | pub fn sem_init(sem: *mut sem_t, |
| 3316 | pshared: ::c_int, |
| 3317 | value: ::c_uint) |
| 3318 | -> ::c_int; |
| 3319 | pub fn statvfs(path: *const c_char, buf: *mut statvfs) -> ::c_int; |
| 3320 | pub fn fstatvfs(fd: ::c_int, buf: *mut statvfs) -> ::c_int; |
| 3321 | |
| 3322 | pub fn readlink(path: *const c_char, |
| 3323 | buf: *mut c_char, |
| 3324 | bufsz: ::size_t) |
| 3325 | -> ::ssize_t; |
| 3326 | |
| 3327 | pub fn sigemptyset(set: *mut sigset_t) -> ::c_int; |
| 3328 | pub fn sigaddset(set: *mut sigset_t, signum: ::c_int) -> ::c_int; |
| 3329 | pub fn sigfillset(set: *mut sigset_t) -> ::c_int; |
| 3330 | pub fn sigdelset(set: *mut sigset_t, signum: ::c_int) -> ::c_int; |
| 3331 | pub fn sigismember(set: *const sigset_t, signum: ::c_int) -> ::c_int; |
| 3332 | |
| 3333 | pub fn sigprocmask(how: ::c_int, |
| 3334 | set: *const sigset_t, |
| 3335 | oldset: *mut sigset_t) |
| 3336 | -> ::c_int; |
| 3337 | pub fn sigpending(set: *mut sigset_t) -> ::c_int; |
| 3338 | |
| 3339 | pub fn timegm(tm: *mut ::tm) -> time_t; |
| 3340 | |
| 3341 | pub fn getsid(pid: pid_t) -> pid_t; |
| 3342 | |
| 3343 | pub fn sysconf(name: ::c_int) -> ::c_long; |
| 3344 | |
| 3345 | pub fn mkfifo(path: *const c_char, mode: mode_t) -> ::c_int; |
| 3346 | |
| 3347 | pub fn pselect(nfds: ::c_int, |
| 3348 | readfs: *mut fd_set, |
| 3349 | writefds: *mut fd_set, |
| 3350 | errorfds: *mut fd_set, |
| 3351 | timeout: *const timespec, |
| 3352 | sigmask: *const sigset_t) -> ::c_int; |
| 3353 | pub fn fseeko(stream: *mut ::FILE, |
| 3354 | offset: ::off_t, |
| 3355 | whence: ::c_int) -> ::c_int; |
| 3356 | pub fn ftello(stream: *mut ::FILE) -> ::off_t; |
| 3357 | pub fn tcdrain(fd: ::c_int) -> ::c_int; |
| 3358 | pub fn cfgetispeed(termios: *const ::termios) -> ::speed_t; |
| 3359 | pub fn cfgetospeed(termios: *const ::termios) -> ::speed_t; |
| 3360 | pub fn cfmakeraw(termios: *mut ::termios); |
| 3361 | pub fn cfsetispeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int; |
| 3362 | pub fn cfsetospeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int; |
| 3363 | pub fn cfsetspeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int; |
| 3364 | pub fn tcgetattr(fd: ::c_int, termios: *mut ::termios) -> ::c_int; |
| 3365 | pub fn tcsetattr(fd: ::c_int, |
| 3366 | optional_actions: ::c_int, |
| 3367 | termios: *const ::termios) -> ::c_int; |
| 3368 | pub fn tcflow(fd: ::c_int, action: ::c_int) -> ::c_int; |
| 3369 | pub fn tcflush(fd: ::c_int, action: ::c_int) -> ::c_int; |
| 3370 | pub fn tcgetsid(fd: ::c_int) -> ::pid_t; |
| 3371 | pub fn tcsendbreak(fd: ::c_int, duration: ::c_int) -> ::c_int; |
| 3372 | pub fn mkstemp(template: *mut ::c_char) -> ::c_int; |
| 3373 | pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char; |
| 3374 | |
| 3375 | pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char; |
| 3376 | |
| 3377 | pub fn openlog(ident: *const ::c_char, logopt: ::c_int, facility: ::c_int); |
| 3378 | pub fn closelog(); |
| 3379 | pub fn setlogmask(maskpri: ::c_int) -> ::c_int; |
| 3380 | pub fn syslog(priority: ::c_int, message: *const ::c_char, ...); |
| 3381 | pub fn nice(incr: ::c_int) -> ::c_int; |
| 3382 | |
| 3383 | pub fn grantpt(fd: ::c_int) -> ::c_int; |
| 3384 | pub fn posix_openpt(flags: ::c_int) -> ::c_int; |
| 3385 | pub fn ptsname(fd: ::c_int) -> *mut ::c_char; |
| 3386 | pub fn unlockpt(fd: ::c_int) -> ::c_int; |
| 3387 | |
| 3388 | pub fn fdatasync(fd: ::c_int) -> ::c_int; |
| 3389 | pub fn mincore(addr: *mut ::c_void, len: ::size_t, |
| 3390 | vec: *mut ::c_uchar) -> ::c_int; |
| 3391 | pub fn clock_getres(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int; |
| 3392 | pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int; |
| 3393 | pub fn clock_settime(clk_id: ::clockid_t, tp: *const ::timespec) -> ::c_int; |
| 3394 | pub fn dirfd(dirp: *mut ::DIR) -> ::c_int; |
| 3395 | |
| 3396 | pub fn pthread_getattr_np(native: ::pthread_t, |
| 3397 | attr: *mut ::pthread_attr_t) -> ::c_int; |
| 3398 | pub fn pthread_attr_getstack(attr: *const ::pthread_attr_t, |
| 3399 | stackaddr: *mut *mut ::c_void, |
| 3400 | stacksize: *mut ::size_t) -> ::c_int; |
| 3401 | pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void; |
| 3402 | pub fn setgroups(ngroups: ::size_t, |
| 3403 | ptr: *const ::gid_t) -> ::c_int; |
| 3404 | pub fn pipe2(fds: *mut ::c_int, flags: ::c_int) -> ::c_int; |
| 3405 | pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int; |
| 3406 | pub fn statfs64(path: *const ::c_char, buf: *mut statfs64) -> ::c_int; |
| 3407 | pub fn fstatfs(fd: ::c_int, buf: *mut statfs) -> ::c_int; |
| 3408 | pub fn fstatfs64(fd: ::c_int, buf: *mut statfs64) -> ::c_int; |
| 3409 | pub fn statvfs64(path: *const ::c_char, buf: *mut statvfs64) -> ::c_int; |
| 3410 | pub fn fstatvfs64(fd: ::c_int, buf: *mut statvfs64) -> ::c_int; |
| 3411 | pub fn memrchr(cx: *const ::c_void, |
| 3412 | c: ::c_int, |
| 3413 | n: ::size_t) -> *mut ::c_void; |
| 3414 | |
| 3415 | pub fn posix_fadvise(fd: ::c_int, offset: ::off_t, len: ::off_t, |
| 3416 | advise: ::c_int) -> ::c_int; |
| 3417 | pub fn futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int; |
| 3418 | pub fn utimensat(dirfd: ::c_int, path: *const ::c_char, |
| 3419 | times: *const ::timespec, flag: ::c_int) -> ::c_int; |
| 3420 | pub fn duplocale(base: ::locale_t) -> ::locale_t; |
| 3421 | pub fn freelocale(loc: ::locale_t); |
| 3422 | pub fn newlocale(mask: ::c_int, |
| 3423 | locale: *const ::c_char, |
| 3424 | base: ::locale_t) -> ::locale_t; |
| 3425 | pub fn uselocale(loc: ::locale_t) -> ::locale_t; |
| 3426 | pub fn creat64(path: *const c_char, mode: mode_t) -> ::c_int; |
| 3427 | pub fn fstat64(fildes: ::c_int, buf: *mut stat64) -> ::c_int; |
| 3428 | pub fn fstatat64(dirfd: ::c_int, pathname: *const c_char, |
| 3429 | buf: *mut stat64, flags: ::c_int) -> ::c_int; |
| 3430 | pub fn ftruncate64(fd: ::c_int, length: off64_t) -> ::c_int; |
| 3431 | pub fn getrlimit64(resource: ::c_int, rlim: *mut rlimit64) -> ::c_int; |
| 3432 | pub fn lseek64(fd: ::c_int, offset: off64_t, whence: ::c_int) -> off64_t; |
| 3433 | pub fn lstat64(path: *const c_char, buf: *mut stat64) -> ::c_int; |
| 3434 | pub fn mmap64(addr: *mut ::c_void, |
| 3435 | len: ::size_t, |
| 3436 | prot: ::c_int, |
| 3437 | flags: ::c_int, |
| 3438 | fd: ::c_int, |
| 3439 | offset: off64_t) |
| 3440 | -> *mut ::c_void; |
| 3441 | pub fn open64(path: *const c_char, oflag: ::c_int, ...) -> ::c_int; |
| 3442 | pub fn openat64(fd: ::c_int, |
| 3443 | path: *const c_char, |
| 3444 | oflag: ::c_int, ...) -> ::c_int; |
| 3445 | pub fn pread64(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, |
| 3446 | offset: off64_t) -> ::ssize_t; |
| 3447 | pub fn preadv64(fd: ::c_int, |
| 3448 | iov: *const ::iovec, |
| 3449 | iovcnt: ::c_int, |
| 3450 | offset: ::off64_t) -> ::ssize_t; |
| 3451 | pub fn pwrite64(fd: ::c_int, buf: *const ::c_void, count: ::size_t, |
| 3452 | offset: off64_t) -> ::ssize_t; |
| 3453 | pub fn pwritev64(fd: ::c_int, |
| 3454 | iov: *const ::iovec, |
| 3455 | iovcnt: ::c_int, |
| 3456 | offset: ::off64_t) -> ::ssize_t; |
| 3457 | pub fn readdir64(dirp: *mut ::DIR) -> *mut ::dirent64; |
| 3458 | pub fn readdir64_r(dirp: *mut ::DIR, entry: *mut ::dirent64, |
| 3459 | result: *mut *mut ::dirent64) -> ::c_int; |
| 3460 | pub fn setrlimit64(resource: ::c_int, rlim: *const rlimit64) -> ::c_int; |
| 3461 | pub fn stat64(path: *const c_char, buf: *mut stat64) -> ::c_int; |
| 3462 | pub fn truncate64(path: *const c_char, length: off64_t) -> ::c_int; |
| 3463 | |
| 3464 | pub fn fdopendir(fd: ::c_int) -> *mut ::DIR; |
| 3465 | |
| 3466 | pub fn mknodat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3467 | mode: ::mode_t, dev: dev_t) -> ::c_int; |
| 3468 | pub fn pthread_condattr_getclock(attr: *const pthread_condattr_t, |
| 3469 | clock_id: *mut clockid_t) -> ::c_int; |
| 3470 | pub fn pthread_condattr_setclock(attr: *mut pthread_condattr_t, |
| 3471 | clock_id: ::clockid_t) -> ::c_int; |
| 3472 | pub fn pthread_condattr_setpshared(attr: *mut pthread_condattr_t, |
| 3473 | pshared: ::c_int) -> ::c_int; |
| 3474 | pub fn accept4(fd: ::c_int, addr: *mut ::sockaddr, len: *mut ::socklen_t, |
| 3475 | flg: ::c_int) -> ::c_int; |
| 3476 | pub fn pthread_mutexattr_setpshared(attr: *mut pthread_mutexattr_t, |
| 3477 | pshared: ::c_int) -> ::c_int; |
| 3478 | pub fn pthread_rwlockattr_getpshared(attr: *const pthread_rwlockattr_t, |
| 3479 | val: *mut ::c_int) -> ::c_int; |
| 3480 | pub fn pthread_rwlockattr_setpshared(attr: *mut pthread_rwlockattr_t, |
| 3481 | val: ::c_int) -> ::c_int; |
| 3482 | pub fn ptsname_r(fd: ::c_int, |
| 3483 | buf: *mut ::c_char, |
| 3484 | buflen: ::size_t) -> ::c_int; |
| 3485 | pub fn clearenv() -> ::c_int; |
| 3486 | pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t, |
| 3487 | options: ::c_int) -> ::c_int; |
| 3488 | pub fn setreuid(ruid: ::uid_t, euid: ::uid_t) -> ::c_int; |
| 3489 | pub fn setregid(rgid: ::gid_t, egid: ::gid_t) -> ::c_int; |
| 3490 | pub fn getresuid(ruid: *mut ::uid_t, euid: *mut ::uid_t, |
| 3491 | suid: *mut ::uid_t) -> ::c_int; |
| 3492 | pub fn getresgid(rgid: *mut ::gid_t, egid: *mut ::gid_t, |
| 3493 | sgid: *mut ::gid_t) -> ::c_int; |
| 3494 | pub fn acct(filename: *const ::c_char) -> ::c_int; |
| 3495 | pub fn brk(addr: *mut ::c_void) -> ::c_int; |
| 3496 | pub fn sbrk(increment: ::intptr_t) -> *mut ::c_void; |
| 3497 | pub fn vfork() -> ::pid_t; |
| 3498 | pub fn setresgid(rgid: ::gid_t, egid: ::gid_t, sgid: ::gid_t) -> ::c_int; |
| 3499 | pub fn setresuid(ruid: ::uid_t, euid: ::uid_t, suid: ::uid_t) -> ::c_int; |
| 3500 | pub fn wait4(pid: ::pid_t, status: *mut ::c_int, options: ::c_int, |
| 3501 | rusage: *mut ::rusage) -> ::pid_t; |
| 3502 | pub fn openpty(amaster: *mut ::c_int, |
| 3503 | aslave: *mut ::c_int, |
| 3504 | name: *mut ::c_char, |
| 3505 | termp: *const termios, |
| 3506 | winp: *const ::winsize) -> ::c_int; |
| 3507 | pub fn execvpe(file: *const ::c_char, argv: *const *const ::c_char, |
| 3508 | envp: *const *const ::c_char) -> ::c_int; |
| 3509 | pub fn fexecve(fd: ::c_int, argv: *const *const ::c_char, |
| 3510 | envp: *const *const ::c_char) |
| 3511 | -> ::c_int; |
| 3512 | |
| 3513 | pub fn ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int; |
| 3514 | pub fn ptrace(request: ::c_int, ...) -> ::c_long; |
| 3515 | pub fn getpriority(which: ::c_int, who: ::id_t) -> ::c_int; |
| 3516 | pub fn setpriority(which: ::c_int, who: ::id_t, prio: ::c_int) -> ::c_int; |
| 3517 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 3518 | pub fn aio_read(aiocbp: *mut aiocb) -> ::c_int; |
| 3519 | pub fn aio_write(aiocbp: *mut aiocb) -> ::c_int; |
| 3520 | pub fn aio_fsync(op: ::c_int, aiocbp: *mut aiocb) -> ::c_int; |
| 3521 | pub fn aio_error(aiocbp: *const aiocb) -> ::c_int; |
| 3522 | pub fn aio_return(aiocbp: *mut aiocb) -> ::ssize_t; |
| 3523 | pub fn aio_suspend(aiocb_list: *const *const aiocb, nitems: ::c_int, |
| 3524 | timeout: *const ::timespec) -> ::c_int; |
| 3525 | pub fn aio_cancel(fd: ::c_int, aiocbp: *mut aiocb) -> ::c_int; |
| 3526 | pub fn lio_listio(mode: ::c_int, aiocb_list: *const *mut aiocb, |
| 3527 | nitems: ::c_int, sevp: *mut ::sigevent) -> ::c_int; |
| 3528 | |
| 3529 | pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int; |
| 3530 | |
| 3531 | pub fn setpwent(); |
| 3532 | pub fn endpwent(); |
| 3533 | pub fn getpwent() -> *mut passwd; |
| 3534 | pub fn setspent(); |
| 3535 | pub fn endspent(); |
| 3536 | pub fn getspent() -> *mut spwd; |
| 3537 | pub fn getspnam(__name: *const ::c_char) -> *mut spwd; |
| 3538 | |
| 3539 | pub fn shm_open(name: *const c_char, oflag: ::c_int, |
| 3540 | mode: mode_t) -> ::c_int; |
| 3541 | |
| 3542 | // System V IPC |
| 3543 | pub fn shmget(key: ::key_t, size: ::size_t, shmflg: ::c_int) -> ::c_int; |
| 3544 | pub fn shmat(shmid: ::c_int, |
| 3545 | shmaddr: *const ::c_void, |
| 3546 | shmflg: ::c_int) -> *mut ::c_void; |
| 3547 | pub fn shmdt(shmaddr: *const ::c_void) -> ::c_int; |
| 3548 | pub fn shmctl(shmid: ::c_int, |
| 3549 | cmd: ::c_int, |
| 3550 | buf: *mut ::shmid_ds) -> ::c_int; |
| 3551 | pub fn ftok(pathname: *const ::c_char, proj_id: ::c_int) -> ::key_t; |
| 3552 | pub fn semget(key: ::key_t, nsems: ::c_int, semflag: ::c_int) -> ::c_int; |
| 3553 | pub fn semop(semid: ::c_int, |
| 3554 | sops: *mut ::sembuf, nsops: ::size_t) -> ::c_int; |
| 3555 | pub fn semctl(semid: ::c_int, |
| 3556 | semnum: ::c_int, cmd: ::c_int, ...) -> ::c_int; |
| 3557 | pub fn msgctl(msqid: ::c_int, cmd: ::c_int, buf: *mut msqid_ds) -> ::c_int; |
| 3558 | pub fn msgget(key: ::key_t, msgflg: ::c_int) -> ::c_int; |
| 3559 | pub fn msgrcv(msqid: ::c_int, msgp: *mut ::c_void, msgsz: ::size_t, |
| 3560 | msgtyp: ::c_long, msgflg: ::c_int) -> ::ssize_t; |
| 3561 | pub fn msgsnd(msqid: ::c_int, msgp: *const ::c_void, msgsz: ::size_t, |
| 3562 | msgflg: ::c_int) -> ::c_int; |
| 3563 | |
| 3564 | pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) |
| 3565 | -> ::c_int; |
| 3566 | pub fn __errno_location() -> *mut ::c_int; |
| 3567 | |
| 3568 | pub fn fopen64(filename: *const c_char, |
| 3569 | mode: *const c_char) -> *mut ::FILE; |
| 3570 | pub fn freopen64(filename: *const c_char, mode: *const c_char, |
| 3571 | file: *mut ::FILE) -> *mut ::FILE; |
| 3572 | pub fn tmpfile64() -> *mut ::FILE; |
| 3573 | pub fn fgetpos64(stream: *mut ::FILE, ptr: *mut fpos64_t) -> ::c_int; |
| 3574 | pub fn fsetpos64(stream: *mut ::FILE, ptr: *const fpos64_t) -> ::c_int; |
| 3575 | pub fn fseeko64(stream: *mut ::FILE, |
| 3576 | offset: ::off64_t, |
| 3577 | whence: ::c_int) -> ::c_int; |
| 3578 | pub fn ftello64(stream: *mut ::FILE) -> ::off64_t; |
| 3579 | pub fn fallocate(fd: ::c_int, mode: ::c_int, |
| 3580 | offset: ::off_t, len: ::off_t) -> ::c_int; |
| 3581 | pub fn posix_fallocate(fd: ::c_int, offset: ::off_t, |
| 3582 | len: ::off_t) -> ::c_int; |
| 3583 | pub fn readahead(fd: ::c_int, offset: ::off64_t, |
| 3584 | count: ::size_t) -> ::ssize_t; |
| 3585 | pub fn getxattr(path: *const c_char, name: *const c_char, |
| 3586 | value: *mut ::c_void, size: ::size_t) -> ::ssize_t; |
| 3587 | pub fn lgetxattr(path: *const c_char, name: *const c_char, |
| 3588 | value: *mut ::c_void, size: ::size_t) -> ::ssize_t; |
| 3589 | pub fn fgetxattr(filedes: ::c_int, name: *const c_char, |
| 3590 | value: *mut ::c_void, size: ::size_t) -> ::ssize_t; |
| 3591 | pub fn setxattr(path: *const c_char, name: *const c_char, |
| 3592 | value: *const ::c_void, size: ::size_t, |
| 3593 | flags: ::c_int) -> ::c_int; |
| 3594 | pub fn lsetxattr(path: *const c_char, name: *const c_char, |
| 3595 | value: *const ::c_void, size: ::size_t, |
| 3596 | flags: ::c_int) -> ::c_int; |
| 3597 | pub fn fsetxattr(filedes: ::c_int, name: *const c_char, |
| 3598 | value: *const ::c_void, size: ::size_t, |
| 3599 | flags: ::c_int) -> ::c_int; |
| 3600 | pub fn listxattr(path: *const c_char, list: *mut c_char, |
| 3601 | size: ::size_t) -> ::ssize_t; |
| 3602 | pub fn llistxattr(path: *const c_char, list: *mut c_char, |
| 3603 | size: ::size_t) -> ::ssize_t; |
| 3604 | pub fn flistxattr(filedes: ::c_int, list: *mut c_char, |
| 3605 | size: ::size_t) -> ::ssize_t; |
| 3606 | pub fn removexattr(path: *const c_char, name: *const c_char) -> ::c_int; |
| 3607 | pub fn lremovexattr(path: *const c_char, name: *const c_char) -> ::c_int; |
| 3608 | pub fn fremovexattr(filedes: ::c_int, name: *const c_char) -> ::c_int; |
| 3609 | pub fn signalfd(fd: ::c_int, |
| 3610 | mask: *const ::sigset_t, |
| 3611 | flags: ::c_int) -> ::c_int; |
| 3612 | pub fn timerfd_create(clockid: ::c_int, flags: ::c_int) -> ::c_int; |
| 3613 | pub fn timerfd_gettime(fd: ::c_int, |
| 3614 | curr_value: *mut itimerspec) -> ::c_int; |
| 3615 | pub fn timerfd_settime(fd: ::c_int, |
| 3616 | flags: ::c_int, |
| 3617 | new_value: *const itimerspec, |
| 3618 | old_value: *mut itimerspec) -> ::c_int; |
| 3619 | pub fn pwritev(fd: ::c_int, |
| 3620 | iov: *const ::iovec, |
| 3621 | iovcnt: ::c_int, |
| 3622 | offset: ::off_t) -> ::ssize_t; |
| 3623 | pub fn preadv(fd: ::c_int, |
| 3624 | iov: *const ::iovec, |
| 3625 | iovcnt: ::c_int, |
| 3626 | offset: ::off_t) -> ::ssize_t; |
| 3627 | pub fn quotactl(cmd: ::c_int, |
| 3628 | special: *const ::c_char, |
| 3629 | id: ::c_int, |
| 3630 | data: *mut ::c_char) -> ::c_int; |
| 3631 | pub fn mq_open(name: *const ::c_char, oflag: ::c_int, ...) -> ::mqd_t; |
| 3632 | pub fn mq_close(mqd: ::mqd_t) -> ::c_int; |
| 3633 | pub fn mq_unlink(name: *const ::c_char) -> ::c_int; |
| 3634 | pub fn mq_receive(mqd: ::mqd_t, |
| 3635 | msg_ptr: *mut ::c_char, |
| 3636 | msg_len: ::size_t, |
| 3637 | msq_prio: *mut ::c_uint) -> ::ssize_t; |
| 3638 | pub fn mq_send(mqd: ::mqd_t, |
| 3639 | msg_ptr: *const ::c_char, |
| 3640 | msg_len: ::size_t, |
| 3641 | msq_prio: ::c_uint) -> ::c_int; |
| 3642 | pub fn mq_getattr(mqd: ::mqd_t, attr: *mut ::mq_attr) -> ::c_int; |
| 3643 | pub fn mq_setattr(mqd: ::mqd_t, |
| 3644 | newattr: *const ::mq_attr, |
| 3645 | oldattr: *mut ::mq_attr) -> ::c_int; |
| 3646 | pub fn epoll_pwait(epfd: ::c_int, |
| 3647 | events: *mut ::epoll_event, |
| 3648 | maxevents: ::c_int, |
| 3649 | timeout: ::c_int, |
| 3650 | sigmask: *const ::sigset_t) -> ::c_int; |
| 3651 | pub fn dup3(oldfd: ::c_int, newfd: ::c_int, flags: ::c_int) -> ::c_int; |
| 3652 | pub fn mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int; |
| 3653 | pub fn mkostemps(template: *mut ::c_char, |
| 3654 | suffixlen: ::c_int, |
| 3655 | flags: ::c_int) -> ::c_int; |
| 3656 | pub fn sigtimedwait(set: *const sigset_t, |
| 3657 | info: *mut siginfo_t, |
| 3658 | timeout: *const ::timespec) -> ::c_int; |
| 3659 | pub fn sigwaitinfo(set: *const sigset_t, |
| 3660 | info: *mut siginfo_t) -> ::c_int; |
| 3661 | pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_char; |
| 3662 | pub fn getnameinfo(sa: *const ::sockaddr, |
| 3663 | salen: ::socklen_t, |
| 3664 | host: *mut ::c_char, |
| 3665 | hostlen: ::socklen_t, |
| 3666 | serv: *mut ::c_char, |
| 3667 | sevlen: ::socklen_t, |
| 3668 | flags: ::c_int) -> ::c_int; |
| 3669 | pub fn pthread_setschedprio(native: ::pthread_t, |
| 3670 | priority: ::c_int) -> ::c_int; |
| 3671 | pub fn prlimit(pid: ::pid_t, resource: ::c_int, new_limit: *const ::rlimit, |
| 3672 | old_limit: *mut ::rlimit) -> ::c_int; |
| 3673 | pub fn prlimit64(pid: ::pid_t, |
| 3674 | resource: ::c_int, |
| 3675 | new_limit: *const ::rlimit64, |
| 3676 | old_limit: *mut ::rlimit64) -> ::c_int; |
| 3677 | pub fn getloadavg(loadavg: *mut ::c_double, nelem: ::c_int) -> ::c_int; |
| 3678 | pub fn process_vm_readv(pid: ::pid_t, |
| 3679 | local_iov: *const ::iovec, |
| 3680 | liovcnt: ::c_ulong, |
| 3681 | remote_iov: *const ::iovec, |
| 3682 | riovcnt: ::c_ulong, |
| 3683 | flags: ::c_ulong) -> isize; |
| 3684 | pub fn process_vm_writev(pid: ::pid_t, |
| 3685 | local_iov: *const ::iovec, |
| 3686 | liovcnt: ::c_ulong, |
| 3687 | remote_iov: *const ::iovec, |
| 3688 | riovcnt: ::c_ulong, |
| 3689 | flags: ::c_ulong) -> isize; |
| 3690 | pub fn reboot(how_to: ::c_int) -> ::c_int; |
| 3691 | pub fn setfsgid(gid: ::gid_t) -> ::c_int; |
| 3692 | pub fn setfsuid(uid: ::uid_t) -> ::c_int; |
| 3693 | |
| 3694 | // Not available now on Android |
| 3695 | pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3696 | mode: ::mode_t) -> ::c_int; |
| 3697 | pub fn if_nameindex() -> *mut if_nameindex; |
| 3698 | pub fn if_freenameindex(ptr: *mut if_nameindex); |
| 3699 | pub fn sync_file_range(fd: ::c_int, offset: ::off64_t, |
| 3700 | nbytes: ::off64_t, flags: ::c_uint) -> ::c_int; |
| 3701 | pub fn getifaddrs(ifap: *mut *mut ::ifaddrs) -> ::c_int; |
| 3702 | pub fn freeifaddrs(ifa: *mut ::ifaddrs); |
| 3703 | |
| 3704 | pub fn mremap(addr: *mut ::c_void, |
| 3705 | len: ::size_t, |
| 3706 | new_len: ::size_t, |
| 3707 | flags: ::c_int, |
| 3708 | ...) -> *mut ::c_void; |
| 3709 | |
| 3710 | pub fn glob(pattern: *const c_char, |
| 3711 | flags: ::c_int, |
| 3712 | errfunc: Option<extern fn(epath: *const c_char, |
| 3713 | errno: ::c_int) -> ::c_int>, |
| 3714 | pglob: *mut ::glob_t) -> ::c_int; |
| 3715 | pub fn globfree(pglob: *mut ::glob_t); |
| 3716 | |
| 3717 | pub fn posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int) |
| 3718 | -> ::c_int; |
| 3719 | |
| 3720 | pub fn shm_unlink(name: *const ::c_char) -> ::c_int; |
| 3721 | |
| 3722 | pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long); |
| 3723 | |
| 3724 | pub fn telldir(dirp: *mut ::DIR) -> ::c_long; |
| 3725 | pub fn madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int) |
| 3726 | -> ::c_int; |
| 3727 | |
| 3728 | pub fn msync(addr: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::c_int; |
| 3729 | |
| 3730 | pub fn recvfrom(socket: ::c_int, buf: *mut ::c_void, len: ::size_t, |
| 3731 | flags: ::c_int, addr: *mut ::sockaddr, |
| 3732 | addrlen: *mut ::socklen_t) -> ::ssize_t; |
| 3733 | pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int; |
| 3734 | pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int; |
| 3735 | pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char; |
| 3736 | |
| 3737 | pub fn bind(socket: ::c_int, address: *const ::sockaddr, |
| 3738 | address_len: ::socklen_t) -> ::c_int; |
| 3739 | |
| 3740 | pub fn writev(fd: ::c_int, |
| 3741 | iov: *const ::iovec, |
| 3742 | iovcnt: ::c_int) -> ::ssize_t; |
| 3743 | pub fn readv(fd: ::c_int, |
| 3744 | iov: *const ::iovec, |
| 3745 | iovcnt: ::c_int) -> ::ssize_t; |
| 3746 | |
| 3747 | pub fn sendmsg(fd: ::c_int, |
| 3748 | msg: *const ::msghdr, |
| 3749 | flags: ::c_int) -> ::ssize_t; |
| 3750 | pub fn recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int) |
| 3751 | -> ::ssize_t; |
| 3752 | pub fn getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int; |
| 3753 | pub fn setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int; |
| 3754 | pub fn vhangup() -> ::c_int; |
| 3755 | pub fn sendmmsg(sockfd: ::c_int, msgvec: *mut mmsghdr, vlen: ::c_uint, |
| 3756 | flags: ::c_int) -> ::c_int; |
| 3757 | pub fn recvmmsg(sockfd: ::c_int, msgvec: *mut mmsghdr, vlen: ::c_uint, |
| 3758 | flags: ::c_int, timeout: *mut ::timespec) -> ::c_int; |
| 3759 | pub fn sync(); |
| 3760 | pub fn syscall(num: ::c_long, ...) -> ::c_long; |
| 3761 | pub fn sched_getaffinity(pid: ::pid_t, |
| 3762 | cpusetsize: ::size_t, |
| 3763 | cpuset: *mut cpu_set_t) -> ::c_int; |
| 3764 | pub fn sched_setaffinity(pid: ::pid_t, |
| 3765 | cpusetsize: ::size_t, |
| 3766 | cpuset: *const cpu_set_t) -> ::c_int; |
| 3767 | pub fn epoll_create(size: ::c_int) -> ::c_int; |
| 3768 | pub fn epoll_create1(flags: ::c_int) -> ::c_int; |
| 3769 | pub fn epoll_wait(epfd: ::c_int, |
| 3770 | events: *mut ::epoll_event, |
| 3771 | maxevents: ::c_int, |
| 3772 | timeout: ::c_int) -> ::c_int; |
| 3773 | pub fn epoll_ctl(epfd: ::c_int, |
| 3774 | op: ::c_int, |
| 3775 | fd: ::c_int, |
| 3776 | event: *mut ::epoll_event) -> ::c_int; |
| 3777 | pub fn pthread_getschedparam(native: ::pthread_t, |
| 3778 | policy: *mut ::c_int, |
| 3779 | param: *mut ::sched_param) -> ::c_int; |
| 3780 | pub fn unshare(flags: ::c_int) -> ::c_int; |
| 3781 | pub fn umount(target: *const ::c_char) -> ::c_int; |
| 3782 | pub fn sched_get_priority_max(policy: ::c_int) -> ::c_int; |
| 3783 | pub fn tee(fd_in: ::c_int, |
| 3784 | fd_out: ::c_int, |
| 3785 | len: ::size_t, |
| 3786 | flags: ::c_uint) -> ::ssize_t; |
| 3787 | pub fn settimeofday(tv: *const ::timeval, tz: *const ::timezone) -> ::c_int; |
| 3788 | pub fn splice(fd_in: ::c_int, |
| 3789 | off_in: *mut ::loff_t, |
| 3790 | fd_out: ::c_int, |
| 3791 | off_out: *mut ::loff_t, |
| 3792 | len: ::size_t, |
| 3793 | flags: ::c_uint) -> ::ssize_t; |
| 3794 | pub fn eventfd(init: ::c_uint, flags: ::c_int) -> ::c_int; |
| 3795 | pub fn sched_rr_get_interval(pid: ::pid_t, tp: *mut ::timespec) -> ::c_int; |
| 3796 | pub fn sem_timedwait(sem: *mut sem_t, |
| 3797 | abstime: *const ::timespec) -> ::c_int; |
| 3798 | pub fn sched_setparam(pid: ::pid_t, param: *const ::sched_param) -> ::c_int; |
| 3799 | pub fn setns(fd: ::c_int, nstype: ::c_int) -> ::c_int; |
| 3800 | pub fn swapoff(puath: *const ::c_char) -> ::c_int; |
| 3801 | pub fn vmsplice(fd: ::c_int, |
| 3802 | iov: *const ::iovec, |
| 3803 | nr_segs: ::size_t, |
| 3804 | flags: ::c_uint) -> ::ssize_t; |
| 3805 | pub fn mount(src: *const ::c_char, |
| 3806 | target: *const ::c_char, |
| 3807 | fstype: *const ::c_char, |
| 3808 | flags: ::c_ulong, |
| 3809 | data: *const ::c_void) -> ::c_int; |
| 3810 | pub fn personality(persona: ::c_ulong) -> ::c_int; |
| 3811 | pub fn prctl(option: ::c_int, ...) -> ::c_int; |
| 3812 | pub fn sched_getparam(pid: ::pid_t, param: *mut ::sched_param) -> ::c_int; |
| 3813 | pub fn ppoll(fds: *mut ::pollfd, |
| 3814 | nfds: nfds_t, |
| 3815 | timeout: *const ::timespec, |
| 3816 | sigmask: *const sigset_t) -> ::c_int; |
| 3817 | pub fn pthread_mutex_timedlock(lock: *mut pthread_mutex_t, |
| 3818 | abstime: *const ::timespec) -> ::c_int; |
| 3819 | pub fn clone(cb: extern fn(*mut ::c_void) -> ::c_int, |
| 3820 | child_stack: *mut ::c_void, |
| 3821 | flags: ::c_int, |
| 3822 | arg: *mut ::c_void, ...) -> ::c_int; |
| 3823 | pub fn sched_getscheduler(pid: ::pid_t) -> ::c_int; |
| 3824 | pub fn clock_nanosleep(clk_id: ::clockid_t, |
| 3825 | flags: ::c_int, |
| 3826 | rqtp: *const ::timespec, |
| 3827 | rmtp: *mut ::timespec) -> ::c_int; |
| 3828 | pub fn pthread_attr_getguardsize(attr: *const ::pthread_attr_t, |
| 3829 | guardsize: *mut ::size_t) -> ::c_int; |
| 3830 | pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int; |
| 3831 | pub fn sched_get_priority_min(policy: ::c_int) -> ::c_int; |
| 3832 | pub fn pthread_condattr_getpshared(attr: *const pthread_condattr_t, |
| 3833 | pshared: *mut ::c_int) -> ::c_int; |
| 3834 | pub fn sysinfo(info: *mut ::sysinfo) -> ::c_int; |
| 3835 | pub fn umount2(target: *const ::c_char, flags: ::c_int) -> ::c_int; |
| 3836 | pub fn pthread_setschedparam(native: ::pthread_t, |
| 3837 | policy: ::c_int, |
| 3838 | param: *const ::sched_param) -> ::c_int; |
| 3839 | pub fn swapon(path: *const ::c_char, swapflags: ::c_int) -> ::c_int; |
| 3840 | pub fn sched_setscheduler(pid: ::pid_t, |
| 3841 | policy: ::c_int, |
| 3842 | param: *const ::sched_param) -> ::c_int; |
| 3843 | pub fn sendfile(out_fd: ::c_int, |
| 3844 | in_fd: ::c_int, |
| 3845 | offset: *mut off_t, |
| 3846 | count: ::size_t) -> ::ssize_t; |
| 3847 | pub fn sigsuspend(mask: *const ::sigset_t) -> ::c_int; |
| 3848 | pub fn getgrgid_r(uid: ::uid_t, |
| 3849 | grp: *mut ::group, |
| 3850 | buf: *mut ::c_char, |
| 3851 | buflen: ::size_t, |
| 3852 | result: *mut *mut ::group) -> ::c_int; |
| 3853 | pub fn sigaltstack(ss: *const stack_t, |
| 3854 | oss: *mut stack_t) -> ::c_int; |
| 3855 | pub fn sem_close(sem: *mut sem_t) -> ::c_int; |
| 3856 | pub fn getdtablesize() -> ::c_int; |
| 3857 | pub fn getgrnam_r(name: *const ::c_char, |
| 3858 | grp: *mut ::group, |
| 3859 | buf: *mut ::c_char, |
| 3860 | buflen: ::size_t, |
| 3861 | result: *mut *mut ::group) -> ::c_int; |
| 3862 | pub fn initgroups(user: *const ::c_char, group: ::gid_t) -> ::c_int; |
| 3863 | pub fn pthread_sigmask(how: ::c_int, set: *const sigset_t, |
| 3864 | oldset: *mut sigset_t) -> ::c_int; |
| 3865 | pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t; |
| 3866 | pub fn getgrnam(name: *const ::c_char) -> *mut ::group; |
| 3867 | pub fn pthread_cancel(thread: ::pthread_t) -> ::c_int; |
| 3868 | pub fn pthread_kill(thread: ::pthread_t, sig: ::c_int) -> ::c_int; |
| 3869 | pub fn sem_unlink(name: *const ::c_char) -> ::c_int; |
| 3870 | pub fn daemon(nochdir: ::c_int, noclose: ::c_int) -> ::c_int; |
| 3871 | pub fn getpwnam_r(name: *const ::c_char, |
| 3872 | pwd: *mut passwd, |
| 3873 | buf: *mut ::c_char, |
| 3874 | buflen: ::size_t, |
| 3875 | result: *mut *mut passwd) -> ::c_int; |
| 3876 | pub fn getpwuid_r(uid: ::uid_t, |
| 3877 | pwd: *mut passwd, |
| 3878 | buf: *mut ::c_char, |
| 3879 | buflen: ::size_t, |
| 3880 | result: *mut *mut passwd) -> ::c_int; |
| 3881 | pub fn sigwait(set: *const sigset_t, |
| 3882 | sig: *mut ::c_int) -> ::c_int; |
| 3883 | pub fn pthread_atfork(prepare: Option<unsafe extern fn()>, |
| 3884 | parent: Option<unsafe extern fn()>, |
| 3885 | child: Option<unsafe extern fn()>) -> ::c_int; |
| 3886 | pub fn getgrgid(gid: ::gid_t) -> *mut ::group; |
| 3887 | pub fn getgrouplist(user: *const ::c_char, |
| 3888 | group: ::gid_t, |
| 3889 | groups: *mut ::gid_t, |
| 3890 | ngroups: *mut ::c_int) -> ::c_int; |
| 3891 | pub fn pthread_mutexattr_getpshared(attr: *const pthread_mutexattr_t, |
| 3892 | pshared: *mut ::c_int) -> ::c_int; |
| 3893 | pub fn popen(command: *const c_char, |
| 3894 | mode: *const c_char) -> *mut ::FILE; |
| 3895 | pub fn faccessat(dirfd: ::c_int, pathname: *const ::c_char, |
| 3896 | mode: ::c_int, flags: ::c_int) -> ::c_int; |
| 3897 | pub fn pthread_create(native: *mut ::pthread_t, |
| 3898 | attr: *const ::pthread_attr_t, |
| 3899 | f: extern fn(*mut ::c_void) -> *mut ::c_void, |
| 3900 | value: *mut ::c_void) -> ::c_int; |
| 3901 | pub fn dl_iterate_phdr( |
| 3902 | callback: Option<unsafe extern fn( |
| 3903 | info: *mut ::dl_phdr_info, |
| 3904 | size: ::size_t, |
| 3905 | data: *mut ::c_void |
| 3906 | ) -> ::c_int>, |
| 3907 | data: *mut ::c_void |
| 3908 | ) -> ::c_int; |
| 3909 | } |
| 3910 | |
Taylor Cramer | f7f9be3 | 2017-11-15 10:22:26 -0800 | [diff] [blame] | 3911 | cfg_if! { |
| 3912 | if #[cfg(target_arch = "aarch64")] { |
| 3913 | mod aarch64; |
| 3914 | pub use self::aarch64::*; |
| 3915 | } else if #[cfg(any(target_arch = "powerpc64"))] { |
| 3916 | mod powerpc64; |
| 3917 | pub use self::powerpc64::*; |
| 3918 | } else if #[cfg(any(target_arch = "x86_64"))] { |
| 3919 | mod x86_64; |
| 3920 | pub use self::x86_64::*; |
| 3921 | } else { |
| 3922 | // Unknown target_arch |
| 3923 | } |
| 3924 | } |