xref: /rust-libc-0.2.174/src/vxworks/mod.rs (revision af80ac49)
1 //! Interface to VxWorks C library
2 
3 use core::mem::size_of;
4 use core::ptr::null_mut;
5 
6 #[cfg_attr(feature = "extra_traits", derive(Debug))]
7 pub enum DIR {}
8 impl ::Copy for DIR {}
9 impl ::Clone for DIR {
10     fn clone(&self) -> DIR {
11         *self
12     }
13 }
14 
15 pub type c_schar = i8;
16 pub type c_uchar = u8;
17 pub type c_short = i16;
18 pub type c_ushort = u16;
19 pub type c_int = i32;
20 pub type c_uint = u32;
21 pub type c_float = f32;
22 pub type c_double = f64;
23 pub type c_longlong = i64;
24 pub type c_ulonglong = u64;
25 pub type intmax_t = i64;
26 pub type uintmax_t = u64;
27 
28 pub type uintptr_t = usize;
29 pub type intptr_t = isize;
30 pub type ptrdiff_t = isize;
31 pub type size_t = ::uintptr_t;
32 pub type ssize_t = ::intptr_t;
33 
34 pub type pid_t = ::c_int;
35 pub type in_addr_t = u32;
36 pub type sighandler_t = ::size_t;
37 pub type cpuset_t = u32;
38 
39 pub type blkcnt_t = ::c_long;
40 pub type blksize_t = ::c_long;
41 pub type ino_t = ::c_ulong;
42 
43 pub type rlim_t = ::c_ulong;
44 pub type suseconds_t = ::c_long;
45 pub type time_t = ::c_long;
46 
47 pub type errno_t = ::c_int;
48 
49 pub type useconds_t = ::c_ulong;
50 
51 pub type socklen_t = ::c_uint;
52 
53 pub type pthread_t = ::c_ulong;
54 
55 pub type clockid_t = ::c_int;
56 
57 //defined for the structs
58 pub type dev_t = ::c_ulong;
59 pub type mode_t = ::c_int;
60 pub type nlink_t = ::c_ulong;
61 pub type uid_t = ::c_ushort;
62 pub type gid_t = ::c_ushort;
63 pub type sigset_t = ::c_ulonglong;
64 pub type key_t = ::c_long;
65 
66 pub type nfds_t = ::c_uint;
67 pub type stat64 = ::stat;
68 
69 pub type pthread_key_t = ::c_ulong;
70 
71 // From b_off_t.h
72 pub type off_t = ::c_longlong;
73 pub type off64_t = off_t;
74 
75 // From b_BOOL.h
76 pub type BOOL = ::c_int;
77 
78 // From vxWind.h ..
79 pub type _Vx_OBJ_HANDLE = ::c_int;
80 pub type _Vx_TASK_ID = ::_Vx_OBJ_HANDLE;
81 pub type _Vx_MSG_Q_ID = ::_Vx_OBJ_HANDLE;
82 pub type _Vx_SEM_ID_KERNEL = ::_Vx_OBJ_HANDLE;
83 pub type _Vx_RTP_ID = ::_Vx_OBJ_HANDLE;
84 pub type _Vx_SD_ID = ::_Vx_OBJ_HANDLE;
85 pub type _Vx_CONDVAR_ID = ::_Vx_OBJ_HANDLE;
86 pub type _Vx_SEM_ID = *mut ::_Vx_semaphore;
87 pub type OBJ_HANDLE = ::_Vx_OBJ_HANDLE;
88 pub type TASK_ID = ::OBJ_HANDLE;
89 pub type MSG_Q_ID = ::OBJ_HANDLE;
90 pub type SEM_ID_KERNEL = ::OBJ_HANDLE;
91 pub type RTP_ID = ::OBJ_HANDLE;
92 pub type SD_ID = ::OBJ_HANDLE;
93 pub type CONDVAR_ID = ::OBJ_HANDLE;
94 pub type STATUS = ::OBJ_HANDLE;
95 
96 // From vxTypes.h
97 pub type _Vx_usr_arg_t = isize;
98 pub type _Vx_exit_code_t = isize;
99 pub type _Vx_ticks_t = ::c_uint;
100 pub type _Vx_ticks64_t = ::c_ulonglong;
101 
102 pub type sa_family_t = ::c_uchar;
103 
104 // mqueue.h
105 pub type mqd_t = ::c_int;
106 
107 #[cfg_attr(feature = "extra_traits", derive(Debug))]
108 pub enum _Vx_semaphore {}
109 impl ::Copy for _Vx_semaphore {}
110 impl ::Clone for _Vx_semaphore {
111     fn clone(&self) -> _Vx_semaphore {
112         *self
113     }
114 }
115 
116 impl siginfo_t {
117     pub unsafe fn si_addr(&self) -> *mut ::c_void {
118         self.si_addr
119     }
120 
121     pub unsafe fn si_value(&self) -> ::sigval {
122         self.si_value
123     }
124 
125     pub unsafe fn si_pid(&self) -> ::pid_t {
126         self.si_pid
127     }
128 
129     pub unsafe fn si_uid(&self) -> ::uid_t {
130         self.si_uid
131     }
132 
133     pub unsafe fn si_status(&self) -> ::c_int {
134         self.si_status
135     }
136 }
137 
138 s! {
139     // b_pthread_condattr_t.h
140     pub struct pthread_condattr_t {
141         pub condAttrStatus: ::c_int,
142         pub condAttrPshared: ::c_int,
143         pub condAttrClockId: ::clockid_t,
144     }
145 
146     // b_pthread_cond_t.h
147     pub struct pthread_cond_t{
148         pub condSemId: ::_Vx_SEM_ID,
149         pub condValid: ::c_int,
150         pub condInitted: ::c_int,
151         pub condRefCount: ::c_int,
152         pub condMutex: *mut ::pthread_mutex_t,
153         pub condAttr: ::pthread_condattr_t,
154         pub condSemName: [::c_char; _PTHREAD_SHARED_SEM_NAME_MAX]
155     }
156 
157     // b_pthread_rwlockattr_t.h
158     pub struct pthread_rwlockattr_t {
159         pub rwlockAttrStatus: ::c_int,
160         pub rwlockAttrPshared: ::c_int,
161         pub rwlockAttrMaxReaders: ::c_uint,
162         pub rwlockAttrConformOpt: ::c_uint,
163     }
164 
165     // b_pthread_rwlock_t.h
166     pub struct pthread_rwlock_t {
167         pub rwlockSemId: :: _Vx_SEM_ID,
168         pub rwlockReadersRefCount: ::c_uint,
169         pub rwlockValid: ::c_int,
170         pub rwlockInitted: ::c_int,
171         pub rwlockAttr: ::pthread_rwlockattr_t,
172         pub rwlockSemName: [::c_char; _PTHREAD_SHARED_SEM_NAME_MAX]
173     }
174 
175     // b_struct_timeval.h
176     pub struct timeval {
177         pub tv_sec: ::time_t,
178         pub tv_usec: ::suseconds_t,
179     }
180 
181     // socket.h
182     pub struct linger {
183         pub l_onoff: ::c_int,
184         pub l_linger: ::c_int,
185     }
186 
187     pub struct sockaddr {
188         pub sa_len    : ::c_uchar,
189         pub sa_family : sa_family_t,
190         pub sa_data   : [::c_char; 14],
191     }
192 
193     pub struct iovec {
194         pub iov_base: *mut ::c_void,
195         pub iov_len: ::size_t,
196     }
197 
198     pub struct msghdr {
199         pub msg_name: *mut c_void,
200         pub msg_namelen: socklen_t,
201         pub msg_iov: *mut iovec,
202         pub msg_iovlen: ::c_int,
203         pub msg_control: *mut c_void,
204         pub msg_controllen: socklen_t,
205         pub msg_flags: ::c_int,
206     }
207 
208     pub struct cmsghdr {
209         pub cmsg_len: socklen_t,
210         pub cmsg_level: ::c_int,
211         pub cmsg_type: ::c_int,
212     }
213 
214     // poll.h
215     pub struct pollfd {
216         pub fd      : ::c_int,
217         pub events  : ::c_short,
218         pub revents : ::c_short,
219     }
220 
221     // resource.h
222     pub struct rlimit {
223                            pub rlim_cur : ::rlim_t,
224                            pub rlim_max : ::rlim_t,
225     }
226 
227     // stat.h
228     pub struct stat {
229                          pub st_dev       : ::dev_t,
230                          pub st_ino       : ::ino_t,
231                          pub st_mode      : ::mode_t,
232                          pub st_nlink     : ::nlink_t,
233                          pub st_uid       : ::uid_t,
234                          pub st_gid       : ::gid_t,
235                          pub st_rdev      : ::dev_t,
236                          pub st_size      : ::off_t,
237                          pub st_atime     : ::time_t,
238                          pub st_mtime     : ::time_t,
239                          pub st_ctime     : ::time_t,
240                          pub st_blksize   : ::blksize_t,
241                          pub st_blocks    : ::blkcnt_t,
242                          pub st_attrib    : ::c_uchar,
243                          pub st_reserved1 : ::c_int,
244                          pub st_reserved2 : ::c_int,
245                          pub st_reserved3 : ::c_int,
246                          pub st_reserved4 : ::c_int,
247     }
248 
249     //b_struct__Timespec.h
250     pub struct _Timespec {
251         pub tv_sec  : ::time_t,
252         pub tv_nsec : ::c_long,
253     }
254 
255     // b_struct__Sched_param.h
256     pub struct _Sched_param {
257         pub sched_priority: ::c_int, /* scheduling priority */
258         pub sched_ss_low_priority: ::c_int,    /* low scheduling priority */
259         pub sched_ss_repl_period: ::_Timespec, /* replenishment period */
260         pub sched_ss_init_budget: ::_Timespec, /* initial budget */
261         pub sched_ss_max_repl: ::c_int,        /* max pending replenishment */
262 
263     }
264 
265     // b_pthread_attr_t.h
266     pub struct pthread_attr_t {
267         pub threadAttrStatus          : ::c_int,
268         pub threadAttrStacksize       : ::size_t,
269         pub threadAttrStackaddr       : *mut ::c_void,
270         pub threadAttrGuardsize       : ::size_t,
271         pub threadAttrDetachstate     : ::c_int,
272         pub threadAttrContentionscope : ::c_int,
273         pub threadAttrInheritsched    : ::c_int,
274         pub threadAttrSchedpolicy     : ::c_int,
275         pub threadAttrName            : *mut ::c_char,
276         pub threadAttrOptions         : ::c_int,
277         pub threadAttrSchedparam      : ::_Sched_param,
278     }
279 
280     // signal.h
281 
282     pub struct sigaction {
283         pub sa_u     : ::sa_u_t,
284         pub sa_mask  : ::sigset_t,
285         pub sa_flags : ::c_int,
286     }
287 
288     // b_stack_t.h
289     pub struct stack_t {
290         pub ss_sp    : *mut ::c_void,
291         pub ss_size  : ::size_t,
292         pub ss_flags : ::c_int,
293     }
294 
295     // signal.h
296     pub struct siginfo_t {
297         pub si_signo : ::c_int,
298         pub si_code  : ::c_int,
299         pub si_value : ::sigval,
300         pub si_errno : ::c_int,
301         pub si_status: ::c_int,
302         pub si_addr: *mut ::c_void,
303         pub si_uid: ::uid_t,
304         pub si_pid: ::pid_t,
305     }
306 
307     // pthread.h (krnl)
308     // b_pthread_mutexattr_t.h (usr)
309     pub struct pthread_mutexattr_t {
310         mutexAttrStatus      : ::c_int,
311         mutexAttrPshared     : ::c_int,
312         mutexAttrProtocol    : ::c_int,
313         mutexAttrPrioceiling : ::c_int,
314         mutexAttrType        : ::c_int,
315     }
316 
317     // pthread.h (krnl)
318     // b_pthread_mutex_t.h (usr)
319     pub struct pthread_mutex_t  {
320         pub mutexSemId: ::_Vx_SEM_ID, /*_Vx_SEM_ID ..*/
321         pub mutexValid: ::c_int,
322         pub mutexInitted: ::c_int,
323         pub mutexCondRefCount: ::c_int,
324         pub mutexSavPriority: ::c_int,
325         pub mutexAttr: ::pthread_mutexattr_t,
326         pub mutexSemName: [::c_char; _PTHREAD_SHARED_SEM_NAME_MAX],
327     }
328 
329     // b_struct_timespec.h
330     pub struct timespec {
331         pub tv_sec: ::time_t,
332         pub tv_nsec: ::c_long,
333     }
334 
335     // time.h
336     pub struct tm {
337         pub tm_sec: ::c_int,
338         pub tm_min: ::c_int,
339         pub tm_hour: ::c_int,
340         pub tm_mday: ::c_int,
341         pub tm_mon: ::c_int,
342         pub tm_year: ::c_int,
343         pub tm_wday: ::c_int,
344         pub tm_yday: ::c_int,
345         pub tm_isdst: ::c_int,
346     }
347 
348     // in.h
349     pub struct in_addr {
350         pub s_addr: in_addr_t,
351     }
352 
353     // in.h
354     pub struct ip_mreq {
355         pub imr_multiaddr: in_addr,
356         pub imr_interface: in_addr,
357     }
358 
359     // in6.h
360     #[repr(align(4))]
361     pub struct in6_addr {
362         pub s6_addr: [u8; 16],
363     }
364 
365     // in6.h
366     pub struct ipv6_mreq {
367         pub ipv6mr_multiaddr: in6_addr,
368         pub ipv6mr_interface: ::c_uint,
369     }
370 
371     // netdb.h
372     pub struct addrinfo {
373         pub ai_flags    : ::c_int,
374         pub ai_family   : ::c_int,
375         pub ai_socktype : ::c_int,
376         pub ai_protocol : ::c_int,
377         pub ai_addrlen  : ::size_t,
378         pub ai_canonname: *mut ::c_char,
379         pub ai_addr     : *mut ::sockaddr,
380         pub ai_next     : *mut ::addrinfo,
381     }
382 
383     // in.h
384     pub struct sockaddr_in {
385         pub sin_len   : u8,
386         pub sin_family: u8,
387         pub sin_port  : u16,
388         pub sin_addr  : ::in_addr,
389         pub sin_zero  : [::c_char; 8],
390     }
391 
392     // in6.h
393     pub struct sockaddr_in6 {
394         pub sin6_len     : u8,
395         pub sin6_family  : u8,
396         pub sin6_port    : u16,
397         pub sin6_flowinfo: u32,
398         pub sin6_addr    : ::in6_addr,
399         pub sin6_scope_id: u32,
400     }
401 
402     pub struct Dl_info {
403         pub dli_fname: *const ::c_char,
404         pub dli_fbase: *mut ::c_void,
405         pub dli_sname: *const ::c_char,
406         pub dli_saddr: *mut ::c_void,
407     }
408 
409     pub struct mq_attr {
410         pub mq_maxmsg:  ::c_long,
411         pub mq_msgsize: ::c_long,
412         pub mq_flags:   ::c_long,
413         pub mq_curmsgs: ::c_long,
414     }
415 }
416 
417 s_no_extra_traits! {
418     // dirent.h
419     pub struct dirent {
420         pub d_ino  : ::ino_t,
421         pub d_name : [::c_char; _PARM_NAME_MAX as usize + 1],
422     }
423 
424     pub struct sockaddr_un {
425         pub sun_len: u8,
426         pub sun_family: sa_family_t,
427         pub sun_path: [::c_char; 104]
428     }
429 
430     // rtpLibCommon.h
431     pub struct RTP_DESC {
432         pub status    : ::c_int,
433         pub options   : u32,
434         pub entrAddr  : *mut ::c_void,
435         pub initTaskId: ::TASK_ID,
436         pub parentId  : ::RTP_ID,
437         pub pathName  : [::c_char; VX_RTP_NAME_LENGTH as usize + 1],
438         pub taskCnt   : ::c_int,
439         pub textStart : *mut ::c_void,
440         pub textEnd   : *mut ::c_void,
441     }
442     // socket.h
443     pub struct sockaddr_storage {
444         pub ss_len     : ::c_uchar,
445         pub ss_family  : ::sa_family_t,
446         pub __ss_pad1  : [::c_char; _SS_PAD1SIZE],
447         pub __ss_align : i32,
448         pub __ss_pad2  : [::c_char; _SS_PAD2SIZE],
449     }
450 
451     pub union sa_u_t {
452         pub sa_handler : ::Option<unsafe extern "C" fn(::c_int) -> !>,
453         pub sa_sigaction: ::Option<unsafe extern "C" fn(::c_int,
454                                                         *mut ::siginfo_t,
455                                                         *mut ::c_void) -> !>,
456     }
457 
458     pub union sigval {
459         pub sival_int : ::c_int,
460         pub sival_ptr : *mut ::c_void,
461     }
462 }
463 
464 cfg_if! {
465     if #[cfg(feature = "extra_traits")] {
466         impl ::fmt::Debug for dirent {
467             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
468                 f.debug_struct("dirent")
469                     .field("d_ino", &self.d_ino)
470                     .field("d_name", &&self.d_name[..])
471                     .finish()
472             }
473         }
474 
475         impl ::fmt::Debug for sockaddr_un {
476             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
477                 f.debug_struct("sockaddr_un")
478                     .field("sun_len", &self.sun_len)
479                     .field("sun_family", &self.sun_family)
480                     .field("sun_path", &&self.sun_path[..])
481                     .finish()
482             }
483         }
484 
485         impl ::fmt::Debug for RTP_DESC {
486             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
487                 f.debug_struct("RTP_DESC")
488                     .field("status", &self.status)
489                     .field("options", &self.options)
490                     .field("entrAddr", &self.entrAddr)
491                     .field("initTaskId", &self.initTaskId)
492                     .field("parentId", &self.parentId)
493                     .field("pathName", &&self.pathName[..])
494                     .field("taskCnt", &self.taskCnt)
495                     .field("textStart", &self.textStart)
496                     .field("textEnd", &self.textEnd)
497                     .finish()
498             }
499         }
500         impl ::fmt::Debug for sockaddr_storage {
501             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
502                 f.debug_struct("sockaddr_storage")
503                     .field("ss_len", &self.ss_len)
504                     .field("ss_family", &self.ss_family)
505                     .field("__ss_pad1", &&self.__ss_pad1[..])
506                     .field("__ss_align", &self.__ss_align)
507                     .field("__ss_pad2", &&self.__ss_pad2[..])
508                     .finish()
509             }
510         }
511 
512         impl PartialEq for sa_u_t {
513             fn eq(&self, other: &sa_u_t) -> bool {
514                 unsafe {
515                     let h1 = match self.sa_handler {
516                         Some(handler) => handler as usize,
517                         None => 0 as usize,
518                     };
519                     let h2 = match other.sa_handler {
520                         Some(handler) => handler as usize,
521                         None => 0 as usize,
522                     };
523                     h1 == h2
524                 }
525             }
526         }
527         impl Eq for sa_u_t {}
528         impl ::fmt::Debug for sa_u_t {
529             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
530                 unsafe {
531                     let h = match self.sa_handler {
532                         Some(handler) => handler as usize,
533                         None => 0 as usize,
534                     };
535 
536                     f.debug_struct("sa_u_t")
537                         .field("sa_handler", &h)
538                         .finish()
539                 }
540             }
541         }
542         impl ::hash::Hash for sa_u_t {
543             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
544                 unsafe {
545                     let h = match self.sa_handler {
546                         Some(handler) => handler as usize,
547                         None => 0 as usize,
548                     };
549                     h.hash(state)
550                 }
551             }
552         }
553 
554         impl PartialEq for sigval {
555             fn eq(&self, other: &sigval) -> bool {
556                 unsafe { self.sival_ptr as usize == other.sival_ptr as usize }
557             }
558         }
559         impl Eq for sigval {}
560         impl ::fmt::Debug for sigval {
561             fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
562                 f.debug_struct("sigval")
563                     .field("sival_ptr", unsafe { &(self.sival_ptr as usize) })
564                     .finish()
565             }
566         }
567         impl ::hash::Hash for sigval {
568             fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
569                 unsafe { (self.sival_ptr as usize).hash(state) };
570             }
571         }
572     }
573 }
574 
575 pub const STDIN_FILENO: ::c_int = 0;
576 pub const STDOUT_FILENO: ::c_int = 1;
577 pub const STDERR_FILENO: ::c_int = 2;
578 
579 pub const EXIT_SUCCESS: ::c_int = 0;
580 pub const EXIT_FAILURE: ::c_int = 1;
581 
582 pub const EAI_SERVICE: ::c_int = 9;
583 pub const EAI_SOCKTYPE: ::c_int = 10;
584 pub const EAI_SYSTEM: ::c_int = 11;
585 
586 // FIXME: This is not defined in vxWorks, but we have to define it here
587 // to make the building pass for getrandom and std
588 pub const RTLD_DEFAULT: *mut ::c_void = 0i64 as *mut ::c_void;
589 
590 //Clock Lib Stuff
591 pub const CLOCK_REALTIME: ::c_int = 0x0;
592 pub const CLOCK_MONOTONIC: ::c_int = 0x1;
593 pub const CLOCK_PROCESS_CPUTIME_ID: ::c_int = 0x2;
594 pub const CLOCK_THREAD_CPUTIME_ID: ::c_int = 0x3;
595 pub const TIMER_ABSTIME: ::c_int = 0x1;
596 pub const TIMER_RELTIME: ::c_int = 0x0;
597 
598 // PTHREAD STUFF
599 pub const PTHREAD_INITIALIZED_OBJ: ::c_int = 0xF70990EF;
600 pub const PTHREAD_DESTROYED_OBJ: ::c_int = -1;
601 pub const PTHREAD_VALID_OBJ: ::c_int = 0xEC542A37;
602 pub const PTHREAD_INVALID_OBJ: ::c_int = -1;
603 pub const PTHREAD_UNUSED_YET_OBJ: ::c_int = -1;
604 
605 pub const PTHREAD_PRIO_NONE: ::c_int = 0;
606 pub const PTHREAD_PRIO_INHERIT: ::c_int = 1;
607 pub const PTHREAD_PRIO_PROTECT: ::c_int = 2;
608 
609 pub const PTHREAD_MUTEX_NORMAL: ::c_int = 0;
610 pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 1;
611 pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 2;
612 pub const PTHREAD_MUTEX_DEFAULT: ::c_int = PTHREAD_MUTEX_NORMAL;
613 pub const PTHREAD_STACK_MIN: usize = 4096;
614 pub const _PTHREAD_SHARED_SEM_NAME_MAX: usize = 30;
615 
616 // ERRNO STUFF
617 pub const ERROR: ::c_int = -1;
618 pub const OK: ::c_int = 0;
619 pub const EPERM: ::c_int = 1; /* Not owner */
620 pub const ENOENT: ::c_int = 2; /* No such file or directory */
621 pub const ESRCH: ::c_int = 3; /* No such process */
622 pub const EINTR: ::c_int = 4; /* Interrupted system call */
623 pub const EIO: ::c_int = 5; /* I/O error */
624 pub const ENXIO: ::c_int = 6; /* No such device or address */
625 pub const E2BIG: ::c_int = 7; /* Arg list too long */
626 pub const ENOEXEC: ::c_int = 8; /* Exec format error */
627 pub const EBADF: ::c_int = 9; /* Bad file number */
628 pub const ECHILD: ::c_int = 10; /* No children */
629 pub const EAGAIN: ::c_int = 11; /* No more processes */
630 pub const ENOMEM: ::c_int = 12; /* Not enough core */
631 pub const EACCES: ::c_int = 13; /* Permission denied */
632 pub const EFAULT: ::c_int = 14;
633 pub const ENOTEMPTY: ::c_int = 15;
634 pub const EBUSY: ::c_int = 16;
635 pub const EEXIST: ::c_int = 17;
636 pub const EXDEV: ::c_int = 18;
637 pub const ENODEV: ::c_int = 19;
638 pub const ENOTDIR: ::c_int = 20;
639 pub const EISDIR: ::c_int = 21;
640 pub const EINVAL: ::c_int = 22;
641 pub const ENAMETOOLONG: ::c_int = 26;
642 pub const EFBIG: ::c_int = 27;
643 pub const ENOSPC: ::c_int = 28;
644 pub const ESPIPE: ::c_int = 29;
645 pub const EROFS: ::c_int = 30;
646 pub const EMLINK: ::c_int = 31;
647 pub const EPIPE: ::c_int = 32;
648 pub const EDEADLK: ::c_int = 33;
649 pub const ERANGE: ::c_int = 38;
650 pub const EDESTADDRREQ: ::c_int = 40;
651 pub const EPROTOTYPE: ::c_int = 41;
652 pub const ENOPROTOOPT: ::c_int = 42;
653 pub const EPROTONOSUPPORT: ::c_int = 43;
654 pub const ESOCKTNOSUPPORT: ::c_int = 44;
655 pub const EOPNOTSUPP: ::c_int = 45;
656 pub const EPFNOSUPPORT: ::c_int = 46;
657 pub const EAFNOSUPPORT: ::c_int = 47;
658 pub const EADDRINUSE: ::c_int = 48;
659 pub const EADDRNOTAVAIL: ::c_int = 49;
660 pub const ENOTSOCK: ::c_int = 50;
661 pub const ENETUNREACH: ::c_int = 51;
662 pub const ENETRESET: ::c_int = 52;
663 pub const ECONNABORTED: ::c_int = 53;
664 pub const ECONNRESET: ::c_int = 54;
665 pub const ENOBUFS: ::c_int = 55;
666 pub const EISCONN: ::c_int = 56;
667 pub const ENOTCONN: ::c_int = 57;
668 pub const ESHUTDOWN: ::c_int = 58;
669 pub const ETOOMANYREFS: ::c_int = 59;
670 pub const ETIMEDOUT: ::c_int = 60;
671 pub const ECONNREFUSED: ::c_int = 61;
672 pub const ENETDOWN: ::c_int = 62;
673 pub const ETXTBSY: ::c_int = 63;
674 pub const ELOOP: ::c_int = 64;
675 pub const EHOSTUNREACH: ::c_int = 65;
676 pub const EINPROGRESS: ::c_int = 68;
677 pub const EALREADY: ::c_int = 69;
678 pub const EWOULDBLOCK: ::c_int = 70;
679 pub const ENOSYS: ::c_int = 71;
680 pub const EDQUOT: ::c_int = 83;
681 pub const ESTALE: ::c_int = 88;
682 
683 // NFS errnos: Refer to pkgs_v2/storage/fs/nfs/h/nfs/nfsCommon.h
684 const M_nfsStat: ::c_int = 48 << 16;
685 enum nfsstat {
686     NFSERR_REMOTE = 71,
687     NFSERR_WFLUSH = 99,
688     NFSERR_BADHANDLE = 10001,
689     NFSERR_NOT_SYNC = 10002,
690     NFSERR_BAD_COOKIE = 10003,
691     NFSERR_TOOSMALL = 10005,
692     NFSERR_BADTYPE = 10007,
693     NFSERR_JUKEBOX = 10008,
694 }
695 
696 pub const S_nfsLib_NFS_OK: ::c_int = OK;
697 pub const S_nfsLib_NFSERR_PERM: ::c_int = EPERM;
698 pub const S_nfsLib_NFSERR_NOENT: ::c_int = ENOENT;
699 pub const S_nfsLib_NFSERR_IO: ::c_int = EIO;
700 pub const S_nfsLib_NFSERR_NXIO: ::c_int = ENXIO;
701 pub const S_nfsLib_NFSERR_ACCESS: ::c_int = EACCES;
702 pub const S_nfsLib_NFSERR_EXIST: ::c_int = EEXIST;
703 pub const S_nfsLib_NFSERR_ENODEV: ::c_int = ENODEV;
704 pub const S_nfsLib_NFSERR_NOTDIR: ::c_int = ENOTDIR;
705 pub const S_nfsLib_NFSERR_ISDIR: ::c_int = EISDIR;
706 pub const S_nfsLib_NFSERR_INVAL: ::c_int = EINVAL;
707 pub const S_nfsLib_NFSERR_FBIG: ::c_int = EFBIG;
708 pub const S_nfsLib_NFSERR_NOSPC: ::c_int = ENOSPC;
709 pub const S_nfsLib_NFSERR_ROFS: ::c_int = EROFS;
710 pub const S_nfsLib_NFSERR_NAMETOOLONG: ::c_int = ENAMETOOLONG;
711 pub const S_nfsLib_NFSERR_NOTEMPTY: ::c_int = ENOTEMPTY;
712 pub const S_nfsLib_NFSERR_DQUOT: ::c_int = EDQUOT;
713 pub const S_nfsLib_NFSERR_STALE: ::c_int = ESTALE;
714 pub const S_nfsLib_NFSERR_WFLUSH: ::c_int = M_nfsStat | nfsstat::NFSERR_WFLUSH as ::c_int;
715 pub const S_nfsLib_NFSERR_REMOTE: ::c_int = M_nfsStat | nfsstat::NFSERR_REMOTE as ::c_int;
716 pub const S_nfsLib_NFSERR_BADHANDLE: ::c_int = M_nfsStat | nfsstat::NFSERR_BADHANDLE as ::c_int;
717 pub const S_nfsLib_NFSERR_NOT_SYNC: ::c_int = M_nfsStat | nfsstat::NFSERR_NOT_SYNC as ::c_int;
718 pub const S_nfsLib_NFSERR_BAD_COOKIE: ::c_int = M_nfsStat | nfsstat::NFSERR_BAD_COOKIE as ::c_int;
719 pub const S_nfsLib_NFSERR_NOTSUPP: ::c_int = EOPNOTSUPP;
720 pub const S_nfsLib_NFSERR_TOOSMALL: ::c_int = M_nfsStat | nfsstat::NFSERR_TOOSMALL as ::c_int;
721 pub const S_nfsLib_NFSERR_SERVERFAULT: ::c_int = EIO;
722 pub const S_nfsLib_NFSERR_BADTYPE: ::c_int = M_nfsStat | nfsstat::NFSERR_BADTYPE as ::c_int;
723 pub const S_nfsLib_NFSERR_JUKEBOX: ::c_int = M_nfsStat | nfsstat::NFSERR_JUKEBOX as ::c_int;
724 
725 // internal offset values for below constants
726 const taskErrorBase: ::c_int = 0x00030000;
727 const semErrorBase: ::c_int = 0x00160000;
728 const objErrorBase: ::c_int = 0x003d0000;
729 
730 // taskLibCommon.h
731 pub const S_taskLib_NAME_NOT_FOUND: ::c_int = taskErrorBase + 0x0065;
732 pub const S_taskLib_TASK_HOOK_TABLE_FULL: ::c_int = taskErrorBase + 0x0066;
733 pub const S_taskLib_TASK_HOOK_NOT_FOUND: ::c_int = taskErrorBase + 0x0067;
734 pub const S_taskLib_ILLEGAL_PRIORITY: ::c_int = taskErrorBase + 0x0068;
735 
736 // FIXME: could also be useful for TASK_DESC type
737 pub const VX_TASK_NAME_LENGTH: ::c_int = 31;
738 
739 // semLibCommon.h
740 pub const S_semLib_INVALID_STATE: ::c_int = semErrorBase + 0x0065;
741 pub const S_semLib_INVALID_OPTION: ::c_int = semErrorBase + 0x0066;
742 pub const S_semLib_INVALID_QUEUE_TYPE: ::c_int = semErrorBase + 0x0067;
743 pub const S_semLib_INVALID_OPERATION: ::c_int = semErrorBase + 0x0068;
744 
745 // objLibCommon.h
746 pub const S_objLib_OBJ_ID_ERROR: ::c_int = objErrorBase + 0x0001;
747 pub const S_objLib_OBJ_UNAVAILABLE: ::c_int = objErrorBase + 0x0002;
748 pub const S_objLib_OBJ_DELETED: ::c_int = objErrorBase + 0x0003;
749 pub const S_objLib_OBJ_TIMEOUT: ::c_int = objErrorBase + 0x0004;
750 pub const S_objLib_OBJ_NO_METHOD: ::c_int = objErrorBase + 0x0005;
751 
752 // in.h
753 pub const IPPROTO_IP: ::c_int = 0;
754 pub const IPPROTO_IPV6: ::c_int = 41;
755 
756 pub const IP_TTL: ::c_int = 4;
757 pub const IP_MULTICAST_IF: ::c_int = 9;
758 pub const IP_MULTICAST_TTL: ::c_int = 10;
759 pub const IP_MULTICAST_LOOP: ::c_int = 11;
760 pub const IP_ADD_MEMBERSHIP: ::c_int = 12;
761 pub const IP_DROP_MEMBERSHIP: ::c_int = 13;
762 
763 // in6.h
764 pub const IPV6_V6ONLY: ::c_int = 1;
765 pub const IPV6_UNICAST_HOPS: ::c_int = 4;
766 pub const IPV6_MULTICAST_IF: ::c_int = 9;
767 pub const IPV6_MULTICAST_HOPS: ::c_int = 10;
768 pub const IPV6_MULTICAST_LOOP: ::c_int = 11;
769 pub const IPV6_ADD_MEMBERSHIP: ::c_int = 12;
770 pub const IPV6_DROP_MEMBERSHIP: ::c_int = 13;
771 
772 // STAT Stuff
773 pub const S_IFMT: ::c_int = 0xf000;
774 pub const S_IFIFO: ::c_int = 0x1000;
775 pub const S_IFCHR: ::c_int = 0x2000;
776 pub const S_IFDIR: ::c_int = 0x4000;
777 pub const S_IFBLK: ::c_int = 0x6000;
778 pub const S_IFREG: ::c_int = 0x8000;
779 pub const S_IFLNK: ::c_int = 0xa000;
780 pub const S_IFSHM: ::c_int = 0xb000;
781 pub const S_IFSOCK: ::c_int = 0xc000;
782 pub const S_ISUID: ::c_int = 0x0800;
783 pub const S_ISGID: ::c_int = 0x0400;
784 pub const S_ISTXT: ::c_int = 0x0200;
785 pub const S_ISVTX: ::c_int = 0o1000;
786 pub const S_IRUSR: ::c_int = 0x0100;
787 pub const S_IWUSR: ::c_int = 0x0080;
788 pub const S_IXUSR: ::c_int = 0x0040;
789 pub const S_IRWXU: ::c_int = 0x01c0;
790 pub const S_IRGRP: ::c_int = 0x0020;
791 pub const S_IWGRP: ::c_int = 0x0010;
792 pub const S_IXGRP: ::c_int = 0x0008;
793 pub const S_IRWXG: ::c_int = 0x0038;
794 pub const S_IROTH: ::c_int = 0x0004;
795 pub const S_IWOTH: ::c_int = 0x0002;
796 pub const S_IXOTH: ::c_int = 0x0001;
797 pub const S_IRWXO: ::c_int = 0x0007;
798 
799 // socket.h
800 pub const SOL_SOCKET: ::c_int = 0xffff;
801 pub const SOMAXCONN: ::c_int = 128;
802 
803 pub const SO_DEBUG: ::c_int = 0x0001;
804 pub const SO_REUSEADDR: ::c_int = 0x0004;
805 pub const SO_KEEPALIVE: ::c_int = 0x0008;
806 pub const SO_DONTROUTE: ::c_int = 0x0010;
807 pub const SO_RCVLOWAT: ::c_int = 0x0012;
808 pub const SO_SNDLOWAT: ::c_int = 0x0013;
809 pub const SO_SNDTIMEO: ::c_int = 0x1005;
810 pub const SO_ACCEPTCONN: ::c_int = 0x001e;
811 pub const SO_BROADCAST: ::c_int = 0x0020;
812 pub const SO_USELOOPBACK: ::c_int = 0x0040;
813 pub const SO_LINGER: ::c_int = 0x0080;
814 pub const SO_REUSEPORT: ::c_int = 0x0200;
815 
816 pub const SO_VLAN: ::c_int = 0x8000;
817 
818 pub const SO_SNDBUF: ::c_int = 0x1001;
819 pub const SO_RCVBUF: ::c_int = 0x1002;
820 pub const SO_RCVTIMEO: ::c_int = 0x1006;
821 pub const SO_ERROR: ::c_int = 0x1007;
822 pub const SO_TYPE: ::c_int = 0x1008;
823 pub const SO_BINDTODEVICE: ::c_int = 0x1010;
824 pub const SO_OOBINLINE: ::c_int = 0x1011;
825 pub const SO_CONNTIMEO: ::c_int = 0x100a;
826 
827 pub const SOCK_STREAM: ::c_int = 1;
828 pub const SOCK_DGRAM: ::c_int = 2;
829 pub const SOCK_RAW: ::c_int = 3;
830 pub const SOCK_RDM: ::c_int = 4;
831 pub const SOCK_SEQPACKET: ::c_int = 5;
832 pub const SOCK_PACKET: ::c_int = 10;
833 
834 pub const _SS_MAXSIZE: usize = 128;
835 pub const _SS_ALIGNSIZE: usize = size_of::<u32>();
836 pub const _SS_PAD1SIZE: usize = _SS_ALIGNSIZE - size_of::<::c_uchar>() - size_of::<::sa_family_t>();
837 pub const _SS_PAD2SIZE: usize = _SS_MAXSIZE
838     - size_of::<::c_uchar>()
839     - size_of::<::sa_family_t>()
840     - _SS_PAD1SIZE
841     - _SS_ALIGNSIZE;
842 
843 pub const MSG_OOB: ::c_int = 0x0001;
844 pub const MSG_PEEK: ::c_int = 0x0002;
845 pub const MSG_DONTROUTE: ::c_int = 0x0004;
846 pub const MSG_EOR: ::c_int = 0x0008;
847 pub const MSG_TRUNC: ::c_int = 0x0010;
848 pub const MSG_CTRUNC: ::c_int = 0x0020;
849 pub const MSG_WAITALL: ::c_int = 0x0040;
850 pub const MSG_DONTWAIT: ::c_int = 0x0080;
851 pub const MSG_EOF: ::c_int = 0x0100;
852 pub const MSG_EXP: ::c_int = 0x0200;
853 pub const MSG_MBUF: ::c_int = 0x0400;
854 pub const MSG_NOTIFICATION: ::c_int = 0x0800;
855 pub const MSG_COMPAT: ::c_int = 0x8000;
856 
857 pub const AF_UNSPEC: ::c_int = 0;
858 pub const AF_LOCAL: ::c_int = 1;
859 pub const AF_UNIX: ::c_int = AF_LOCAL;
860 pub const AF_INET: ::c_int = 2;
861 pub const AF_NETLINK: ::c_int = 16;
862 pub const AF_ROUTE: ::c_int = 17;
863 pub const AF_LINK: ::c_int = 18;
864 pub const AF_PACKET: ::c_int = 19;
865 pub const pseudo_AF_KEY: ::c_int = 27;
866 pub const AF_KEY: ::c_int = pseudo_AF_KEY;
867 pub const AF_INET6: ::c_int = 28;
868 pub const AF_SOCKDEV: ::c_int = 31;
869 pub const AF_TIPC: ::c_int = 33;
870 pub const AF_MIPC: ::c_int = 34;
871 pub const AF_MIPC_SAFE: ::c_int = 35;
872 pub const AF_MAX: ::c_int = 37;
873 
874 pub const SHUT_RD: ::c_int = 0;
875 pub const SHUT_WR: ::c_int = 1;
876 pub const SHUT_RDWR: ::c_int = 2;
877 
878 pub const IPPROTO_TCP: ::c_int = 6;
879 pub const TCP_NODELAY: ::c_int = 1;
880 pub const TCP_MAXSEG: ::c_int = 2;
881 pub const TCP_NOPUSH: ::c_int = 3;
882 pub const TCP_KEEPIDLE: ::c_int = 4;
883 pub const TCP_KEEPINTVL: ::c_int = 5;
884 pub const TCP_KEEPCNT: ::c_int = 6;
885 
886 // ioLib.h
887 pub const FIONREAD: ::c_int = 0x40040001;
888 pub const FIOFLUSH: ::c_int = 2;
889 pub const FIOOPTIONS: ::c_int = 3;
890 pub const FIOBAUDRATE: ::c_int = 4;
891 pub const FIODISKFORMAT: ::c_int = 5;
892 pub const FIODISKINIT: ::c_int = 6;
893 pub const FIOSEEK: ::c_int = 7;
894 pub const FIOWHERE: ::c_int = 8;
895 pub const FIODIRENTRY: ::c_int = 9;
896 pub const FIORENAME: ::c_int = 10;
897 pub const FIOREADYCHANGE: ::c_int = 11;
898 pub const FIODISKCHANGE: ::c_int = 13;
899 pub const FIOCANCEL: ::c_int = 14;
900 pub const FIOSQUEEZE: ::c_int = 15;
901 pub const FIOGETNAME: ::c_int = 18;
902 pub const FIONBIO: ::c_int = 0x90040010;
903 
904 // limits.h
905 pub const PATH_MAX: ::c_int = _PARM_PATH_MAX;
906 pub const _POSIX_PATH_MAX: ::c_int = 256;
907 
908 // Some poll stuff
909 pub const POLLIN: ::c_short = 0x0001;
910 pub const POLLPRI: ::c_short = 0x0002;
911 pub const POLLOUT: ::c_short = 0x0004;
912 pub const POLLRDNORM: ::c_short = 0x0040;
913 pub const POLLWRNORM: ::c_short = POLLOUT;
914 pub const POLLRDBAND: ::c_short = 0x0080;
915 pub const POLLWRBAND: ::c_short = 0x0100;
916 pub const POLLERR: ::c_short = 0x0008;
917 pub const POLLHUP: ::c_short = 0x0010;
918 pub const POLLNVAL: ::c_short = 0x0020;
919 
920 // fnctlcom.h
921 pub const FD_CLOEXEC: ::c_int = 1;
922 pub const F_DUPFD: ::c_int = 0;
923 pub const F_GETFD: ::c_int = 1;
924 pub const F_SETFD: ::c_int = 2;
925 pub const F_GETFL: ::c_int = 3;
926 pub const F_SETFL: ::c_int = 4;
927 pub const F_GETOWN: ::c_int = 5;
928 pub const F_SETOWN: ::c_int = 6;
929 pub const F_GETLK: ::c_int = 7;
930 pub const F_SETLK: ::c_int = 8;
931 pub const F_SETLKW: ::c_int = 9;
932 pub const F_DUPFD_CLOEXEC: ::c_int = 14;
933 
934 // signal.h
935 pub const SIG_DFL: sighandler_t = 0 as sighandler_t;
936 pub const SIG_IGN: sighandler_t = 1 as sighandler_t;
937 pub const SIG_ERR: sighandler_t = -1 as isize as sighandler_t;
938 
939 pub const SIGHUP: ::c_int = 1;
940 pub const SIGINT: ::c_int = 2;
941 pub const SIGQUIT: ::c_int = 3;
942 pub const SIGILL: ::c_int = 4;
943 pub const SIGTRAP: ::c_int = 5;
944 pub const SIGABRT: ::c_int = 6;
945 pub const SIGEMT: ::c_int = 7;
946 pub const SIGFPE: ::c_int = 8;
947 pub const SIGKILL: ::c_int = 9;
948 pub const SIGBUS: ::c_int = 10;
949 pub const SIGSEGV: ::c_int = 11;
950 pub const SIGFMT: ::c_int = 12;
951 pub const SIGPIPE: ::c_int = 13;
952 pub const SIGALRM: ::c_int = 14;
953 pub const SIGTERM: ::c_int = 15;
954 pub const SIGCNCL: ::c_int = 16;
955 pub const SIGSTOP: ::c_int = 17;
956 pub const SIGTSTP: ::c_int = 18;
957 pub const SIGCONT: ::c_int = 19;
958 pub const SIGCHLD: ::c_int = 20;
959 pub const SIGTTIN: ::c_int = 21;
960 pub const SIGTTOU: ::c_int = 22;
961 
962 pub const SIG_BLOCK: ::c_int = 1;
963 pub const SIG_UNBLOCK: ::c_int = 2;
964 pub const SIG_SETMASK: ::c_int = 3;
965 
966 pub const SI_SYNC: ::c_int = 0;
967 pub const SI_USER: ::c_int = -1;
968 pub const SI_QUEUE: ::c_int = -2;
969 pub const SI_TIMER: ::c_int = -3;
970 pub const SI_ASYNCIO: ::c_int = -4;
971 pub const SI_MESGQ: ::c_int = -5;
972 pub const SI_CHILD: ::c_int = -6;
973 pub const SI_KILL: ::c_int = SI_USER;
974 
975 // vxParams.h definitions
976 pub const _PARM_NAME_MAX: ::c_int = 255;
977 pub const _PARM_PATH_MAX: ::c_int = 1024;
978 
979 // WAIT STUFF
980 pub const WNOHANG: ::c_int = 0x01;
981 pub const WUNTRACED: ::c_int = 0x02;
982 
983 const PTHREAD_MUTEXATTR_INITIALIZER: pthread_mutexattr_t = pthread_mutexattr_t {
984     mutexAttrStatus: PTHREAD_INITIALIZED_OBJ,
985     mutexAttrProtocol: PTHREAD_PRIO_NONE,
986     mutexAttrPrioceiling: 0,
987     mutexAttrType: PTHREAD_MUTEX_DEFAULT,
988     mutexAttrPshared: 1,
989 };
990 pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
991     mutexSemId: null_mut(),
992     mutexValid: PTHREAD_VALID_OBJ,
993     mutexInitted: PTHREAD_UNUSED_YET_OBJ,
994     mutexCondRefCount: 0,
995     mutexSavPriority: -1,
996     mutexAttr: PTHREAD_MUTEXATTR_INITIALIZER,
997     mutexSemName: [0; _PTHREAD_SHARED_SEM_NAME_MAX],
998 };
999 
1000 const PTHREAD_CONDATTR_INITIALIZER: pthread_condattr_t = pthread_condattr_t {
1001     condAttrStatus: 0xf70990ef,
1002     condAttrPshared: 1,
1003     condAttrClockId: CLOCK_REALTIME,
1004 };
1005 pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t {
1006     condSemId: null_mut(),
1007     condValid: PTHREAD_VALID_OBJ,
1008     condInitted: PTHREAD_UNUSED_YET_OBJ,
1009     condRefCount: 0,
1010     condMutex: null_mut(),
1011     condAttr: PTHREAD_CONDATTR_INITIALIZER,
1012     condSemName: [0; _PTHREAD_SHARED_SEM_NAME_MAX],
1013 };
1014 
1015 const PTHREAD_RWLOCKATTR_INITIALIZER: pthread_rwlockattr_t = pthread_rwlockattr_t {
1016     rwlockAttrStatus: PTHREAD_INITIALIZED_OBJ,
1017     rwlockAttrPshared: 1,
1018     rwlockAttrMaxReaders: 0,
1019     rwlockAttrConformOpt: 1,
1020 };
1021 pub const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = pthread_rwlock_t {
1022     rwlockSemId: null_mut(),
1023     rwlockReadersRefCount: 0,
1024     rwlockValid: PTHREAD_VALID_OBJ,
1025     rwlockInitted: PTHREAD_UNUSED_YET_OBJ,
1026     rwlockAttr: PTHREAD_RWLOCKATTR_INITIALIZER,
1027     rwlockSemName: [0; _PTHREAD_SHARED_SEM_NAME_MAX],
1028 };
1029 
1030 pub const SEEK_SET: ::c_int = 0;
1031 pub const SEEK_CUR: ::c_int = 1;
1032 pub const SEEK_END: ::c_int = 2;
1033 
1034 // rtpLibCommon.h
1035 pub const VX_RTP_NAME_LENGTH: ::c_int = 255;
1036 pub const RTP_ID_ERROR: ::RTP_ID = -1;
1037 
1038 // h/public/unistd.h
1039 pub const _SC_GETPW_R_SIZE_MAX: ::c_int = 21; // Via unistd.h
1040 pub const _SC_PAGESIZE: ::c_int = 39;
1041 pub const O_ACCMODE: ::c_int = 3;
1042 pub const O_CLOEXEC: ::c_int = 0x100000; // fcntlcom
1043 pub const O_EXCL: ::c_int = 0x0800;
1044 pub const O_CREAT: ::c_int = 0x0200;
1045 pub const O_TRUNC: ::c_int = 0x0400;
1046 pub const O_APPEND: ::c_int = 0x0008;
1047 pub const O_RDWR: ::c_int = 0x0002;
1048 pub const O_WRONLY: ::c_int = 0x0001;
1049 pub const O_RDONLY: ::c_int = 0;
1050 pub const O_NONBLOCK: ::c_int = 0x4000;
1051 
1052 // mman.h
1053 pub const PROT_NONE: ::c_int = 0x0000;
1054 pub const PROT_READ: ::c_int = 0x0001;
1055 pub const PROT_WRITE: ::c_int = 0x0002;
1056 pub const PROT_EXEC: ::c_int = 0x0004;
1057 
1058 pub const MAP_SHARED: ::c_int = 0x0001;
1059 pub const MAP_PRIVATE: ::c_int = 0x0002;
1060 pub const MAP_ANON: ::c_int = 0x0004;
1061 pub const MAP_ANONYMOUS: ::c_int = MAP_ANON;
1062 pub const MAP_FIXED: ::c_int = 0x0010;
1063 pub const MAP_CONTIG: ::c_int = 0x0020;
1064 
1065 pub const MAP_FAILED: *mut ::c_void = !0 as *mut ::c_void;
1066 
1067 #[cfg_attr(feature = "extra_traits", derive(Debug))]
1068 pub enum FILE {}
1069 impl ::Copy for FILE {}
1070 impl ::Clone for FILE {
1071     fn clone(&self) -> FILE {
1072         *self
1073     }
1074 }
1075 #[cfg_attr(feature = "extra_traits", derive(Debug))]
1076 pub enum fpos_t {} // FIXME: fill this out with a struct
1077 impl ::Copy for fpos_t {}
1078 impl ::Clone for fpos_t {
1079     fn clone(&self) -> fpos_t {
1080         *self
1081     }
1082 }
1083 
1084 f! {
1085     pub {const} fn CMSG_ALIGN(len: usize) -> usize {
1086         len + ::mem::size_of::<usize>() - 1 & !(::mem::size_of::<usize>() - 1)
1087     }
1088 
1089     pub fn CMSG_NXTHDR(mhdr: *const msghdr,
1090                        cmsg: *const cmsghdr) -> *mut cmsghdr {
1091         let next = cmsg as usize + CMSG_ALIGN((*cmsg).cmsg_len as usize)
1092             + CMSG_ALIGN(::mem::size_of::<::cmsghdr>());
1093         let max = (*mhdr).msg_control as usize
1094             + (*mhdr).msg_controllen as usize;
1095         if next <= max {
1096             (cmsg as usize + CMSG_ALIGN((*cmsg).cmsg_len as usize))
1097                 as *mut ::cmsghdr
1098         } else {
1099             0 as *mut ::cmsghdr
1100         }
1101     }
1102 
1103     pub fn CMSG_FIRSTHDR(mhdr: *const msghdr) -> *mut cmsghdr {
1104         if (*mhdr).msg_controllen as usize > 0  {
1105             (*mhdr).msg_control as *mut cmsghdr
1106         } else {
1107             0 as *mut cmsghdr
1108         }
1109     }
1110 
1111     pub fn CMSG_DATA(cmsg: *const cmsghdr) -> *mut ::c_uchar {
1112         (cmsg as *mut ::c_uchar)
1113             .offset(CMSG_ALIGN(::mem::size_of::<::cmsghdr>()) as isize)
1114     }
1115 
1116     pub {const} fn CMSG_SPACE(length: ::c_uint) -> ::c_uint {
1117         (CMSG_ALIGN(length as usize) + CMSG_ALIGN(::mem::size_of::<cmsghdr>()))
1118             as ::c_uint
1119     }
1120 
1121     pub {const} fn CMSG_LEN(length: ::c_uint) -> ::c_uint {
1122         CMSG_ALIGN(::mem::size_of::<cmsghdr>()) as ::c_uint + length
1123     }
1124 }
1125 
1126 extern "C" {
1127     pub fn isalnum(c: c_int) -> c_int;
1128     pub fn isalpha(c: c_int) -> c_int;
1129     pub fn iscntrl(c: c_int) -> c_int;
1130     pub fn isdigit(c: c_int) -> c_int;
1131     pub fn isgraph(c: c_int) -> c_int;
1132     pub fn islower(c: c_int) -> c_int;
1133     pub fn isprint(c: c_int) -> c_int;
1134     pub fn ispunct(c: c_int) -> c_int;
1135     pub fn isspace(c: c_int) -> c_int;
1136     pub fn isupper(c: c_int) -> c_int;
1137     pub fn isxdigit(c: c_int) -> c_int;
1138     pub fn isblank(c: c_int) -> c_int;
1139     pub fn tolower(c: c_int) -> c_int;
1140     pub fn toupper(c: c_int) -> c_int;
1141     pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE;
1142     pub fn freopen(filename: *const c_char, mode: *const c_char, file: *mut FILE) -> *mut FILE;
1143     pub fn fflush(file: *mut FILE) -> c_int;
1144     pub fn fclose(file: *mut FILE) -> c_int;
1145     pub fn remove(filename: *const c_char) -> c_int;
1146     pub fn rename(oldname: *const c_char, newname: *const c_char) -> c_int;
1147     pub fn tmpfile() -> *mut FILE;
1148     pub fn setvbuf(stream: *mut FILE, buffer: *mut c_char, mode: c_int, size: size_t) -> c_int;
1149     pub fn setbuf(stream: *mut FILE, buf: *mut c_char);
1150     pub fn getchar() -> c_int;
1151     pub fn putchar(c: c_int) -> c_int;
1152     pub fn fgetc(stream: *mut FILE) -> c_int;
1153     pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_char;
1154     pub fn fputc(c: c_int, stream: *mut FILE) -> c_int;
1155     pub fn fputs(s: *const c_char, stream: *mut FILE) -> c_int;
1156     pub fn puts(s: *const c_char) -> c_int;
1157     pub fn ungetc(c: c_int, stream: *mut FILE) -> c_int;
1158     pub fn fread(ptr: *mut c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t;
1159     pub fn fwrite(ptr: *const c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t;
1160     pub fn fseek(stream: *mut FILE, offset: c_long, whence: c_int) -> c_int;
1161     pub fn ftell(stream: *mut FILE) -> c_long;
1162     pub fn rewind(stream: *mut FILE);
1163     pub fn fgetpos(stream: *mut FILE, ptr: *mut fpos_t) -> c_int;
1164     pub fn fsetpos(stream: *mut FILE, ptr: *const fpos_t) -> c_int;
1165     pub fn feof(stream: *mut FILE) -> c_int;
1166     pub fn ferror(stream: *mut FILE) -> c_int;
1167     pub fn perror(s: *const c_char);
1168     pub fn atof(s: *const c_char) -> c_double;
1169     pub fn atoi(s: *const c_char) -> c_int;
1170     pub fn atol(s: *const c_char) -> c_long;
1171     pub fn atoll(s: *const c_char) -> c_longlong;
1172     pub fn strtod(s: *const c_char, endp: *mut *mut c_char) -> c_double;
1173     pub fn strtof(s: *const c_char, endp: *mut *mut c_char) -> c_float;
1174     pub fn strtol(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_long;
1175     pub fn strtoll(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_longlong;
1176     pub fn strtoul(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulong;
1177     pub fn strtoull(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulonglong;
1178     pub fn calloc(nobj: size_t, size: size_t) -> *mut c_void;
1179     pub fn malloc(size: size_t) -> *mut c_void;
1180     pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void;
1181     pub fn free(p: *mut c_void);
1182     pub fn abort() -> !;
1183     pub fn exit(status: c_int) -> !;
1184     pub fn atexit(cb: extern "C" fn()) -> c_int;
1185     pub fn system(s: *const c_char) -> c_int;
1186     pub fn getenv(s: *const c_char) -> *mut c_char;
1187 
1188     pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
1189     pub fn strncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char;
1190     pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char;
1191     pub fn strncat(s: *mut c_char, ct: *const c_char, n: size_t) -> *mut c_char;
1192     pub fn strcmp(cs: *const c_char, ct: *const c_char) -> c_int;
1193     pub fn strncmp(cs: *const c_char, ct: *const c_char, n: size_t) -> c_int;
1194     pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int;
1195     pub fn strchr(cs: *const c_char, c: c_int) -> *mut c_char;
1196     pub fn strrchr(cs: *const c_char, c: c_int) -> *mut c_char;
1197     pub fn strspn(cs: *const c_char, ct: *const c_char) -> size_t;
1198     pub fn strcspn(cs: *const c_char, ct: *const c_char) -> size_t;
1199     pub fn strdup(cs: *const c_char) -> *mut c_char;
1200     pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char;
1201     pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
1202     pub fn strcasecmp(s1: *const c_char, s2: *const c_char) -> c_int;
1203     pub fn strncasecmp(s1: *const c_char, s2: *const c_char, n: size_t) -> c_int;
1204     pub fn strlen(cs: *const c_char) -> size_t;
1205     pub fn strerror(n: c_int) -> *mut c_char;
1206     pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char;
1207     pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t;
1208     pub fn wcslen(buf: *const wchar_t) -> size_t;
1209     pub fn wcstombs(dest: *mut c_char, src: *const wchar_t, n: size_t) -> ::size_t;
1210 
1211     pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void;
1212     pub fn wmemchr(cx: *const wchar_t, c: wchar_t, n: size_t) -> *mut wchar_t;
1213     pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int;
1214     pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
1215     pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
1216     pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void;
1217 }
1218 
1219 extern "C" {
1220     pub fn fprintf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
1221     pub fn printf(format: *const ::c_char, ...) -> ::c_int;
1222     pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int;
1223     pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int;
1224     pub fn fscanf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
1225     pub fn scanf(format: *const ::c_char, ...) -> ::c_int;
1226     pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int;
1227     pub fn getchar_unlocked() -> ::c_int;
1228     pub fn putchar_unlocked(c: ::c_int) -> ::c_int;
1229     pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int;
1230     pub fn fdopen(fd: ::c_int, mode: *const c_char) -> *mut ::FILE;
1231     pub fn fileno(stream: *mut ::FILE) -> ::c_int;
1232     pub fn creat(path: *const c_char, mode: mode_t) -> ::c_int;
1233     pub fn rewinddir(dirp: *mut ::DIR);
1234     pub fn fchown(fd: ::c_int, owner: ::uid_t, group: ::gid_t) -> ::c_int;
1235     pub fn access(path: *const c_char, amode: ::c_int) -> ::c_int;
1236     pub fn alarm(seconds: ::c_uint) -> ::c_uint;
1237     pub fn fchdir(dirfd: ::c_int) -> ::c_int;
1238     pub fn chown(path: *const c_char, uid: uid_t, gid: gid_t) -> ::c_int;
1239     pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long;
1240     pub fn getegid() -> gid_t;
1241     pub fn geteuid() -> uid_t;
1242     pub fn getgroups(ngroups_max: ::c_int, groups: *mut gid_t) -> ::c_int;
1243     pub fn getlogin() -> *mut c_char;
1244     pub fn getopt(argc: ::c_int, argv: *const *mut c_char, optstr: *const c_char) -> ::c_int;
1245     pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long;
1246     pub fn pause() -> ::c_int;
1247     pub fn seteuid(uid: uid_t) -> ::c_int;
1248     pub fn setegid(gid: gid_t) -> ::c_int;
1249     pub fn sleep(secs: ::c_uint) -> ::c_uint;
1250     pub fn ttyname(fd: ::c_int) -> *mut c_char;
1251     pub fn wait(status: *mut ::c_int) -> pid_t;
1252     pub fn umask(mask: mode_t) -> mode_t;
1253     pub fn mlock(addr: *const ::c_void, len: ::size_t) -> ::c_int;
1254     pub fn mlockall(flags: ::c_int) -> ::c_int;
1255     pub fn munlockall() -> ::c_int;
1256 
1257     pub fn mmap(
1258         addr: *mut ::c_void,
1259         len: ::size_t,
1260         prot: ::c_int,
1261         flags: ::c_int,
1262         fd: ::c_int,
1263         offset: off_t,
1264     ) -> *mut ::c_void;
1265     pub fn munmap(addr: *mut ::c_void, len: ::size_t) -> ::c_int;
1266     pub fn truncate(path: *const c_char, length: off_t) -> ::c_int;
1267     pub fn shm_open(name: *const ::c_char, oflag: ::c_int, mode: ::mode_t) -> ::c_int;
1268     pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
1269 
1270     pub fn gettimeofday(tp: *mut ::timeval, tz: *mut ::c_void) -> ::c_int;
1271     pub fn pthread_exit(value: *mut ::c_void) -> !;
1272     pub fn pthread_attr_setdetachstate(attr: *mut ::pthread_attr_t, state: ::c_int) -> ::c_int;
1273 
1274     pub fn strerror_r(errnum: ::c_int, buf: *mut c_char, buflen: ::size_t) -> ::c_int;
1275 
1276     pub fn sigaddset(set: *mut sigset_t, signum: ::c_int) -> ::c_int;
1277 
1278     pub fn sigaction(signum: ::c_int, act: *const sigaction, oldact: *mut sigaction) -> ::c_int;
1279 
1280     pub fn utimes(filename: *const ::c_char, times: *const ::timeval) -> ::c_int;
1281 
1282     #[link_name = "_rtld_dlopen"]
1283     pub fn dlopen(filename: *const ::c_char, flag: ::c_int) -> *mut ::c_void;
1284 
1285     #[link_name = "_rtld_dlerror"]
1286     pub fn dlerror() -> *mut ::c_char;
1287 
1288     #[link_name = "_rtld_dlsym"]
1289     pub fn dlsym(handle: *mut ::c_void, symbol: *const ::c_char) -> *mut ::c_void;
1290 
1291     #[link_name = "_rtld_dlclose"]
1292     pub fn dlclose(handle: *mut ::c_void) -> ::c_int;
1293 
1294     #[link_name = "_rtld_dladdr"]
1295     pub fn dladdr(addr: *mut ::c_void, info: *mut Dl_info) -> ::c_int;
1296 
1297     // time.h
1298     pub fn gmtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm;
1299     pub fn localtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm;
1300     pub fn mktime(tm: *mut tm) -> time_t;
1301     pub fn time(time: *mut time_t) -> time_t;
1302     pub fn gmtime(time_p: *const time_t) -> *mut tm;
1303     pub fn localtime(time_p: *const time_t) -> *mut tm;
1304     pub fn timegm(tm: *mut tm) -> time_t;
1305     pub fn difftime(time1: time_t, time0: time_t) -> ::c_double;
1306     pub fn gethostname(name: *mut ::c_char, len: ::size_t) -> ::c_int;
1307     pub fn usleep(secs: ::useconds_t) -> ::c_int;
1308     pub fn putenv(string: *mut c_char) -> ::c_int;
1309     pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char;
1310 
1311     pub fn sigprocmask(how: ::c_int, set: *const sigset_t, oldset: *mut sigset_t) -> ::c_int;
1312     pub fn sigpending(set: *mut sigset_t) -> ::c_int;
1313 
1314     pub fn mkfifo(path: *const c_char, mode: mode_t) -> ::c_int;
1315 
1316     pub fn fseeko(stream: *mut ::FILE, offset: ::off_t, whence: ::c_int) -> ::c_int;
1317     pub fn ftello(stream: *mut ::FILE) -> ::off_t;
1318     pub fn mkstemp(template: *mut ::c_char) -> ::c_int;
1319 
1320     pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char;
1321 
1322     pub fn openlog(ident: *const ::c_char, logopt: ::c_int, facility: ::c_int);
1323     pub fn closelog();
1324     pub fn setlogmask(maskpri: ::c_int) -> ::c_int;
1325     pub fn syslog(priority: ::c_int, message: *const ::c_char, ...);
1326     pub fn getline(lineptr: *mut *mut c_char, n: *mut size_t, stream: *mut FILE) -> ssize_t;
1327 
1328 }
1329 
1330 extern "C" {
1331     // stdlib.h
1332     pub fn memalign(block_size: ::size_t, size_arg: ::size_t) -> *mut ::c_void;
1333 
1334     // ioLib.h
1335     pub fn getcwd(buf: *mut ::c_char, size: ::size_t) -> *mut ::c_char;
1336 
1337     // ioLib.h
1338     pub fn chdir(attr: *const ::c_char) -> ::c_int;
1339 
1340     // pthread.h
1341     pub fn pthread_mutexattr_init(attr: *mut pthread_mutexattr_t) -> ::c_int;
1342 
1343     // pthread.h
1344     pub fn pthread_mutexattr_destroy(attr: *mut pthread_mutexattr_t) -> ::c_int;
1345 
1346     // pthread.h
1347     pub fn pthread_mutexattr_settype(pAttr: *mut ::pthread_mutexattr_t, pType: ::c_int) -> ::c_int;
1348 
1349     // pthread.h
1350     pub fn pthread_mutex_init(
1351         mutex: *mut pthread_mutex_t,
1352         attr: *const pthread_mutexattr_t,
1353     ) -> ::c_int;
1354 
1355     // pthread.h
1356     pub fn pthread_mutex_destroy(mutex: *mut pthread_mutex_t) -> ::c_int;
1357 
1358     // pthread.h
1359     pub fn pthread_mutex_lock(mutex: *mut pthread_mutex_t) -> ::c_int;
1360 
1361     // pthread.h
1362     pub fn pthread_mutex_trylock(mutex: *mut pthread_mutex_t) -> ::c_int;
1363 
1364     // pthread.h
1365     pub fn pthread_mutex_timedlock(attr: *mut pthread_mutex_t, spec: *const timespec) -> ::c_int;
1366 
1367     // pthread.h
1368     pub fn pthread_mutex_unlock(mutex: *mut pthread_mutex_t) -> ::c_int;
1369 
1370     // pthread.h
1371     pub fn pthread_attr_setname(pAttr: *mut ::pthread_attr_t, name: *mut ::c_char) -> ::c_int;
1372 
1373     // pthread.h
1374     pub fn pthread_attr_setstacksize(attr: *mut ::pthread_attr_t, stacksize: ::size_t) -> ::c_int;
1375 
1376     // pthread.h
1377     pub fn pthread_attr_getstacksize(attr: *const ::pthread_attr_t, size: *mut ::size_t)
1378         -> ::c_int;
1379 
1380     // pthread.h
1381     pub fn pthread_attr_init(attr: *mut ::pthread_attr_t) -> ::c_int;
1382 
1383     // pthread.h
1384     pub fn pthread_create(
1385         pThread: *mut ::pthread_t,
1386         pAttr: *const ::pthread_attr_t,
1387         start_routine: extern "C" fn(*mut ::c_void) -> *mut ::c_void,
1388         value: *mut ::c_void,
1389     ) -> ::c_int;
1390 
1391     // pthread.h
1392     pub fn pthread_attr_destroy(thread: *mut ::pthread_attr_t) -> ::c_int;
1393 
1394     // pthread.h
1395     pub fn pthread_detach(thread: ::pthread_t) -> ::c_int;
1396 
1397     // int pthread_atfork (void (*)(void), void (*)(void), void (*)(void));
1398     pub fn pthread_atfork(
1399         prepare: ::Option<unsafe extern "C" fn()>,
1400         parent: ::Option<unsafe extern "C" fn()>,
1401         child: ::Option<unsafe extern "C" fn()>,
1402     ) -> ::c_int;
1403     // stat.h
1404     pub fn fstat(fildes: ::c_int, buf: *mut stat) -> ::c_int;
1405 
1406     // stat.h
1407     pub fn lstat(path: *const ::c_char, buf: *mut stat) -> ::c_int;
1408 
1409     // unistd.h
1410     pub fn ftruncate(fd: ::c_int, length: off_t) -> ::c_int;
1411 
1412     // dirent.h
1413     pub fn readdir_r(pDir: *mut ::DIR, entry: *mut ::dirent, result: *mut *mut ::dirent)
1414         -> ::c_int;
1415 
1416     // dirent.h
1417     pub fn readdir(pDir: *mut ::DIR) -> *mut ::dirent;
1418 
1419     // fcntl.h or
1420     // ioLib.h
1421     pub fn open(path: *const ::c_char, oflag: ::c_int, ...) -> ::c_int;
1422 
1423     // poll.h
1424     pub fn poll(fds: *mut pollfd, nfds: nfds_t, timeout: ::c_int) -> ::c_int;
1425 
1426     // pthread.h
1427     pub fn pthread_condattr_init(attr: *mut ::pthread_condattr_t) -> ::c_int;
1428 
1429     // pthread.h
1430     pub fn pthread_condattr_destroy(attr: *mut ::pthread_condattr_t) -> ::c_int;
1431 
1432     // pthread.h
1433     pub fn pthread_condattr_getclock(
1434         pAttr: *const ::pthread_condattr_t,
1435         pClockId: *mut ::clockid_t,
1436     ) -> ::c_int;
1437 
1438     // pthread.h
1439     pub fn pthread_condattr_setclock(
1440         pAttr: *mut ::pthread_condattr_t,
1441         clockId: ::clockid_t,
1442     ) -> ::c_int;
1443 
1444     // pthread.h
1445     pub fn pthread_cond_init(
1446         cond: *mut ::pthread_cond_t,
1447         attr: *const ::pthread_condattr_t,
1448     ) -> ::c_int;
1449 
1450     // pthread.h
1451     pub fn pthread_cond_destroy(cond: *mut pthread_cond_t) -> ::c_int;
1452 
1453     // pthread.h
1454     pub fn pthread_cond_signal(cond: *mut ::pthread_cond_t) -> ::c_int;
1455 
1456     // pthread.h
1457     pub fn pthread_cond_broadcast(cond: *mut ::pthread_cond_t) -> ::c_int;
1458 
1459     // pthread.h
1460     pub fn pthread_cond_wait(cond: *mut ::pthread_cond_t, mutex: *mut ::pthread_mutex_t)
1461         -> ::c_int;
1462 
1463     // pthread.h
1464     pub fn pthread_rwlockattr_init(attr: *mut ::pthread_rwlockattr_t) -> ::c_int;
1465 
1466     // pthread.h
1467     pub fn pthread_rwlockattr_destroy(attr: *mut ::pthread_rwlockattr_t) -> ::c_int;
1468 
1469     // pthread.h
1470     pub fn pthread_rwlockattr_setmaxreaders(
1471         attr: *mut ::pthread_rwlockattr_t,
1472         attr2: ::c_uint,
1473     ) -> ::c_int;
1474 
1475     // pthread.h
1476     pub fn pthread_rwlock_init(
1477         attr: *mut ::pthread_rwlock_t,
1478         host: *const ::pthread_rwlockattr_t,
1479     ) -> ::c_int;
1480 
1481     // pthread.h
1482     pub fn pthread_rwlock_destroy(attr: *mut ::pthread_rwlock_t) -> ::c_int;
1483 
1484     // pthread.h
1485     pub fn pthread_rwlock_rdlock(attr: *mut ::pthread_rwlock_t) -> ::c_int;
1486 
1487     // pthread.h
1488     pub fn pthread_rwlock_tryrdlock(attr: *mut ::pthread_rwlock_t) -> ::c_int;
1489 
1490     // pthread.h
1491     pub fn pthread_rwlock_timedrdlock(
1492         attr: *mut ::pthread_rwlock_t,
1493         host: *const ::timespec,
1494     ) -> ::c_int;
1495 
1496     // pthread.h
1497     pub fn pthread_rwlock_wrlock(attr: *mut ::pthread_rwlock_t) -> ::c_int;
1498 
1499     // pthread.h
1500     pub fn pthread_rwlock_trywrlock(attr: *mut ::pthread_rwlock_t) -> ::c_int;
1501 
1502     // pthread.h
1503     pub fn pthread_rwlock_timedwrlock(
1504         attr: *mut ::pthread_rwlock_t,
1505         host: *const ::timespec,
1506     ) -> ::c_int;
1507 
1508     // pthread.h
1509     pub fn pthread_rwlock_unlock(attr: *mut ::pthread_rwlock_t) -> ::c_int;
1510 
1511     // pthread.h
1512     pub fn pthread_key_create(
1513         key: *mut ::pthread_key_t,
1514         dtor: ::Option<unsafe extern "C" fn(*mut ::c_void)>,
1515     ) -> ::c_int;
1516 
1517     // pthread.h
1518     pub fn pthread_key_delete(key: ::pthread_key_t) -> ::c_int;
1519 
1520     // pthread.h
1521     pub fn pthread_setspecific(key: ::pthread_key_t, value: *const ::c_void) -> ::c_int;
1522 
1523     // pthread.h
1524     pub fn pthread_getspecific(key: ::pthread_key_t) -> *mut ::c_void;
1525 
1526     // pthread.h
1527     pub fn pthread_cond_timedwait(
1528         cond: *mut ::pthread_cond_t,
1529         mutex: *mut ::pthread_mutex_t,
1530         abstime: *const ::timespec,
1531     ) -> ::c_int;
1532 
1533     // pthread.h
1534     pub fn pthread_attr_getname(attr: *mut ::pthread_attr_t, name: *mut *mut ::c_char) -> ::c_int;
1535 
1536     // pthread.h
1537     pub fn pthread_join(thread: ::pthread_t, status: *mut *mut ::c_void) -> ::c_int;
1538 
1539     // pthread.h
1540     pub fn pthread_self() -> ::pthread_t;
1541 
1542     // clockLib.h
1543     pub fn clock_gettime(clock_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
1544 
1545     // clockLib.h
1546     pub fn clock_settime(clock_id: ::clockid_t, tp: *const ::timespec) -> ::c_int;
1547 
1548     // clockLib.h
1549     pub fn clock_getres(clock_id: ::clockid_t, res: *mut ::timespec) -> ::c_int;
1550 
1551     // clockLib.h
1552     pub fn clock_nanosleep(
1553         clock_id: ::clockid_t,
1554         flags: ::c_int,
1555         rqtp: *const ::timespec,
1556         rmtp: *mut ::timespec,
1557     ) -> ::c_int;
1558 
1559     // timerLib.h
1560     pub fn nanosleep(rqtp: *const ::timespec, rmtp: *mut ::timespec) -> ::c_int;
1561 
1562     // socket.h
1563     pub fn accept(s: ::c_int, addr: *mut ::sockaddr, addrlen: *mut ::socklen_t) -> ::c_int;
1564 
1565     // socket.h
1566     pub fn bind(fd: ::c_int, addr: *const sockaddr, len: socklen_t) -> ::c_int;
1567 
1568     // socket.h
1569     pub fn connect(s: ::c_int, name: *const ::sockaddr, namelen: ::socklen_t) -> ::c_int;
1570 
1571     // socket.h
1572     pub fn getpeername(s: ::c_int, name: *mut ::sockaddr, namelen: *mut ::socklen_t) -> ::c_int;
1573 
1574     // socket.h
1575     pub fn getsockname(
1576         socket: ::c_int,
1577         address: *mut sockaddr,
1578         address_len: *mut socklen_t,
1579     ) -> ::c_int;
1580 
1581     // socket.h
1582     pub fn getsockopt(
1583         sockfd: ::c_int,
1584         level: ::c_int,
1585         optname: ::c_int,
1586         optval: *mut ::c_void,
1587         optlen: *mut ::socklen_t,
1588     ) -> ::c_int;
1589 
1590     // socket.h
1591     pub fn listen(socket: ::c_int, backlog: ::c_int) -> ::c_int;
1592 
1593     // socket.h
1594     pub fn recv(s: ::c_int, buf: *mut ::c_void, bufLen: ::size_t, flags: ::c_int) -> ::ssize_t;
1595 
1596     // socket.h
1597     pub fn recvfrom(
1598         s: ::c_int,
1599         buf: *mut ::c_void,
1600         bufLen: ::size_t,
1601         flags: ::c_int,
1602         from: *mut ::sockaddr,
1603         pFromLen: *mut ::socklen_t,
1604     ) -> ::ssize_t;
1605 
1606     pub fn recvmsg(socket: ::c_int, mp: *mut ::msghdr, flags: ::c_int) -> ::ssize_t;
1607 
1608     // socket.h
1609     pub fn send(socket: ::c_int, buf: *const ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t;
1610 
1611     pub fn sendmsg(socket: ::c_int, mp: *const ::msghdr, flags: ::c_int) -> ::ssize_t;
1612 
1613     // socket.h
1614     pub fn sendto(
1615         socket: ::c_int,
1616         buf: *const ::c_void,
1617         len: ::size_t,
1618         flags: ::c_int,
1619         addr: *const sockaddr,
1620         addrlen: socklen_t,
1621     ) -> ::ssize_t;
1622 
1623     // socket.h
1624     pub fn setsockopt(
1625         socket: ::c_int,
1626         level: ::c_int,
1627         name: ::c_int,
1628         value: *const ::c_void,
1629         option_len: socklen_t,
1630     ) -> ::c_int;
1631 
1632     // socket.h
1633     pub fn shutdown(s: ::c_int, how: ::c_int) -> ::c_int;
1634 
1635     // socket.h
1636     pub fn socket(domain: ::c_int, _type: ::c_int, protocol: ::c_int) -> ::c_int;
1637 
1638     // icotl.h
1639     pub fn ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int;
1640 
1641     // fcntl.h
1642     pub fn fcntl(fd: ::c_int, cmd: ::c_int, ...) -> ::c_int;
1643 
1644     // ntp_rfc2553.h for kernel
1645     // netdb.h for user
1646     pub fn gai_strerror(errcode: ::c_int) -> *mut ::c_char;
1647 
1648     // ioLib.h or
1649     // unistd.h
1650     pub fn close(fd: ::c_int) -> ::c_int;
1651 
1652     // ioLib.h or
1653     // unistd.h
1654     pub fn read(fd: ::c_int, buf: *mut ::c_void, count: ::size_t) -> ::ssize_t;
1655 
1656     // ioLib.h or
1657     // unistd.h
1658     pub fn write(fd: ::c_int, buf: *const ::c_void, count: ::size_t) -> ::ssize_t;
1659 
1660     // ioLib.h or
1661     // unistd.h
1662     pub fn isatty(fd: ::c_int) -> ::c_int;
1663 
1664     // ioLib.h or
1665     // unistd.h
1666     pub fn dup(src: ::c_int) -> ::c_int;
1667 
1668     // ioLib.h or
1669     // unistd.h
1670     pub fn dup2(src: ::c_int, dst: ::c_int) -> ::c_int;
1671 
1672     // ioLib.h or
1673     // unistd.h
1674     pub fn pipe(fds: *mut ::c_int) -> ::c_int;
1675 
1676     // ioLib.h or
1677     // unistd.h
1678     pub fn unlink(pathname: *const ::c_char) -> ::c_int;
1679 
1680     // unistd.h and
1681     // ioLib.h
1682     pub fn lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t;
1683 
1684     // netdb.h
1685     pub fn getaddrinfo(
1686         node: *const ::c_char,
1687         service: *const ::c_char,
1688         hints: *const addrinfo,
1689         res: *mut *mut addrinfo,
1690     ) -> ::c_int;
1691 
1692     // netdb.h
1693     pub fn freeaddrinfo(res: *mut addrinfo);
1694 
1695     // signal.h
1696     pub fn signal(signum: ::c_int, handler: sighandler_t) -> sighandler_t;
1697 
1698     // unistd.h
1699     pub fn getpid() -> pid_t;
1700 
1701     // unistd.h
1702     pub fn getppid() -> pid_t;
1703 
1704     // wait.h
1705     pub fn waitpid(pid: pid_t, status: *mut ::c_int, optons: ::c_int) -> pid_t;
1706 
1707     // unistd.h
1708     pub fn sysconf(attr: ::c_int) -> ::c_long;
1709 
1710     // stdlib.h
1711     pub fn setenv(
1712         // setenv.c
1713         envVarName: *const ::c_char,
1714         envVarValue: *const ::c_char,
1715         overwrite: ::c_int,
1716     ) -> ::c_int;
1717 
1718     // stdlib.h
1719     pub fn unsetenv(
1720         // setenv.c
1721         envVarName: *const ::c_char,
1722     ) -> ::c_int;
1723 
1724     // stdlib.h
1725     pub fn realpath(fileName: *const ::c_char, resolvedName: *mut ::c_char) -> *mut ::c_char;
1726 
1727     // unistd.h
1728     pub fn link(src: *const ::c_char, dst: *const ::c_char) -> ::c_int;
1729 
1730     // unistd.h
1731     pub fn readlink(path: *const ::c_char, buf: *mut ::c_char, bufsize: ::size_t) -> ::ssize_t;
1732 
1733     // unistd.h
1734     pub fn symlink(path1: *const ::c_char, path2: *const ::c_char) -> ::c_int;
1735 
1736     // dirent.h
1737     pub fn opendir(name: *const ::c_char) -> *mut ::DIR;
1738 
1739     // unistd.h
1740     pub fn rmdir(path: *const ::c_char) -> ::c_int;
1741 
1742     // stat.h
1743     pub fn mkdir(dirName: *const ::c_char, mode: ::mode_t) -> ::c_int;
1744 
1745     // stat.h
1746     pub fn chmod(path: *const ::c_char, mode: ::mode_t) -> ::c_int;
1747 
1748     // stat.h
1749     pub fn fchmod(attr1: ::c_int, attr2: ::mode_t) -> ::c_int;
1750 
1751     // unistd.h
1752     pub fn fsync(fd: ::c_int) -> ::c_int;
1753 
1754     // dirent.h
1755     pub fn closedir(ptr: *mut ::DIR) -> ::c_int;
1756 
1757     // sched.h
1758     pub fn sched_yield() -> ::c_int;
1759 
1760     // errnoLib.h
1761     pub fn errnoSet(err: ::c_int) -> ::c_int;
1762 
1763     // errnoLib.h
1764     pub fn errnoGet() -> ::c_int;
1765 
1766     // unistd.h
1767     pub fn _exit(status: ::c_int) -> !;
1768 
1769     // unistd.h
1770     pub fn setgid(gid: ::gid_t) -> ::c_int;
1771 
1772     // unistd.h
1773     pub fn getgid() -> ::gid_t;
1774 
1775     // unistd.h
1776     pub fn setuid(uid: ::uid_t) -> ::c_int;
1777 
1778     // unistd.h
1779     pub fn getuid() -> ::uid_t;
1780 
1781     // signal.h
1782     pub fn sigemptyset(__set: *mut sigset_t) -> ::c_int;
1783 
1784     // pthread.h for kernel
1785     // signal.h for user
1786     pub fn pthread_sigmask(
1787         __how: ::c_int,
1788         __set: *const sigset_t,
1789         __oset: *mut sigset_t,
1790     ) -> ::c_int;
1791 
1792     // signal.h for user
1793     pub fn kill(__pid: pid_t, __signo: ::c_int) -> ::c_int;
1794 
1795     // signal.h for user
1796     pub fn sigqueue(__pid: pid_t, __signo: ::c_int, __value: ::sigval) -> ::c_int;
1797 
1798     // signal.h for user
1799     pub fn _sigqueue(
1800         rtpId: ::RTP_ID,
1801         signo: ::c_int,
1802         pValue: *const ::sigval,
1803         sigCode: ::c_int,
1804     ) -> ::c_int;
1805 
1806     // signal.h
1807     pub fn taskKill(taskId: ::TASK_ID, signo: ::c_int) -> ::c_int;
1808 
1809     // signal.h
1810     pub fn raise(__signo: ::c_int) -> ::c_int;
1811 
1812     // taskLibCommon.h
1813     pub fn taskIdSelf() -> ::TASK_ID;
1814     pub fn taskDelay(ticks: ::_Vx_ticks_t) -> ::c_int;
1815 
1816     // taskLib.h
1817     pub fn taskNameSet(task_id: ::TASK_ID, task_name: *mut ::c_char) -> ::c_int;
1818     pub fn taskNameGet(task_id: ::TASK_ID, buf_name: *mut ::c_char, bufsize: ::size_t) -> ::c_int;
1819 
1820     // rtpLibCommon.h
1821     pub fn rtpInfoGet(rtpId: ::RTP_ID, rtpStruct: *mut ::RTP_DESC) -> ::c_int;
1822     pub fn rtpSpawn(
1823         pubrtpFileName: *const ::c_char,
1824         argv: *mut *const ::c_char,
1825         envp: *mut *const ::c_char,
1826         priority: ::c_int,
1827         uStackSize: ::size_t,
1828         options: ::c_int,
1829         taskOptions: ::c_int,
1830     ) -> RTP_ID;
1831 
1832     // ioLib.h
1833     pub fn _realpath(fileName: *const ::c_char, resolvedName: *mut ::c_char) -> *mut ::c_char;
1834 
1835     // pathLib.h
1836     pub fn _pathIsAbsolute(filepath: *const ::c_char, pNameTail: *mut *const ::c_char) -> BOOL;
1837 
1838     pub fn writev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int) -> ::ssize_t;
1839     pub fn readv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int) -> ::ssize_t;
1840 
1841     // randomNumGen.h
1842     pub fn randBytes(buf: *mut c_uchar, length: c_int) -> c_int;
1843     pub fn randABytes(buf: *mut c_uchar, length: c_int) -> c_int;
1844     pub fn randUBytes(buf: *mut c_uchar, length: c_int) -> c_int;
1845     pub fn randSecure() -> c_int;
1846 
1847     // mqueue.h
1848     pub fn mq_open(name: *const ::c_char, oflag: ::c_int, ...) -> ::mqd_t;
1849     pub fn mq_close(mqd: ::mqd_t) -> ::c_int;
1850     pub fn mq_unlink(name: *const ::c_char) -> ::c_int;
1851     pub fn mq_receive(
1852         mqd: ::mqd_t,
1853         msg_ptr: *mut ::c_char,
1854         msg_len: ::size_t,
1855         msg_prio: *mut ::c_uint,
1856     ) -> ::ssize_t;
1857     pub fn mq_timedreceive(
1858         mqd: ::mqd_t,
1859         msg_ptr: *mut ::c_char,
1860         msg_len: ::size_t,
1861         msg_prio: *mut ::c_uint,
1862         abs_timeout: *const ::timespec,
1863     ) -> ::ssize_t;
1864     pub fn mq_send(
1865         mqd: ::mqd_t,
1866         msg_ptr: *const ::c_char,
1867         msg_len: ::size_t,
1868         msg_prio: ::c_uint,
1869     ) -> ::c_int;
1870     pub fn mq_timedsend(
1871         mqd: ::mqd_t,
1872         msg_ptr: *const ::c_char,
1873         msg_len: ::size_t,
1874         msg_prio: ::c_uint,
1875         abs_timeout: *const ::timespec,
1876     ) -> ::c_int;
1877     pub fn mq_getattr(mqd: ::mqd_t, attr: *mut ::mq_attr) -> ::c_int;
1878     pub fn mq_setattr(mqd: ::mqd_t, newattr: *const ::mq_attr, oldattr: *mut ::mq_attr) -> ::c_int;
1879 
1880     // vxCpuLib.h
1881     fn vxCpuEnabledGet() -> ::cpuset_t; // Get set of running CPU's in the system
1882     fn vxCpuConfiguredGet() -> ::cpuset_t; // Get set of Configured CPU's in the system
1883 }
1884 
1885 //Dummy functions, these don't really exist in VxWorks.
1886 
1887 // wait.h macros
1888 safe_f! {
1889     pub {const} fn WIFEXITED(status: ::c_int) -> bool {
1890         (status & 0xFF00) == 0
1891     }
1892     pub {const} fn WIFSIGNALED(status: ::c_int) -> bool {
1893         (status & 0xFF00) != 0
1894     }
1895     pub {const} fn WIFSTOPPED(status: ::c_int) -> bool {
1896         (status & 0xFF0000) != 0
1897     }
1898     pub {const} fn WEXITSTATUS(status: ::c_int) -> ::c_int {
1899         status & 0xFF
1900     }
1901     pub {const} fn WTERMSIG(status: ::c_int) -> ::c_int {
1902         (status >> 8) & 0xFF
1903     }
1904     pub {const} fn WSTOPSIG(status: ::c_int) -> ::c_int {
1905         (status >> 16) & 0xFF
1906     }
1907 }
1908 
1909 pub fn pread(_fd: ::c_int, _buf: *mut ::c_void, _count: ::size_t, _offset: off64_t) -> ::ssize_t {
1910     -1
1911 }
1912 
1913 pub fn pwrite(
1914     _fd: ::c_int,
1915     _buf: *const ::c_void,
1916     _count: ::size_t,
1917     _offset: off64_t,
1918 ) -> ::ssize_t {
1919     -1
1920 }
1921 pub fn posix_memalign(memptr: *mut *mut ::c_void, align: ::size_t, size: ::size_t) -> ::c_int {
1922     // check to see if align is a power of 2 and if align is a multiple
1923     //  of sizeof(void *)
1924     if (align & align - 1 != 0) || (align as usize % size_of::<::size_t>() != 0) {
1925         return ::EINVAL;
1926     }
1927 
1928     unsafe {
1929         // posix_memalign should not set errno
1930         let e = ::errnoGet();
1931 
1932         let temp = memalign(align, size);
1933         ::errnoSet(e as ::c_int);
1934 
1935         if temp.is_null() {
1936             ::ENOMEM
1937         } else {
1938             *memptr = temp;
1939             0
1940         }
1941     }
1942 }
1943 
1944 cfg_if! {
1945     if #[cfg(libc_core_cvoid)] {
1946         pub use ::ffi::c_void;
1947     } else {
1948         // Use repr(u8) as LLVM expects `void*` to be the same as `i8*` to help
1949         // enable more optimization opportunities around it recognizing things
1950         // like malloc/free.
1951         #[repr(u8)]
1952         #[allow(missing_copy_implementations)]
1953         #[allow(missing_debug_implementations)]
1954         pub enum c_void {
1955             // Two dummy variants so the #[repr] attribute can be used.
1956             #[doc(hidden)]
1957             __variant1,
1958             #[doc(hidden)]
1959             __variant2,
1960         }
1961     }
1962 }
1963 
1964 cfg_if! {
1965     if #[cfg(target_arch = "aarch64")] {
1966         mod aarch64;
1967         pub use self::aarch64::*;
1968     } else if #[cfg(target_arch = "arm")] {
1969         mod arm;
1970         pub use self::arm::*;
1971     }  else if #[cfg(target_arch = "x86")] {
1972         mod x86;
1973         pub use self::x86::*;
1974     } else if #[cfg(target_arch = "x86_64")] {
1975         mod x86_64;
1976         pub use self::x86_64::*;
1977     } else if #[cfg(target_arch = "powerpc")] {
1978         mod powerpc;
1979         pub use self::powerpc::*;
1980     } else if #[cfg(target_arch = "powerpc64")] {
1981         mod powerpc64;
1982         pub use self::powerpc64::*;
1983     } else {
1984         // Unknown target_arch
1985     }
1986 }
1987