File tree Expand file tree Collapse file tree 5 files changed +2
-3
lines changed Expand file tree Collapse file tree 5 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ pub mod thread;
6666pub mod thread_info;
6767pub mod thread_local_dtor;
6868pub mod thread_local_key;
69+ pub mod thread_parker;
6970pub mod util;
7071pub mod wtf8;
7172
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 149149#[ cfg( all( test, not( target_os = "emscripten" ) ) ) ]
150150mod tests;
151151
152- mod parker;
153-
154152use crate :: any:: Any ;
155153use crate :: cell:: UnsafeCell ;
156154use crate :: ffi:: { CStr , CString } ;
@@ -166,9 +164,9 @@ use crate::sys::thread as imp;
166164use crate :: sys_common:: mutex;
167165use crate :: sys_common:: thread;
168166use crate :: sys_common:: thread_info;
167+ use crate :: sys_common:: thread_parker:: Parker ;
169168use crate :: sys_common:: { AsInner , IntoInner } ;
170169use crate :: time:: Duration ;
171- use parker:: Parker ;
172170
173171////////////////////////////////////////////////////////////////////////////////
174172// Thread-local storage
You can’t perform that action at this time.
0 commit comments