diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-03-18 13:44:05 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-03-18 13:44:05 +0530 |
commit | 69854bb5e9d734784b08a8ab1391ac8a8f5256c1 (patch) | |
tree | 09a03fcc3d2cd4b13b7381a14562f34a04b88802 /nptl/pthread_mutex_init.c | |
parent | b2e1393c60e8350a97514750002919c156c28bff (diff) | |
download | glibc-69854bb5e9d734784b08a8ab1391ac8a8f5256c1.tar.gz glibc-69854bb5e9d734784b08a8ab1391ac8a8f5256c1.tar.xz glibc-69854bb5e9d734784b08a8ab1391ac8a8f5256c1.zip |
Rename some static variables
Rename some static variables to give them unique names.
Diffstat (limited to 'nptl/pthread_mutex_init.c')
-rw-r--r-- | nptl/pthread_mutex_init.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nptl/pthread_mutex_init.c b/nptl/pthread_mutex_init.c index 36da3f8bfb..174d900dc8 100644 --- a/nptl/pthread_mutex_init.c +++ b/nptl/pthread_mutex_init.c @@ -24,7 +24,7 @@ #include <stap-probe.h> -static const struct pthread_mutexattr default_attr = +static const struct pthread_mutexattr default_mutexattr = { /* Default is a normal mutex, not shared between processes. */ .mutexkind = PTHREAD_MUTEX_NORMAL @@ -45,7 +45,8 @@ __pthread_mutex_init (mutex, mutexattr) assert (sizeof (pthread_mutex_t) <= __SIZEOF_PTHREAD_MUTEX_T); - imutexattr = (const struct pthread_mutexattr *) mutexattr ?: &default_attr; + imutexattr = ((const struct pthread_mutexattr *) mutexattr + ?: &default_mutexattr); /* Sanity checks. */ switch (__builtin_expect (imutexattr->mutexkind |