diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-11-28 00:56:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-11-28 00:56:18 +0000 |
commit | dca99d27b7b39c3df67768c4b2ed057f70902f92 (patch) | |
tree | 86fa88440fc1d696c4fa5c76063fcb6aff9d061b /nptl/sysdeps/unix | |
parent | f78deea65fee170ed353a44764d53c55cced6000 (diff) | |
download | glibc-dca99d27b7b39c3df67768c4b2ed057f70902f92.tar glibc-dca99d27b7b39c3df67768c4b2ed057f70902f92.tar.gz glibc-dca99d27b7b39c3df67768c4b2ed057f70902f92.tar.bz2 glibc-dca99d27b7b39c3df67768c4b2ed057f70902f92.zip |
Update.
* sysdeps/unix/sysv/linux/raise.c (raise): Use INTERNAL_SYSCALL if
possible since gettid cannot fail.
Diffstat (limited to 'nptl/sysdeps/unix')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/raise.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/raise.c b/nptl/sysdeps/unix/sysv/linux/raise.c index 009f32ad30..2a09d18f73 100644 --- a/nptl/sysdeps/unix/sysv/linux/raise.c +++ b/nptl/sysdeps/unix/sysv/linux/raise.c @@ -31,7 +31,12 @@ raise (sig) pid_t selftid = pd->tid; if (selftid == 0) { + /* This system call is not supposed to fail. */ +#ifdef INTERNAL_SYSCALL + selftid = INTERNAL_SYSCALL (gettid, 0); +#else selftid = INLINE_SYSCALL (gettid, 0); +#endif THREAD_SETMEM (pd, tid, selftid); } |