summaryrefslogtreecommitdiff
path: root/third_party/libc/src/unix/bsd/apple/b32.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libc/src/unix/bsd/apple/b32.rs')
-rw-r--r--third_party/libc/src/unix/bsd/apple/b32.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/third_party/libc/src/unix/bsd/apple/b32.rs b/third_party/libc/src/unix/bsd/apple/b32.rs
new file mode 100644
index 0000000..8ca0254
--- /dev/null
+++ b/third_party/libc/src/unix/bsd/apple/b32.rs
@@ -0,0 +1,19 @@
1//! 32-bit specific Apple (ios/darwin) definitions
2
3pub type c_long = i32;
4pub type c_ulong = u32;
5
6s! {
7 pub struct pthread_attr_t {
8 __sig: c_long,
9 __opaque: [::c_char; 36]
10 }
11}
12
13pub const __PTHREAD_MUTEX_SIZE__: usize = 40;
14pub const __PTHREAD_COND_SIZE__: usize = 24;
15pub const __PTHREAD_CONDATTR_SIZE__: usize = 4;
16pub const __PTHREAD_RWLOCK_SIZE__: usize = 124;
17
18pub const TIOCTIMESTAMP: ::c_ulong = 0x40087459;
19pub const TIOCDCDTIMESTAMP: ::c_ulong = 0x40087458;