std: use id-based thread parking on SOLID

This commit is contained in:
joboet 2022-12-31 11:00:54 +01:00
parent 247e44e61d
commit 78245286dc
No known key found for this signature in database
GPG key ID: 704E0149B0194B3C
5 changed files with 40 additions and 179 deletions

View file

@ -13,9 +13,9 @@ mod itron {
pub(super) mod spin;
pub(super) mod task;
pub mod thread;
pub mod thread_parking;
pub(super) mod time;
use super::unsupported;
pub mod wait_flag;
}
pub mod alloc;
@ -43,8 +43,8 @@ pub use self::itron::thread;
pub mod memchr;
pub mod thread_local_dtor;
pub mod thread_local_key;
pub use self::itron::thread_parking;
pub mod time;
pub use self::itron::wait_flag;
mod rwlock;