aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2015-11-24 16:37:15 +0100
committerFlorian Weimer <fweimer@redhat.com>2015-11-24 16:37:15 +0100
commit400e12265d99964f8445bb6d717321eb73152cc5 (patch)
tree6473ade0eedb0503e4716ff79d50dc091a63e6ab /sysdeps/generic
parenta61a1a2576e82c7a0c5de620b2eda755edeffb88 (diff)
downloadglibc-400e12265d99964f8445bb6d717321eb73152cc5.tar
glibc-400e12265d99964f8445bb6d717321eb73152cc5.tar.gz
glibc-400e12265d99964f8445bb6d717321eb73152cc5.tar.bz2
glibc-400e12265d99964f8445bb6d717321eb73152cc5.zip
Replace MUTEX_INITIALIZER with _LIBC_LOCK_INITIALIZER in generic code
* sysdeps/mach/hurd/libc-lock.h (_LIBC_LOCK_INITIALIZER): Define. (__libc_lock_define_initialized): Use it. * sysdeps/nptl/libc-lockP.h (_LIBC_LOCK_INITIALIZER): Define. * malloc/arena.c (list_lock): Use _LIBC_LOCK_INITIALIZER. * malloc/malloc.c (main_arena): Likewise. * sysdeps/generic/malloc-machine.h (MUTEX_INITIALIZER): Remove. * sysdeps/nptl/malloc-machine.h (MUTEX_INITIALIZER): Remove.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r--sysdeps/generic/malloc-machine.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sysdeps/generic/malloc-machine.h b/sysdeps/generic/malloc-machine.h
index 802d1f5b43..7b7eae807b 100644
--- a/sysdeps/generic/malloc-machine.h
+++ b/sysdeps/generic/malloc-machine.h
@@ -38,7 +38,6 @@ typedef int mutex_t;
# define mutex_lock(m) ({ *(m) = 1; 0; })
# define mutex_trylock(m) (*(m) ? 1 : ((*(m) = 1), 0))
# define mutex_unlock(m) (*(m) = 0)
-# define MUTEX_INITIALIZER (0)
#endif /* !defined mutex_init */