diff --git a/ChangeLog b/ChangeLog index d2a8ff7ffd..ec76edf14e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,9 @@ 2002-09-29 Roland McGrath + * malloc/malloc.c [! MALLOC_DEBUG] (assert): #undef before defining. + * sysdeps/mach/hurd/Versions (ld: GLIBC_2.2.6): Add __errno_location. -2002-09-29 Roland McGrath - * sysdeps/unix/sysv/linux/x86_64/sysdep.S [USE_TLS && HAVE___THREAD]: Define errno in .tbss. * sysdeps/unix/x86_64/sysdep.S [USE_TLS && HAVE___THREAD]: Use TLS diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 4c78587fa8..33ae7212c9 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +2002-09-29 Jakub Jelinek + + * sysdeps/pthread/tst-timer.c (main): Clear + SIGEV2.sigev_notify_attributes. + 2002-09-29 Ulrich Drepper * sysdeps/i386/useldt.h (DO_SET_THREAD_AREA): Don't use diff --git a/malloc/malloc.c b/malloc/malloc.c index d480b0b8d0..757e65a37f 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -307,6 +307,7 @@ extern "C" { #if MALLOC_DEBUG #include #else +#undef assert #define assert(x) ((void)0) #endif