Skip to content

Commit 80162f7

Browse files
committed
Add tracking issue.
1 parent 1d36ef6 commit 80162f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/std/src/thread/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ pub(crate) use current::{current_id, drop_current, set_current, try_current};
187187

188188
mod spawnhook;
189189

190-
#[unstable(feature = "thread_spawn_hook", issue = "none")]
190+
#[unstable(feature = "thread_spawn_hook", issue = "132951")]
191191
pub use spawnhook::add_spawn_hook;
192192

193193
////////////////////////////////////////////////////////////////////////////////
@@ -346,7 +346,7 @@ impl Builder {
346346
///
347347
/// Use this if the parent thread is in no way relevant for the child thread.
348348
/// For example, when lazily spawning threads for a thread pool.
349-
#[unstable(feature = "thread_spawn_hook", issue = "none")]
349+
#[unstable(feature = "thread_spawn_hook", issue = "132951")]
350350
pub fn no_hooks(mut self) -> Builder {
351351
self.no_hooks = true;
352352
self

0 commit comments

Comments
 (0)