about summary refs log tree commit diff
path: root/library/std/src/sys/thread_local
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2025-02-07 18:00:20 +0000
committerMichael Goulet <michael@errs.io>2025-02-09 17:10:50 +0000
commit9c486a74dac6f11276df4bbd2abc526a82cd000f (patch)
treeb5c3138554369955362136bd7b885779e5812388 /library/std/src/sys/thread_local
parenta26e97be8826d408309fffbd8168362365719f50 (diff)
downloadrust-9c486a74dac6f11276df4bbd2abc526a82cd000f.tar.gz
rust-9c486a74dac6f11276df4bbd2abc526a82cd000f.zip
Mark link_section attr with unsafe
Diffstat (limited to 'library/std/src/sys/thread_local')
-rw-r--r--library/std/src/sys/thread_local/guard/windows.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/thread_local/guard/windows.rs b/library/std/src/sys/thread_local/guard/windows.rs
index 1752b0e1208..b15a0d7c0bd 100644
--- a/library/std/src/sys/thread_local/guard/windows.rs
+++ b/library/std/src/sys/thread_local/guard/windows.rs
@@ -74,7 +74,7 @@ pub fn enable() {
     unsafe { ptr::from_ref(&CALLBACK).read_volatile() };
 }
 
-#[link_section = ".CRT$XLB"]
+#[unsafe(link_section = ".CRT$XLB")]
 #[cfg_attr(miri, used)] // Miri only considers explicitly `#[used]` statics for `lookup_link_section`
 pub static CALLBACK: unsafe extern "system" fn(*mut c_void, u32, *mut c_void) = tls_callback;