aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-20 08:49:27 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-20 08:49:27 +0000
commit676fde70c8940888bed31881ec9d0fd5c34f9dc0 (patch)
treebd680e1d2a7b269e51f1ffca66922ff4f2935bb4 /sysdeps/unix
parent057c823fbef95bf0ddb2a33c109b82488390ecec (diff)
downloadglibc-676fde70c8940888bed31881ec9d0fd5c34f9dc0.tar
glibc-676fde70c8940888bed31881ec9d0fd5c34f9dc0.tar.gz
glibc-676fde70c8940888bed31881ec9d0fd5c34f9dc0.tar.bz2
glibc-676fde70c8940888bed31881ec9d0fd5c34f9dc0.zip
Update.
2002-12-20 Ulrich Drepper <drepper@redhat.com> * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): For TLS builds add "tls" in the search path. * elf/ldconfig.c (is_hwcap_platform): Also recognize "tls". (path_hwcap): Recognize "tls". * sysdeps/unix/sysv/linux/i386/system.c (cancel_handler): Use __waitpid instead of waitpid.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r--sysdeps/unix/sysv/linux/i386/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/system.c b/sysdeps/unix/sysv/linux/i386/system.c
index aa33471fa4..c7287e473e 100644
--- a/sysdeps/unix/sysv/linux/i386/system.c
+++ b/sysdeps/unix/sysv/linux/i386/system.c
@@ -56,7 +56,7 @@ cancel_handler (void *arg)
{
__kill (SIGKILL, *(pid_t *) arg);
- TEMP_FAILURE_RETRY (waitpid (*(pid_t *) arg, NULL, 0));
+ TEMP_FAILURE_RETRY (__waitpid (*(pid_t *) arg, NULL, 0));
DO_LOCK ();