about summary refs log tree commit diff
path: root/src/libstd/sys/unix/ext/raw.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-06-21 10:14:16 -0700
committerAlex Crichton <alex@alexcrichton.com>2016-06-23 14:08:11 -0700
commitc3e8c178abe08c3427046490242ddb9eb3704b03 (patch)
tree078736308106998fd9baacab0a9113fb6c5b73d1 /src/libstd/sys/unix/ext/raw.rs
parentfe96928d7de991e527a7ed7b88bb30aa965c8a08 (diff)
downloadrust-c3e8c178abe08c3427046490242ddb9eb3704b03.tar.gz
rust-c3e8c178abe08c3427046490242ddb9eb3704b03.zip
std: Fix up stabilization discrepancies
* Remove the deprecated `CharRange` type which was forgotten to be removed
  awhile back.
* Stabilize the `os::$platform::raw::pthread_t` type which was intended to be
  stabilized as part of #32804
Diffstat (limited to 'src/libstd/sys/unix/ext/raw.rs')
-rw-r--r--src/libstd/sys/unix/ext/raw.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/ext/raw.rs b/src/libstd/sys/unix/ext/raw.rs
index 96535e88604..7972990e67d 100644
--- a/src/libstd/sys/unix/ext/raw.rs
+++ b/src/libstd/sys/unix/ext/raw.rs
@@ -23,7 +23,7 @@
 #[stable(feature = "raw_ext", since = "1.1.0")] pub type pid_t = i32;
 
 #[doc(inline)]
-#[unstable(feature = "pthread_t", issue = "29791")]
+#[stable(feature = "pthread_t", since = "1.8.0")]
 pub use sys::platform::raw::pthread_t;
 #[doc(inline)]
 #[stable(feature = "raw_ext", since = "1.1.0")]