mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-18 12:16:13 +08:00
Update.
2001-11-15 Ulrich Drepper <drepper@redhat.com> * sysdeps/generic/unwind-dw2-fde.c: Don't use recursive mutexes.
This commit is contained in:
parent
74bd2300b5
commit
5ff4a0aa78
@ -1,3 +1,7 @@
|
||||
2001-11-15 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/generic/unwind-dw2-fde.c: Don't use recursive mutexes.
|
||||
|
||||
2001-10-02 Jakub Jelinek <jakub@redhat.com>
|
||||
H.J. Lu <hjl@gnu.org>
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-11-15 Børre Gaup <boerre.gaup@pc.nu>
|
||||
|
||||
* locales/se_NO: New file.
|
||||
|
||||
2001-10-08 Won-kyu Park <wkpark@chem.skku.ac.kr>
|
||||
|
||||
* locales/ko_KR: Fixed a typo in Hangul portion of LC_COLLATE.
|
||||
|
@ -63,10 +63,10 @@ static struct object *seen_objects;
|
||||
|
||||
#ifdef _LIBC
|
||||
|
||||
__libc_lock_define_initialized_recursive (static, object_mutex)
|
||||
__libc_lock_define_initialized (static, object_mutex)
|
||||
#define init_object_mutex_once()
|
||||
#define __gthread_mutex_lock(m) __libc_lock_lock_recursive (*(m))
|
||||
#define __gthread_mutex_unlock(m) __libc_lock_unlock_recursive (*(m))
|
||||
#define __gthread_mutex_lock(m) __libc_lock_lock (*(m))
|
||||
#define __gthread_mutex_unlock(m) __libc_lock_unlock (*(m))
|
||||
|
||||
#else
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user