1
Fork 0

std: unify id-based thread parking implementations

This commit is contained in:
joboet 2022-12-19 15:59:00 +01:00
parent 0c0b403f19
commit a9e5c1a309
No known key found for this signature in database
GPG key ID: 704E0149B0194B3C
19 changed files with 208 additions and 231 deletions

View file

@ -173,7 +173,7 @@ use crate::sync::Arc;
use crate::sys::thread as imp;
use crate::sys_common::thread;
use crate::sys_common::thread_info;
use crate::sys_common::thread_parker::Parker;
use crate::sys_common::thread_parking::Parker;
use crate::sys_common::{AsInner, IntoInner};
use crate::time::Duration;