1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

hurd: Rename LLL_INITIALIZER to LLL_LOCK_INITIALIZER

To get coherent with other ports.
This commit is contained in:
Samuel Thibault
2020-12-13 10:16:55 +00:00
parent 1f3cb8d600
commit 18c2ab9a09
5 changed files with 8 additions and 8 deletions

View File

@@ -24,7 +24,7 @@
/* Things in the library which want to be run when the auth port changes. */ /* Things in the library which want to be run when the auth port changes. */
DEFINE_HOOK (_hurd_reauth_hook, (auth_t new_auth)); DEFINE_HOOK (_hurd_reauth_hook, (auth_t new_auth));
static unsigned int reauth_lock = LLL_INITIALIZER; static unsigned int reauth_lock = LLL_LOCK_INITIALIZER;
/* Set the auth port to NEW, and reauthenticate /* Set the auth port to NEW, and reauthenticate
everything used by the library. */ everything used by the library. */

View File

@@ -31,7 +31,7 @@
typedef unsigned int __spin_lock_t; typedef unsigned int __spin_lock_t;
/* Static initializer for spinlocks. */ /* Static initializer for spinlocks. */
#define __SPIN_LOCK_INITIALIZER LLL_INITIALIZER #define __SPIN_LOCK_INITIALIZER LLL_LOCK_INITIALIZER
/* Initialize LOCK. */ /* Initialize LOCK. */

View File

@@ -32,7 +32,7 @@
#endif #endif
/* Static initializer for low-level locks. */ /* Static initializer for low-level locks. */
#define LLL_INITIALIZER 0 #define LLL_LOCK_INITIALIZER 0
/* Wait on address PTR, without blocking if its contents /* Wait on address PTR, without blocking if its contents
* are different from VAL. */ * are different from VAL. */

View File

@@ -22,6 +22,6 @@
void void
__mutex_init (void *lock) __mutex_init (void *lock)
{ {
*(int *)lock = LLL_INITIALIZER; *(int *)lock = LLL_LOCK_INITIALIZER;
} }
libc_hidden_def (__mutex_init) libc_hidden_def (__mutex_init)

View File

@@ -57,13 +57,13 @@ typedef struct __libc_lock_recursive_opaque__ __libc_lock_recursive_t;
CLASS __libc_lock_t NAME; CLASS __libc_lock_t NAME;
/* Define an initialized lock variable NAME with storage class CLASS. */ /* Define an initialized lock variable NAME with storage class CLASS. */
#define _LIBC_LOCK_INITIALIZER LLL_INITIALIZER #define _LIBC_LOCK_INITIALIZER LLL_LOCK_INITIALIZER
#define __libc_lock_define_initialized(CLASS,NAME) \ #define __libc_lock_define_initialized(CLASS,NAME) \
CLASS __libc_lock_t NAME = LLL_INITIALIZER; CLASS __libc_lock_t NAME = LLL_LOCK_INITIALIZER;
/* Initialize the named lock variable, leaving it in a consistent, unlocked /* Initialize the named lock variable, leaving it in a consistent, unlocked
state. */ state. */
#define __libc_lock_init(NAME) (NAME) = LLL_INITIALIZER #define __libc_lock_init(NAME) (NAME) = LLL_LOCK_INITIALIZER
/* Finalize the named lock variable, which must be locked. It cannot be /* Finalize the named lock variable, which must be locked. It cannot be
used again until __libc_lock_init is called again on it. This must be used again until __libc_lock_init is called again on it. This must be
@@ -86,7 +86,7 @@ typedef struct __libc_lock_recursive_opaque__ __libc_lock_recursive_t;
#define __libc_lock_define_recursive(CLASS,NAME) \ #define __libc_lock_define_recursive(CLASS,NAME) \
CLASS __libc_lock_recursive_t NAME; CLASS __libc_lock_recursive_t NAME;
#define _LIBC_LOCK_RECURSIVE_INITIALIZER { LLL_INITIALIZER, 0, 0 } #define _LIBC_LOCK_RECURSIVE_INITIALIZER { LLL_LOCK_INITIALIZER, 0, 0 }
#define __libc_lock_define_initialized_recursive(CLASS,NAME) \ #define __libc_lock_define_initialized_recursive(CLASS,NAME) \
CLASS __libc_lock_recursive_t NAME = _LIBC_LOCK_RECURSIVE_INITIALIZER; CLASS __libc_lock_recursive_t NAME = _LIBC_LOCK_RECURSIVE_INITIALIZER;