[hurd,commited] mach: Fix LLL_SHARED value

Message ID 20220214182937.2930947-1-samuel.thibault@ens-lyon.org
State Committed, archived
Commit 33038a7d917889547c711be158ed34739af26351
Headers
Series [hurd,commited] mach: Fix LLL_SHARED value |

Checks

Context Check Description
dj/TryBot-apply_patch fail Patch failed to apply to master at the time it was sent
dj/TryBot-32bit fail Patch series failed to apply

Commit Message

Samuel Thibault Feb. 14, 2022, 6:29 p.m. UTC
  Mach defines GSYNC_SHARED, not SYNC_SHARED.
---
 mach/lowlevellock.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/mach/lowlevellock.h b/mach/lowlevellock.h
index 6336694902..a4f6af4c29 100644
--- a/mach/lowlevellock.h
+++ b/mach/lowlevellock.h
@@ -35,7 +35,7 @@ 
 #define LLL_LOCK_INITIALIZER   0
 
 #define LLL_PRIVATE        0
-#define LLL_SHARED         SYNC_SHARED
+#define LLL_SHARED         GSYNC_SHARED
 
 /* Interruptible version of __gsync_wait.  */
 extern kern_return_t __gsync_wait_intr