about summary refs log tree commit diff
path: root/src/libstd/os/emscripten
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/emscripten
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/emscripten')
-rw-r--r--src/libstd/os/emscripten/raw.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/os/emscripten/raw.rs b/src/libstd/os/emscripten/raw.rs
index 9da400a6913..bcd85f8e29a 100644
--- a/src/libstd/os/emscripten/raw.rs
+++ b/src/libstd/os/emscripten/raw.rs
@@ -25,7 +25,8 @@ use os::raw::{c_long, c_short, c_uint, c_ulong};
 #[stable(feature = "raw_ext", since = "1.1.0")] pub type dev_t = u64;
 #[stable(feature = "raw_ext", since = "1.1.0")] pub type mode_t = u32;
 
-#[unstable(feature = "pthread_t", issue = "29791")] pub type pthread_t = c_ulong;
+#[stable(feature = "pthread_t", since = "1.8.0")]
+pub type pthread_t = c_ulong;
 
 #[doc(inline)]
 #[stable(feature = "raw_ext", since = "1.1.0")] pub type blkcnt_t = u64;