parent
527e718261
commit
647df67faf
1 changed files with 2 additions and 8 deletions
|
|
@ -821,8 +821,6 @@ pub fn park_timeout(dur: Duration) {
|
|||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(thread_id)]
|
||||
///
|
||||
/// use std::thread;
|
||||
///
|
||||
/// let other_thread = thread::spawn(|| {
|
||||
|
|
@ -832,7 +830,7 @@ pub fn park_timeout(dur: Duration) {
|
|||
/// let other_thread_id = other_thread.join().unwrap();
|
||||
/// assert!(thread::current().id() != other_thread_id);
|
||||
/// ```
|
||||
#[unstable(feature = "thread_id", issue = "21507")]
|
||||
#[stable(feature = "thread_id", since = "1.19.0")]
|
||||
#[derive(Eq, PartialEq, Clone, Copy, Hash, Debug)]
|
||||
pub struct ThreadId(u64);
|
||||
|
||||
|
|
@ -962,8 +960,6 @@ impl Thread {
|
|||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(thread_id)]
|
||||
///
|
||||
/// use std::thread;
|
||||
///
|
||||
/// let other_thread = thread::spawn(|| {
|
||||
|
|
@ -973,7 +969,7 @@ impl Thread {
|
|||
/// let other_thread_id = other_thread.join().unwrap();
|
||||
/// assert!(thread::current().id() != other_thread_id);
|
||||
/// ```
|
||||
#[unstable(feature = "thread_id", issue = "21507")]
|
||||
#[stable(feature = "thread_id", since = "1.19.0")]
|
||||
pub fn id(&self) -> ThreadId {
|
||||
self.inner.id
|
||||
}
|
||||
|
|
@ -1164,8 +1160,6 @@ impl<T> JoinHandle<T> {
|
|||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(thread_id)]
|
||||
///
|
||||
/// use std::thread;
|
||||
///
|
||||
/// let builder = thread::Builder::new();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue