about summary refs log tree commit diff
path: root/src/libstd/os/android
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/os/android
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/os/android')
-rw-r--r--src/libstd/os/android/raw.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/os/android/raw.rs b/src/libstd/os/android/raw.rs
index ce6e810592c..5e473a933a6 100644
--- a/src/libstd/os/android/raw.rs
+++ b/src/libstd/os/android/raw.rs
@@ -20,7 +20,8 @@
 
 use os::raw::c_long;
 
-#[unstable(feature = "pthread_t", issue = "29791")] pub type pthread_t = c_long;
+#[stable(feature = "pthread_t", since = "1.8.0")]
+pub type pthread_t = c_long;
 
 #[doc(inline)]
 #[stable(feature = "raw_ext", since = "1.1.0")]