From a73ab6df858d2080813a38d5d8af958afb43cef0 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 5 Jan 2003 20:10:01 +0000 Subject: Update. * tst-cancel-wrappers.sh: Invoke gawk not awk since we use GNU awk features. Reported by Marijn Ros . --- nptl/ChangeLog | 3 +++ nptl/sysdeps/i386/i486/bits/atomic.h | 5 +++-- nptl/tst-cancel-wrappers.sh | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) (limited to 'nptl') diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 2642e3956e..ca298c94a2 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,5 +1,8 @@ 2003-01-05 Ulrich Drepper + * tst-cancel-wrappers.sh: Invoke gawk not awk since we use GNU awk + features. Reported by Marijn Ros . + * sysdeps/unix/sysv/linux/jmp-unwind.c: Include . Use __libc_pthread_functions array if SHARED. diff --git a/nptl/sysdeps/i386/i486/bits/atomic.h b/nptl/sysdeps/i386/i486/bits/atomic.h index 4389987425..5d27326825 100644 --- a/nptl/sysdeps/i386/i486/bits/atomic.h +++ b/nptl/sysdeps/i386/i486/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. @@ -80,7 +80,8 @@ typedef uintmax_t uatomic_max_t; not in the moment. Using it would mean causing portability problems since not many other 32-bit architectures have support for such an operation. So don't define any code for now. If it is - really going to be used the code below can be used. */ + really going to be used the code below can be used on Intel Pentium + and later, but NOT on i486. */ #if 1 # define __arch_compare_and_exchange_64_acq(mem, newval, oldval) \ (abort (), 0) diff --git a/nptl/tst-cancel-wrappers.sh b/nptl/tst-cancel-wrappers.sh index 54c5e0f23a..5b3944bab7 100644 --- a/nptl/tst-cancel-wrappers.sh +++ b/nptl/tst-cancel-wrappers.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test whether all cancellable functions are cancellable. -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Jakub Jelinek , 2002. @@ -20,7 +20,7 @@ # 02111-1307 USA. while [ $# -gt 0 ]; do - ( nm -P $1; echo 'end[end]:' ) | awk ' BEGIN { + ( nm -P $1; echo 'end[end]:' ) | gawk ' BEGIN { C["accept"]=1 C["close"]=1 C["connect"]=1 -- cgit v1.2.3