From b737c784e34b0e1af014cb828ef37d5b6d73c3e2 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 19 Jun 2000 21:30:27 +0000 Subject: Paranoia changes to ensure that anything touched by a signal handler and the main code is declared as VOLATILE SIG_ATOMIC_T. Jeremy. --- source/lib/select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/lib/select.c') diff --git a/source/lib/select.c b/source/lib/select.c index cd77d1209f5..48bc61ab771 100644 --- a/source/lib/select.c +++ b/source/lib/select.c @@ -30,7 +30,7 @@ */ static int initialised; static int select_pipe[2]; -static unsigned pipe_written, pipe_read; +static VOLATILE SIG_ATOMIC_T pipe_written, pipe_read; /******************************************************************* -- cgit