From 32f9b8bf7671407fc19d9635b7c71b8051b8c165 Mon Sep 17 00:00:00 2001 From: joboet Date: Mon, 17 Jun 2024 15:59:42 +0200 Subject: [PATCH] std: rename module for clarity --- .../sys/thread_local/destructors/{linux.rs => linux_like.rs} | 0 library/std/src/sys/thread_local/mod.rs | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename library/std/src/sys/thread_local/destructors/{linux.rs => linux_like.rs} (100%) 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;