We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5bbdc73 + a4fb1d0 commit dde4fb3Copy full SHA for dde4fb3
library/std/src/sys/hermit/mod.rs
@@ -106,7 +106,7 @@ pub unsafe extern "C" fn runtime_entry(
106
argv: *const *const c_char,
107
env: *const *const c_char,
108
) -> ! {
109
- use crate::sys::hermit::fast_thread_local::run_dtors;
+ use crate::sys::hermit::thread_local_dtor::run_dtors;
110
extern "C" {
111
fn main(argc: isize, argv: *const *const c_char) -> i32;
112
}
library/std/src/sys/hermit/thread.rs
@@ -4,7 +4,7 @@ use crate::ffi::CStr;
4
use crate::io;
5
use crate::mem;
6
use crate::sys::hermit::abi;
7
-use crate::sys::hermit::fast_thread_local::run_dtors;
+use crate::sys::hermit::thread_local_dtor::run_dtors;
8
use crate::time::Duration;
9
10
pub type Tid = abi::Tid;
0 commit comments