* malloc/malloc.c [! MALLOC_DEBUG] (assert): #undef before defining.
authorRoland McGrath <roland@gnu.org>
Sun, 29 Sep 2002 22:53:29 +0000 (22:53 +0000)
committerRoland McGrath <roland@gnu.org>
Sun, 29 Sep 2002 22:53:29 +0000 (22:53 +0000)
* sysdeps/mach/hurd/Versions (ld: GLIBC_2.2.6): Add __errno_location.

ChangeLog
linuxthreads/ChangeLog
malloc/malloc.c

index d2a8ff7..ec76edf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,8 @@
 2002-09-29  Roland McGrath  <roland@redhat.com>
 
-       * sysdeps/mach/hurd/Versions (ld: GLIBC_2.2.6): Add __errno_location.
+       * malloc/malloc.c [! MALLOC_DEBUG] (assert): #undef before defining.
 
-2002-09-29  Roland McGrath  <roland@redhat.com>
+       * sysdeps/mach/hurd/Versions (ld: GLIBC_2.2.6): Add __errno_location.
 
        * sysdeps/unix/sysv/linux/x86_64/sysdep.S [USE_TLS && HAVE___THREAD]:
        Define errno in .tbss.
index 4c78587..33ae721 100644 (file)
@@ -1,3 +1,8 @@
+2002-09-29  Jakub Jelinek  <jakub@redhat.com>
+
+       * sysdeps/pthread/tst-timer.c (main): Clear
+       SIGEV2.sigev_notify_attributes.
+
 2002-09-29  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/i386/useldt.h (DO_SET_THREAD_AREA): Don't use
index d480b0b..757e65a 100644 (file)
@@ -307,6 +307,7 @@ extern "C" {
 #if MALLOC_DEBUG
 #include <assert.h>
 #else
+#undef assert
 #define assert(x) ((void)0)
 #endif