Skip to content

Commit a4fb1d0

Browse files
committed
adjust remaining targets
- fix commit 7dc3886 - previous commit doesn't adjust all targets
1 parent 1f5d69d commit a4fb1d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/sys/hermit/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ pub unsafe extern "C" fn runtime_entry(
106106
argv: *const *const c_char,
107107
env: *const *const c_char,
108108
) -> ! {
109-
use crate::sys::hermit::fast_thread_local::run_dtors;
109+
use crate::sys::hermit::thread_local_dtor::run_dtors;
110110
extern "C" {
111111
fn main(argc: isize, argv: *const *const c_char) -> i32;
112112
}

library/std/src/sys/hermit/thread.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::ffi::CStr;
44
use crate::io;
55
use crate::mem;
66
use crate::sys::hermit::abi;
7-
use crate::sys::hermit::fast_thread_local::run_dtors;
7+
use crate::sys::hermit::thread_local_dtor::run_dtors;
88
use crate::time::Duration;
99

1010
pub type Tid = abi::Tid;

0 commit comments

Comments
 (0)