diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-08 00:22:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-08 00:22:00 +0000 |
commit | b5facfdac0a9a10f9b0b145d6e3b1348a751f2ff (patch) | |
tree | ba1c715765882bf6dad329e73ee45d99c152422e /nptl_db | |
parent | e9c7764ec9fe328dfac0c01a7f609d6a2a9bac00 (diff) | |
download | glibc-b5facfdac0a9a10f9b0b145d6e3b1348a751f2ff.tar.gz |
Update.
2003-01-06 Philip Blundell <philb@gnu.org>
* sysdeps/unix/arm/sysdep.S (syscall_error): Optimise a little.
[__LIBC_REENTRANT]: Unify PIC and non-PIC cases.
* sysdeps/unix/sysv/linux/arm/sysdep.h (PSEUDO): Remove .type
directive.
(PSEUDO_RET): Use SYSCALL_ERROR in place of __syscall_error.
(SYSCALL_ERROR): New.
(SYSCALL_ERROR_HANDLER) [NOT_IN_libc]: Provide local copy of error
handling code.
(INTERNAL_SYSCALL): Define.
(INLINE_SYSCALL): Use it.
(INTERNAL_SYSCALL_ERROR_P, INTERNAL_SYSCALL_ERRNO): Define.
* sysdeps/unix/sysv/linux/arm/socket.S (__socket): Use
SYSCALL_ERROR in place of __syscall_error.
2003-01-07 Jakub Jelinek <jakub@redhat.com>
* sysdeps/ia64/bits/byteswap.h [__GNUC__ >= 2] (__bswap_16,
__bswap_32, __bswap_64): Put x into temporary variable
to avoid warnings.
[!__GNUC__] (__bswap_16, __bswap_32, __bswap_64): Change into static
(inline) functions.
* sysdeps/s390/bits/byteswap.h [__GNUC__ >= 2] (__bswap_16,
__bswap_32, __bswap_64): Put x into temporary variable
to avoid warnings.
[!__GNUC__] (__bswap_16, __bswap_32, __bswap_64): Change into static
(inline) functions.
* sysdeps/i386/bits/byteswap.h [!__GNUC__] (__bswap_16, __bswap_32):
Likewise.
2003-01-07 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/alpha/adjtime.c (ntp_adjtime): New weak
alias.
Diffstat (limited to 'nptl_db')
-rw-r--r-- | nptl_db/ChangeLog | 6 | ||||
-rw-r--r-- | nptl_db/td_ta_event_getmsg.c | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/nptl_db/ChangeLog b/nptl_db/ChangeLog index c15ba3f5ab..d4a4ad0d5c 100644 --- a/nptl_db/ChangeLog +++ b/nptl_db/ChangeLog @@ -1,4 +1,8 @@ -2003-01-05 Ulrich Drepper <drepper@redhat.com> +2003-01-07 Jakub Jelinek <jakub@redhat.com> + + * td_ta_event_getmsg.c: Include assert.h. + +-2003-01-05 Ulrich Drepper <drepper@redhat.com> * Makefile (libthread_db.so-no-z-defs): Define. diff --git a/nptl_db/td_ta_event_getmsg.c b/nptl_db/td_ta_event_getmsg.c index 919ba6569b..ae3f8e7fa6 100644 --- a/nptl_db/td_ta_event_getmsg.c +++ b/nptl_db/td_ta_event_getmsg.c @@ -1,5 +1,5 @@ /* Retrieve event. - Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1999, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 1999. @@ -18,6 +18,7 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ +#include <assert.h> #include <stddef.h> #include <string.h> |