diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-15 01:23:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-15 01:23:02 +0000 |
commit | 574b892ef1054ea999a136b3cb2321a65e3f1a17 (patch) | |
tree | 4457b51f3d0318c24de35da02ce2d90ac818beb8 /linuxthreads/tst-cancel-wrappers.sh | |
parent | 086311a933ff53f8c064d833e69fe228bc7e8886 (diff) | |
download | glibc-574b892ef1054ea999a136b3cb2321a65e3f1a17.tar.gz glibc-574b892ef1054ea999a136b3cb2321a65e3f1a17.tar.xz glibc-574b892ef1054ea999a136b3cb2321a65e3f1a17.zip |
Update.
2003-01-14 Guido Guenther <agx@sigxcpu.org> * sysdeps/unix/sysv/linux/mips/sysdep.h (INTERNAL_SYSCALL, INTERNAL_SYSCALL_DECL, INTERNAL_SYSCALL_ERRNO, INTERNAL_SYSCALL_ERROR_P, INLINE_SYSCALL): Define. 2003-01-14 Steven Munroe <sjmunroe@us.ibm.com> * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (INTERNAL_SYSCALL): Make use of ERR parameter. (INTERNAL_SYSCALL_DECL, INTERNAL_SYSCALL_ERRNO, INTERNAL_SYSCALL_ERROR_P): Adjust accordingly. (INLINE_SYSCALL): Make use of INTERNAL_SYSCALL. * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: New file. Patch by Denis Zaitsev <zzz@cd-club.ru>. that %eax is modified. Reported by Denis Zaitsev <zzz@cd-club.ru>.
Diffstat (limited to 'linuxthreads/tst-cancel-wrappers.sh')
-rw-r--r-- | linuxthreads/tst-cancel-wrappers.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/tst-cancel-wrappers.sh b/linuxthreads/tst-cancel-wrappers.sh index c9ed40b722..e2035c7ed5 100644 --- a/linuxthreads/tst-cancel-wrappers.sh +++ b/linuxthreads/tst-cancel-wrappers.sh @@ -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 { |