From e0637da1c74bfbf640e049329c955267b4922c19 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Wed, 24 Apr 1996 03:28:51 +0000 Subject: [PATCH] (signal_allowed): For SIGIO/SIGURG, add a new variable, LUCKY, to use instead of setting D to -1 (which fucks things up). --- hurd/hurdsig.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 6085ab1..3ba5429 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -1013,8 +1013,9 @@ signal_allowed (int signo, mach_port_t refport) authorizing SIGIO and SIGURG signals properly. */ int d; + int lucky = 0; /* True if we find a match for REFPORT. */ __mutex_lock (&_hurd_dtable_lock); - for (d = 0; (unsigned int) d < (unsigned int) _hurd_dtablesize; ++d) + for (d = 0; !lucky && (unsigned) d < (unsigned) _hurd_dtablesize; ++d) { struct hurd_userlink ulink; io_t port; @@ -1026,13 +1027,13 @@ signal_allowed (int signo, mach_port_t refport) { if (refport == asyncid) /* Break out of the loop on the next iteration. */ - d = -1; + lucky = 1; __mach_port_deallocate (__mach_task_self (), asyncid); } _hurd_port_free (&_hurd_dtable[d]->port, &ulink, port); } /* If we found a lucky winner, we've set D to -1 in the loop. */ - if (d < 0) + if (lucky) goto win; } } -- 2.7.4