Uh oh!
There was an error while loading. Please reload this page.
Add Thread::into_raw and Thread::from_raw functions - #109794
Conversation
rustbot
commented
Mar 30, 2023
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @thomcc (or someone else) soon. Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (
|
rustbot
commented
Mar 30, 2023
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
h33p
commented
Mar 30, 2023
@rustbot label +T-libs-api -T-libs |
rust-log-analyzer
commented
Mar 30, 2023
The job Click to see the possible cause of the failure (guessed by this bot) |
h33p
commented
Mar 30, 2023
Duplicate of#97524 |
Allows converting a
Threadinto a raw pointer for use in futures executors, FFI and other lower level code.ACP: rust-lang/libs-team#200
I took the liberty to assign
thread_pointer_conversionfeature flag, but I'm not sure if the functions are the only place I need to add it.Also I'm unsure whether
from_rawneeds#[must_use]or not.