8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35f050b commit 32f9b8bCopy full SHA for 32f9b8b
library/std/src/sys/thread_local/destructors/linux.rs renamed to library/std/src/sys/thread_local/destructors/linux_like.rs
library/std/src/sys/thread_local/mod.rs
@@ -59,9 +59,9 @@ pub(crate) mod destructors {
59
target_os = "netbsd",
60
target_os = "dragonfly"
61
))] {
62
- mod linux;
+ mod linux_like;
63
mod list;
64
- pub(super) use linux::register;
+ pub(super) use linux_like::register;
65
pub(super) use list::run;
66
} else {
67
0 commit comments