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
This commit is contained in:
parent
fe96928d7d
commit
c3e8c178ab
16 changed files with 26 additions and 31 deletions
|
@ -23,7 +23,8 @@ use os::raw::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")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue