-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
task: stabilize task::Id
related apis
#6891
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was wondering about these ... but I guess it's probably fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mox692, Did you missed out TaskMeta
?
tokio/tokio/src/runtime/task_hooks.rs
Lines 20 to 23 in 679d765
pub struct TaskMeta<'a> { | |
/// The opaque ID of the task. | |
#[cfg(tokio_unstable)] | |
pub(crate) id: super::task::Id, |
Additionally, you also should remove the #[cfg(tokio_unstable)]
from TaskMeta
and every place where it is used.
Done. |
Follow up #6793.