=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/job.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- src/usr.bin/make/job.h 1996/06/26 05:36:34 1.2 +++ src/usr.bin/make/job.h 1996/11/30 21:08:57 1.3 @@ -1,5 +1,5 @@ -/* $OpenBSD: job.h,v 1.2 1996/06/26 05:36:34 deraadt Exp $ */ -/* $NetBSD: job.h,v 1.4 1995/06/14 15:19:26 christos Exp $ */ +/* $OpenBSD: job.h,v 1.3 1996/11/30 21:08:57 millert Exp $ */ +/* $NetBSD: job.h,v 1.5 1996/11/06 17:59:10 christos Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -38,7 +38,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * from: @(#)job.h 5.3 (Berkeley) 6/1/90 + * from: @(#)job.h 8.1 (Berkeley) 6/6/93 */ /*- @@ -54,14 +54,14 @@ /* * The SEL_ constants determine the maximum amount of time spent in select * 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 + * seconds and SEL_USEC is the number of micro-seconds */ #define SEL_SEC 0 #define SEL_USEC 500000 /*- - * Job Table definitions. + * Job Table definitions. * * Each job has several things associated with it: * 1) The process id of the child shell @@ -82,11 +82,11 @@ * 6) An identifier provided by and for the exclusive use of the * Rmt module. * 7) A word of flags which determine how the module handles errors, - * echoing, etc. for the job + * echoing, etc. for the job * * The job "table" is kept as a linked Lst in 'jobs', with the number of * active jobs maintained in the 'nJobs' variable. At no time will this - * exceed the value of 'maxJobs', initialized by the Job_Init function. + * exceed the value of 'maxJobs', initialized by the Job_Init function. * * When a job is finished, the Make_Update function is called on each of the * parents of the node which was just remade. This takes care of the upward @@ -108,7 +108,7 @@ * if we can't export it and maxLocal is 0 */ #define JOB_IGNDOTS 0x008 /* Ignore "..." lines when processing * commands */ -#define JOB_REMOTE 0x010 /* Job is running remotely */ +#define JOB_REMOTE 0x010 /* Job is running remotely */ #define JOB_FIRST 0x020 /* Job is first job for the node */ #define JOB_REMIGRATE 0x040 /* Job needs to be remigrated */ #define JOB_RESTART 0x080 /* Job needs to be completely restarted */ @@ -196,7 +196,7 @@ char *errCheck; /* string to turn error checking on */ char *ignErr; /* string to turn off error checking */ /* - * command-line flags + * command-line flags */ char *echo; /* echo commands */ char *exit; /* exit on error */