diff --git a/library/std/src/sys/thread_local/destructors/linux.rs b/library/std/src/sys/thread_local/destructors/linux_like.rs similarity index 100% rename from library/std/src/sys/thread_local/destructors/linux.rs rename to library/std/src/sys/thread_local/destructors/linux_like.rs diff --git a/library/std/src/sys/thread_local/mod.rs b/library/std/src/sys/thread_local/mod.rs index ef525dd632167..a009ad5c33f40 100644 --- a/library/std/src/sys/thread_local/mod.rs +++ b/library/std/src/sys/thread_local/mod.rs @@ -59,9 +59,9 @@ pub(crate) mod destructors { target_os = "netbsd", target_os = "dragonfly" ))] { - mod linux; + mod linux_like; mod list; - pub(super) use linux::register; + pub(super) use linux_like::register; pub(super) use list::run; } else { mod list;