diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-08 08:25:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-08 08:25:05 +0000 |
commit | bdb04f922004ff8433591f138e40c09722836c45 (patch) | |
tree | 965b2db38d2cd7f9fb5114a10d53e3ddcc2bfad4 /nptl/pt-sigwait.c | |
parent | 3335502bec2220c7d1e89929d489c1a91a1d862b (diff) | |
download | glibc-bdb04f922004ff8433591f138e40c09722836c45.tar.gz glibc-bdb04f922004ff8433591f138e40c09722836c45.tar.xz glibc-bdb04f922004ff8433591f138e40c09722836c45.zip |
Update.
* scripts/output-format.sed: Fix bug in one of the s expressions which used / for one too many things.
Diffstat (limited to 'nptl/pt-sigwait.c')
-rw-r--r-- | nptl/pt-sigwait.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/nptl/pt-sigwait.c b/nptl/pt-sigwait.c index efd05ed7d9..88dca893b8 100644 --- a/nptl/pt-sigwait.c +++ b/nptl/pt-sigwait.c @@ -27,13 +27,11 @@ int sigwait (const sigset_t *set, int *sig) { - int result; - int oldtype; - - CANCEL_ASYNC (oldtype); + int oldtype = CANCEL_ASYNC (); #ifdef INTERNAL_SYSCALL - result = INTERNAL_SYSCALL (rt_sigtimedwait, 4, set, NULL, NULL, _NSIG / 8); + int result = INTERNAL_SYSCALL (rt_sigtimedwait, 4, set, NULL, NULL, + _NSIG / 8); if (! INTERNAL_SYSCALL_ERROR_P (result)) { *sig = result; @@ -42,7 +40,7 @@ sigwait (const sigset_t *set, int *sig) else result = INTERNAL_SYSCALL_ERRNO (result); #elif defined INLINE_SYSCALL - result = INLINE_SYSCALL (rt_sigtimedwait, 4, set, NULL, NULL, _NSIG / 8); + int result = INLINE_SYSCALL (rt_sigtimedwait, 4, set, NULL, NULL, _NSIG / 8); if (result != -1) { *sig = result; @@ -51,7 +49,7 @@ sigwait (const sigset_t *set, int *sig) else result = errno; #else - result = __sigwait (set, sig); + int result = __sigwait (set, sig); #endif CANCEL_RESET (oldtype); |