2001-11-15  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/generic/unwind-dw2-fde.c: Don't use recursive mutexes.
This commit is contained in:
Ulrich Drepper 2001-11-16 01:43:09 +00:00
parent 74bd2300b5
commit 5ff4a0aa78
3 changed files with 11 additions and 3 deletions

View File

@ -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>

View File

@ -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.

View File

@ -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