From 2ca0a9a7fbfb8fa635bb19255ab351359ef0d32c Mon Sep 17 00:00:00 2001 From: cracauer Date: Tue, 25 Aug 1998 09:33:34 +0000 Subject: Improve bookkeeping of in_waitcmd and style fixes. Submitted by: Bruce Evans --- bin/sh/jobs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/sh/jobs.h') diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h index 3182a65..b164b2f2 100644 --- a/bin/sh/jobs.h +++ b/bin/sh/jobs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)jobs.h 8.2 (Berkeley) 5/4/95 - * $Id: jobs.h,v 1.6 1997/08/18 02:53:20 steve Exp $ + * $Id: jobs.h,v 1.7 1998/08/24 10:20:36 cracauer Exp $ */ /* Mode argument to forkshell. Don't change FORK_FG or FORK_BG. */ @@ -42,7 +42,7 @@ #define FORK_BG 1 #define FORK_NOJOB 2 -#include /* For sig_atomic_t */ +#include /* for sig_atomic_t */ /* * A job structure contains information about a job. A job is either a @@ -78,8 +78,8 @@ struct job { extern pid_t backgndpid; /* pid of last background process */ extern int job_warning; /* user was warned about stopped jobs */ -extern int in_waitcmd; /* Are we in wait? */ -extern volatile sig_atomic_t breakwaitcmd; /* Should wait be terminated? */ +extern int in_waitcmd; /* are we in waitcmd()? */ +extern volatile sig_atomic_t breakwaitcmd; /* should wait be terminated? */ void setjobctl __P((int)); int fgcmd __P((int, char **)); -- cgit v1.1