From d11fc0ae6fa8658c83ca65b8b5c25562f71aaae2 Mon Sep 17 00:00:00 2001 From: Scott Long Date: Fri, 19 Dec 2003 11:18:37 +0000 Subject: Change the select timeout from 100ms to 2 seconds now that SIGCHILD is handled. --- usr.bin/make/job.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/make/job.h b/usr.bin/make/job.h index ba80c2ff0129..284b16bdab7b 100644 --- a/usr.bin/make/job.h +++ b/usr.bin/make/job.h @@ -56,8 +56,8 @@ * before coming out to see if a child has finished. SEL_SEC is the number of * seconds and SEL_USEC is the number of micro-seconds */ -#define SEL_SEC 0 -#define SEL_USEC 100000 +#define SEL_SEC 2 +#define SEL_USEC 0 #endif /* !USE_KQUEUE */ -- cgit v1.3