about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander von Gluck IV <kallisti5@unixzen.com>2016-09-25 10:30:21 -0500
committerAlexander von Gluck IV <kallisti5@unixzen.com>2016-09-25 11:17:36 -0500
commit8ec1d21ffaecc7a7c0d39d6a9dcc5fa2ea892dde (patch)
treeda35068824b874ce0a5f9b910e663eb3d813a476
parent729ae39090cc3e95efc65142c37b9519320dcd66 (diff)
downloadrust-8ec1d21ffaecc7a7c0d39d6a9dcc5fa2ea892dde.tar.gz
rust-8ec1d21ffaecc7a7c0d39d6a9dcc5fa2ea892dde.zip
Haiku: Fix pthread_t typesize set to stable 1.8.0 post #29791
-rw-r--r--src/libstd/os/haiku/raw.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/os/haiku/raw.rs b/src/libstd/os/haiku/raw.rs
index ce7450d5d5a..95353d999f9 100644
--- a/src/libstd/os/haiku/raw.rs
+++ b/src/libstd/os/haiku/raw.rs
@@ -18,7 +18,7 @@ use os::raw::{c_long};
 use os::unix::raw::{uid_t, gid_t};
 
 // Use the direct definition of usize, instead of uintptr_t like in libc
-#[unstable(feature = "pthread_t", issue = "29791")] pub type pthread_t = usize;
+#[stable(feature = "pthread_t", since = "1.8.0")] pub type pthread_t = usize;
 
 #[stable(feature = "raw_ext", since = "1.1.0")] pub type blkcnt_t = i64;
 #[stable(feature = "raw_ext", since = "1.1.0")] pub type blksize_t = i32;