rust/library/std/src/thread
Jubilee 4722ad149e
Rollup merge of #97524 - ibraheemdev:thread-raw, r=ibraheemdev
Add `Thread::{into_raw, from_raw}`

Public API:
```rust
#![unstable(feature = "thread_raw", issue = "97523")]

impl Thread {
    pub fn into_raw(self) -> *const ();
    pub unsafe fn from_raw(ptr: *const ()) -> Thread;
}
```

ACP: https://github.com/rust-lang/libs-team/issues/200
2024-09-18 14:32:23 -07:00
..
local SeqCst->Relaxed in thread local test. 2024-03-20 15:38:09 +01:00
local.rs Replace move|| with move || in compiler/ and library/ 2024-06-18 23:25:08 +08:00
mod.rs Rollup merge of #97524 - ibraheemdev:thread-raw, r=ibraheemdev 2024-09-18 14:32:23 -07:00
scoped.rs Reformat use declarations. 2024-07-29 08:26:52 +10:00
tests.rs Reformat use declarations. 2024-07-29 08:26:52 +10:00