1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
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.
This commit is contained in:
Ulrich Drepper
2002-12-20 08:49:27 +00:00
parent 057c823fbe
commit 676fde70c8
4 changed files with 41 additions and 8 deletions

View File

@@ -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 ();