about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-06-24 03:39:47 -0700
committerGitHub <noreply@github.com>2016-06-24 03:39:47 -0700
commit7189ae36116491ea4936ad34461c8d89f704608b (patch)
treef2e56a789dd61fe4ee64a029789916cd9ccc0207 /src/libstd/sys
parent8c63d12dc3abc9ef16ca5ec3cf03f0dfbf09c3a5 (diff)
parentc3e8c178abe08c3427046490242ddb9eb3704b03 (diff)
downloadrust-7189ae36116491ea4936ad34461c8d89f704608b.tar.gz
rust-7189ae36116491ea4936ad34461c8d89f704608b.zip
Auto merge of #34399 - alexcrichton:issue-audit, r=brson
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')
-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")]