Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 1 Oct 2003 06:25:58 +0000 (06:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 1 Oct 2003 06:25:58 +0000 (06:25 +0000)
ChangeLog
linuxthreads/ChangeLog
linuxthreads/sysdeps/pthread/malloc-machine.h

index 73aec3d1d6142ffcd69df8237fec9c1d497e7c3c..07c1ad0cecf2bf86f4751ca12ca395f85e93cf0d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,10 +7,6 @@
        * elf/rtld.c (dl_main): Set l_libname and l_name for the sysinfo DSO
        to work around kernel problem.
 
-2003-09-27  Wolfram Gloger  <wg@malloc.de>
-
-       * sysdeps/pthread/malloc-machine.h: New file.
-
 2003-09-27  Wolfram Gloger  <wg@malloc.de>
 
        * malloc/malloc.c: Include <malloc-machine.h> earlier instead of
index abd4a4fdd4bc5ce5f5ceff9e960582e2289f72ef..27e479deeb490b755a930f5120165558a4f2525c 100644 (file)
@@ -1,3 +1,12 @@
+2003-09-30  Jakub Jelinek  <jakub@redhat.com>
+
+       * sysdeps/pthread/malloc-machine.h [!__libc_maybe_call2] (mutex_init,
+       mutex_lock, mutex_trylock, mutex_unlock): Remove.
+
+2003-09-27  Wolfram Gloger  <wg@malloc.de>
+
+       * sysdeps/pthread/malloc-machine.h: New file.
+
 2003-09-18  H.J. Lu  <hongjiu.lu@intel.com>
 
        * attr.c (__pthread_attr_init_2_1): Double __guardsize size
index 7eff8362852d129cf264206d53c6014fa3efd2b6..5191f8c7795ac763cd284be635ba252d6185904e 100644 (file)
@@ -28,8 +28,6 @@
 
 __libc_lock_define (typedef, mutex_t)
 
-#if defined(__libc_maybe_call2)
-
 #define mutex_init(m)          \
   __libc_maybe_call2 (pthread_mutex_init, (m, NULL), (*(int *)(m) = 0))
 #define mutex_lock(m)          \
@@ -40,20 +38,6 @@ __libc_lock_define (typedef, mutex_t)
 #define mutex_unlock(m)                \
   __libc_maybe_call2 (pthread_mutex_unlock, (m), (*(int *)(m) = 0))
 
-#else
-
-#define mutex_init(m)          \
-  __libc_maybe_call (__pthread_mutex_init, (m, NULL), (*(int *)(m) = 0))
-#define mutex_lock(m)          \
-  __libc_maybe_call (__pthread_mutex_lock, (m), ((*(int *)(m) = 1), 0))
-#define mutex_trylock(m)       \
-  __libc_maybe_call (__pthread_mutex_trylock, (m), \
-                    (*(int *)(m) ? 1 : ((*(int *)(m) = 1), 0)))
-#define mutex_unlock(m)                \
-  __libc_maybe_call (__pthread_mutex_unlock, (m), (*(int *)(m) = 0))
-
-#endif
-
 /* This is defined by newer gcc version unique for each module.  */
 extern void *__dso_handle __attribute__ ((__weak__));