Skip to content

Commit fab8410

Browse files
committed
Move wasm atomics code to wasm/atomics
1 parent 52fa9da commit fab8410

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ pub use crate::sys_common::os_str_bytes as os_str;
4848

4949
cfg_if::cfg_if! {
5050
if #[cfg(target_feature = "atomics")] {
51-
#[path = "condvar_atomics.rs"]
51+
#[path = "atomics/condvar.rs"]
5252
pub mod condvar;
53-
#[path = "mutex_atomics.rs"]
53+
#[path = "atomics/mutex.rs"]
5454
pub mod mutex;
55-
#[path = "rwlock_atomics.rs"]
55+
#[path = "atomics/rwlock.rs"]
5656
pub mod rwlock;
57-
#[path = "futex_atomics.rs"]
57+
#[path = "atomics/futex.rs"]
5858
pub mod futex;
59-
#[path = "thread_atomics.rs"]
59+
#[path = "atomics/thread.rs"]
6060
pub mod thread;
6161
} else {
6262
#[path = "../unsupported/condvar.rs"]

0 commit comments

Comments
 (0)