diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-01 01:24:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-01 01:24:00 +0000 |
commit | 211d90c524db8fcc32a134eaf80d969eff8c3862 (patch) | |
tree | 167181f1688e516846554fa6468efbc01a915de8 /nptl/tst-cancel-wrappers.sh | |
parent | 42b2395dcee5be5a4c2eb0faba8e78f682ab68ad (diff) | |
download | glibc-211d90c524db8fcc32a134eaf80d969eff8c3862.tar glibc-211d90c524db8fcc32a134eaf80d969eff8c3862.tar.gz glibc-211d90c524db8fcc32a134eaf80d969eff8c3862.tar.bz2 glibc-211d90c524db8fcc32a134eaf80d969eff8c3862.zip |
Update.
* sysdeps/unix/sysv/linux/ia64/lowlevellock.h (__lll_mutex_lock):
Use atomic_exchange_and_add instead of __lll_add.
(__lll_mutex_timedlock): Likewise.
Patch by Ian Wienand.
2003-03-24 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h
(SINGLE_THREAD_P): Fix typo.
* tst-cancel-wrappers.sh: Handle '.'ed symbols.
2003-03-31 Ulrich Drepper <drepper@redhat.com>
* Makefile (tests): Add tst-align.
* tst-align.c: New file.
* sysdeps/i386/Makefile: Define CFLAGS-tst-align.
* sysdeps/x86_64/Makefile: Likewise.
* tst-tsd2.c: Add casts to avoid warnings.
Diffstat (limited to 'nptl/tst-cancel-wrappers.sh')
-rw-r--r-- | nptl/tst-cancel-wrappers.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nptl/tst-cancel-wrappers.sh b/nptl/tst-cancel-wrappers.sh index 4561c02ae8..e2035c7ed5 100644 --- a/nptl/tst-cancel-wrappers.sh +++ b/nptl/tst-cancel-wrappers.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Test whether all cancellable functions are cancellable. +# Test whether all cancelable functions are cancelable. # Copyright (C) 2002, 2003 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Jakub Jelinek <jakub@redhat.com>, 2002. @@ -82,9 +82,9 @@ C["__xpg_sigpause"]=1 { if (C[$1] && $2 ~ /^[TW]$/) seen=$1 - else if ($1 ~ /^__(libc|pthread)_enable_asynccancel$/ && $2 == "U") + else if ($1 ~ /^([.]|)__(libc|pthread)_enable_asynccancel$/ && $2 == "U") seen_enable=1 - else if ($1 ~ /^__(libc|pthread)_disable_asynccancel$/ && $2 == "U") + else if ($1 ~ /^([.]|)__(libc|pthread)_disable_asynccancel$/ && $2 == "U") seen_disable=1 } END { |