From 209fef467e39ed251fff3943e5399dbd343a3587 Mon Sep 17 00:00:00 2001 From: leitner Date: Tue, 21 Oct 2003 12:40:41 +0000 Subject: [PATCH] Big Duh! _SIGIO and SIGIO look too close --- io/io_canread.c | 2 +- io/io_canwrite.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/io/io_canread.c b/io/io_canread.c index b7261b8..6050723 100644 --- a/io/io_canread.c +++ b/io/io_canread.c @@ -32,7 +32,7 @@ int64 io_canread() { alt_firstread=r; debug_printf(("io_canread: enqueue %ld in alt read queue (next is %ld)\n",alt_firstread,e->next_read)); #endif - if (io_waitmode!=SIGIO) + if (io_waitmode!=_SIGIO) e->canread=0; return r; } diff --git a/io/io_canwrite.c b/io/io_canwrite.c index 9875e6e..153eb19 100644 --- a/io/io_canwrite.c +++ b/io/io_canwrite.c @@ -32,7 +32,7 @@ int64 io_canwrite() { alt_firstwrite=r; debug_printf(("io_canwrite: enqueue %ld in alt write queue (next is %ld)\n",alt_firstwrite,e->next_write)); #endif - if (io_waitmode!=SIGIO) + if (io_waitmode!=_SIGIO) e->canwrite=0; return r; }