From 0b3df49e8d309149a9fbcd5837e650d3ef054017 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 19 Apr 2003 19:19:11 +0000 Subject: [PATCH] Update. 2003-04-19 Ulrich Drepper * sysdeps/i386/i686/hp-timing.h (HP_TIMING_PRINT): Change type of __len to size_t to avoid warnings. --- ChangeLog | 5 +++++ nptl/ChangeLog | 8 ++++++++ sysdeps/i386/i686/hp-timing.h | 4 ++-- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 25d981d..965d5a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-04-19 Ulrich Drepper + + * sysdeps/i386/i686/hp-timing.h (HP_TIMING_PRINT): Change type of + __len to size_t to avoid warnings. + 2003-04-18 Jes Sorensen * libc/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Sync with Linux diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 2d94b14..d7cd8fa 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,11 @@ +2003-04-19 Ulrich Drepper + + * sysdeps/unix/sysv/linux/unregister-atfork.c + (__unregister_atfork): Don't free memory not allocated dynamically. + + * semaphore.h: Remove __THROW marker from cancellation points. + * nptl/sysdeps/pthread/pthread.h: Likewise. + 2003-04-18 Ulrich Drepper * sysdeps/pthread/pthread.h: Don't mark pthread_testcancel, diff --git a/sysdeps/i386/i686/hp-timing.h b/sysdeps/i386/i686/hp-timing.h index afb5c71..41000ed 100644 --- a/sysdeps/i386/i686/hp-timing.h +++ b/sysdeps/i386/i686/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. i686 version. - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. @@ -149,7 +149,7 @@ typedef unsigned long long int hp_timing_t; do { \ char __buf[20]; \ char *__cp = _itoa (Val, __buf + sizeof (__buf), 10, 0); \ - int __len = (Len); \ + size_t __len = (Len); \ char *__dest = (Buf); \ while (__len-- > 0 && __cp < __buf + sizeof (__buf)) \ *__dest++ = *__cp++; \ -- 2.7.4