File tree 5 files changed +2
-3
lines changed
5 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ pub mod thread;
66
66
pub mod thread_info;
67
67
pub mod thread_local_dtor;
68
68
pub mod thread_local_key;
69
+ pub mod thread_parker;
69
70
pub mod util;
70
71
pub mod wtf8;
71
72
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 149
149
#[ cfg( all( test, not( target_os = "emscripten" ) ) ) ]
150
150
mod tests;
151
151
152
- mod parker;
153
-
154
152
use crate :: any:: Any ;
155
153
use crate :: cell:: UnsafeCell ;
156
154
use crate :: ffi:: { CStr , CString } ;
@@ -166,9 +164,9 @@ use crate::sys::thread as imp;
166
164
use crate :: sys_common:: mutex;
167
165
use crate :: sys_common:: thread;
168
166
use crate :: sys_common:: thread_info;
167
+ use crate :: sys_common:: thread_parker:: Parker ;
169
168
use crate :: sys_common:: { AsInner , IntoInner } ;
170
169
use crate :: time:: Duration ;
171
- use parker:: Parker ;
172
170
173
171
////////////////////////////////////////////////////////////////////////////////
174
172
// Thread-local storage
You can’t perform that action at this time.
0 commit comments