From b24c0182c809fdf7f2aed1965fe2640704d45211 Mon Sep 17 00:00:00 2001 From: shivers Date: Sat, 2 May 1998 17:23:08 +0000 Subject: [PATCH] Proper values for wait/poll and wait/stopped-chidren. --- scsh/solaris/waitcodes.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scsh/solaris/waitcodes.scm b/scsh/solaris/waitcodes.scm index 09c832c..51f43e0 100644 --- a/scsh/solaris/waitcodes.scm +++ b/scsh/solaris/waitcodes.scm @@ -36,5 +36,5 @@ ;;; Flags. -(define wait/poll 1) ; Don't hang if nothing to wait for. -(define wait/stopped-children 2) ; Report on suspended subprocs, too. +(define wait/poll #o100) ; Don't hang if nothing to wait for. +(define wait/stopped-children 4) ; Report on suspended subprocs, too.