From 7357e8836f7c742602f59cc8f2b97382634c59b8 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 29 Nov 2008 16:46:07 +0000 Subject: shring sugnal-relared stuff a bit. BTW why constant memset is not inlined by gcc? text data bss dec hex filename - 38015 18096 8636 64747 fceb lib/libpthread-0.9.30-svn.so + 38001 18096 8636 64733 fcdd lib/libpthread-0.9.30-svn.so - 274842 1835 19012 295689 48309 lib/libuClibc-0.9.30-svn.so + 274779 1835 19012 295626 482ca lib/libuClibc-0.9.30-svn.so --- libc/signal/sigwait.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libc/signal/sigwait.c') diff --git a/libc/signal/sigwait.c b/libc/signal/sigwait.c index c902ee888..9b2c32079 100644 --- a/libc/signal/sigwait.c +++ b/libc/signal/sigwait.c @@ -28,8 +28,8 @@ int __sigwait (const sigset_t *set, int *sig) attribute_hidden; int __sigwait (const sigset_t *set, int *sig) { - int ret = 1; - if ((ret = sigwaitinfo(set, NULL)) != -1) { + int ret = sigwaitinfo(set, NULL); + if (ret != -1) { *sig = ret; return 0; } @@ -41,7 +41,7 @@ int __sigwait (const sigset_t *set, int *sig) /* libc_hidden_proto(sigaction) */ /* libc_hidden_proto(sigsuspend) */ -static int was_sig; /* obviously not thread-safe */ +static smallint was_sig; /* obviously not thread-safe */ static void ignore_signal(int sig) { was_sig = sig; -- cgit v1.2.3