Skip to content

Commit

Permalink
Cranelift: Revert raw-dylib for Windows futex APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisDenton committed Apr 16, 2024
1 parent 148ecb4 commit b0f972f
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
From 0606a1b0ebd2ca4112412472d28b39a8437c708b Mon Sep 17 00:00:00 2001
From: Chris Denton <[email protected]>
Date: Tue, 16 Apr 2024 15:34:49 +0000
Subject: [PATCH] Revert use raw-dylib for Windows futex APIs

---
library/std/src/sys/pal/windows/c.rs | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/library/std/src/sys/pal/windows/c.rs b/library/std/src/sys/pal/windows/c.rs
index 0eb773f8bb9..1c828bac4b6 100644
--- a/library/std/src/sys/pal/windows/c.rs
+++ b/library/std/src/sys/pal/windows/c.rs
@@ -357,9 +357,7 @@ pub fn GetTempPath2W(bufferlength: u32, buffer: PWSTR) -> u32 {
}

#[cfg(not(target_vendor = "win7"))]
-// Use raw-dylib to import synchronization functions to workaround issues with the older mingw import library.
-#[cfg_attr(target_arch = "x86", link(name = "api-ms-win-core-synch-l1-2-0", kind = "raw-dylib", import_name_type = "undecorated"))]
-#[cfg_attr(not(target_arch = "x86"), link(name = "api-ms-win-core-synch-l1-2-0", kind = "raw-dylib"))]
+#[link(name = "synchronization")]
extern "system" {
pub fn WaitOnAddress(
address: *const c_void,
--
2.42.0.windows.2

0 comments on commit b0f972f

Please sign in to comment.