diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-12-13 10:16:55 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-12-16 01:58:33 +0100 |
commit | 18c2ab9a094f6a6cb3a107d66dafaf32f8f969f0 (patch) | |
tree | 1d2eea4620480842d8bfb3d1d7292222319ad6fa /mach | |
parent | 1f3cb8d600702885c9e5a1175c73ec3f69476082 (diff) | |
download | glibc-18c2ab9a094f6a6cb3a107d66dafaf32f8f969f0.zip glibc-18c2ab9a094f6a6cb3a107d66dafaf32f8f969f0.tar.gz glibc-18c2ab9a094f6a6cb3a107d66dafaf32f8f969f0.tar.bz2 |
hurd: Rename LLL_INITIALIZER to LLL_LOCK_INITIALIZER
To get coherent with other ports.
Diffstat (limited to 'mach')
-rw-r--r-- | mach/lock-intern.h | 2 | ||||
-rw-r--r-- | mach/lowlevellock.h | 2 | ||||
-rw-r--r-- | mach/mutex-init.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/mach/lock-intern.h b/mach/lock-intern.h index a68674c..62faf98 100644 --- a/mach/lock-intern.h +++ b/mach/lock-intern.h @@ -31,7 +31,7 @@ typedef unsigned int __spin_lock_t; /* Static initializer for spinlocks. */ -#define __SPIN_LOCK_INITIALIZER LLL_INITIALIZER +#define __SPIN_LOCK_INITIALIZER LLL_LOCK_INITIALIZER /* Initialize LOCK. */ diff --git a/mach/lowlevellock.h b/mach/lowlevellock.h index 6d92adc..cf67ccd 100644 --- a/mach/lowlevellock.h +++ b/mach/lowlevellock.h @@ -32,7 +32,7 @@ #endif /* Static initializer for low-level locks. */ -#define LLL_INITIALIZER 0 +#define LLL_LOCK_INITIALIZER 0 /* Wait on address PTR, without blocking if its contents * are different from VAL. */ diff --git a/mach/mutex-init.c b/mach/mutex-init.c index acacec2..fc898f6 100644 --- a/mach/mutex-init.c +++ b/mach/mutex-init.c @@ -22,6 +22,6 @@ void __mutex_init (void *lock) { - *(int *)lock = LLL_INITIALIZER; + *(int *)lock = LLL_LOCK_INITIALIZER; } libc_hidden_def (__mutex_init) |