whitespace
authorespie <espie@openbsd.org>
Thu, 15 Jul 2010 10:37:32 +0000 (10:37 +0000)
committerespie <espie@openbsd.org>
Thu, 15 Jul 2010 10:37:32 +0000 (10:37 +0000)
usr.bin/make/for.c
usr.bin/make/job.c
usr.bin/make/lowparse.c
usr.bin/make/main.c
usr.bin/make/parse.c

index 49126f6..f9ef535 100644 (file)
@@ -1,5 +1,5 @@
 /*     $OpenPackages$ */
-/*     $OpenBSD: for.c,v 1.40 2009/05/13 10:47:54 espie Exp $  */
+/*     $OpenBSD: for.c,v 1.41 2010/07/15 10:37:32 espie Exp $  */
 /*     $NetBSD: for.c,v 1.4 1996/11/06 17:59:05 christos Exp $ */
 
 /*
@@ -176,7 +176,7 @@ For_Eval(const char *line)
                LstNode ln;
                (void)fprintf(stderr, "For: Iterator ");
                for (ln = Lst_First(&arg->vars); ln != NULL; ln = Lst_Adv(ln))
-                       (void)fprintf(stderr, "%s ", 
+                       (void)fprintf(stderr, "%s ",
                            Var_LoopVarName(Lst_Datum(ln)));
                (void)fprintf(stderr, "List %s\n", sub);
        }
index b2c9da3..f99b3fd 100644 (file)
@@ -1,5 +1,5 @@
 /*     $OpenPackages$ */
-/*     $OpenBSD: job.c,v 1.118 2009/08/16 09:50:13 espie Exp $ */
+/*     $OpenBSD: job.c,v 1.119 2010/07/15 10:37:32 espie Exp $ */
 /*     $NetBSD: job.c,v 1.16 1996/11/06 17:59:08 christos Exp $        */
 
 /*
@@ -134,7 +134,7 @@ struct job_pipe {
        char buffer[JOB_BUFSIZE];
        size_t pos;
 };
-       
+
 typedef struct Job_ {
     pid_t      pid;        /* The child's process ID */
     GNode      *node;      /* The target the child is making */
@@ -165,7 +165,7 @@ static LIST job_pids;       /* a simple list that doesn't move that much */
 
 /* data structure linked to job handling through select */
 static fd_set *output_mask = NULL;     /* File descriptors to look for */
-                                
+
 static fd_set *actual_mask = NULL;     /* actual select argument */
 static int largest_fd = -1;
 static size_t mask_size = 0;
@@ -218,13 +218,13 @@ static void close_job_pipes(Job *);
 
 static void handle_all_jobs_output(void);
 
-/* handle_job_output(job, n, finish): 
+/* handle_job_output(job, n, finish):
  *     n = 0 or 1 (stdout/stderr), set finish to retrieve everything.
  */
 static void handle_job_output(Job *, int, bool);
 
 static void print_partial_buffer(struct job_pipe *, Job *, FILE *, size_t);
-static void print_partial_buffer_and_shift(struct job_pipe *, Job *, FILE *, 
+static void print_partial_buffer_and_shift(struct job_pipe *, Job *, FILE *,
     size_t);
 static bool print_complete_lines(struct job_pipe *, Job *, FILE *, size_t);
 
@@ -269,7 +269,7 @@ print_errors()
        if (p->n->lineno)
                Error(" %s %d (%s, line %lu of %s)",
                    type, p->code, p->n->name, p->n->lineno, p->n->fname);
-       else 
+       else
                Error(" %s %d (%s)", type, p->code, p->n->name);
        }
 }
@@ -278,7 +278,7 @@ static void
 banner(Job *job, FILE *out)
 {
        if (job->node != lastNode) {
-               if (DEBUG(JOBBANNER)) 
+               if (DEBUG(JOBBANNER))
                        (void)fprintf(out, "--- %s ---\n", job->node->name);
                lastNode = job->node;
        }
@@ -447,7 +447,7 @@ debug_printf(const char *fmt, ...)
                va_end(va);
        }
 }
-       
+
 static void
 close_job_pipes(Job *job)
 {
@@ -464,7 +464,7 @@ close_job_pipes(Job *job)
  *-----------------------------------------------------------------------
  * process_job_status  --
  *     Do processing for the given job including updating
- *     parents and starting new jobs as available/necessary. 
+ *     parents and starting new jobs as available/necessary.
  *
  * Side Effects:
  *     Some nodes may be put on the toBeMade queue.
@@ -484,7 +484,7 @@ process_job_status(Job *job, int status)
        int reason, code;
        bool     done;
 
-       debug_printf("Process %ld (%s) exited with status %d.\n", 
+       debug_printf("Process %ld (%s) exited with status %d.\n",
            (long)job->pid, job->node->name, status);
        /* parse status */
        if (WIFEXITED(status)) {
@@ -530,13 +530,13 @@ process_job_status(Job *job, int status)
 
        if (done || DEBUG(JOB)) {
                if (reason == JOB_EXITED) {
-                       debug_printf("Process %ld (%s) exited.\n", 
+                       debug_printf("Process %ld (%s) exited.\n",
                            (long)job->pid, job->node->name);
                        if (code != 0) {
                                banner(job, stdout);
                                (void)fprintf(stdout, "*** Error code %d %s\n",
                                    code,
-                                   (job->node->type & OP_IGNORE) ? 
+                                   (job->node->type & OP_IGNORE) ?
                                    "(ignored)" : "");
 
                                if (job->node->type & OP_IGNORE) {
@@ -545,7 +545,7 @@ process_job_status(Job *job, int status)
                                }
                        } else if (DEBUG(JOB)) {
                                (void)fprintf(stdout,
-                                   "*** %ld (%s) Completed successfully\n", 
+                                   "*** %ld (%s) Completed successfully\n",
                                    (long)job->pid, job->node->name);
                        }
                } else {
@@ -572,7 +572,7 @@ process_job_status(Job *job, int status)
        }
        free(job);
 
-       if (errors && !keepgoing && 
+       if (errors && !keepgoing &&
            aborting != ABORT_INTERRUPT)
                aborting = ABORT_ERROR;
 
@@ -580,12 +580,12 @@ process_job_status(Job *job, int status)
                Finish(errors);
 }
 
-static void 
+static void
 prepare_pipe(struct job_pipe *p, int *fd)
 {
        p->pos = 0;
        (void)fcntl(fd[0], F_SETFD, FD_CLOEXEC);
-       p->fd = fd[0]; 
+       p->fd = fd[0];
        close(fd[1]);
 
        if (output_mask == NULL || p->fd > largest_fd) {
@@ -595,11 +595,11 @@ prepare_pipe(struct job_pipe *p, int *fd)
                ofdn = howmany(largest_fd+1, NFDBITS);
 
                if (fdn != ofdn) {
-                       output_mask = emult_realloc(output_mask, fdn, 
+                       output_mask = emult_realloc(output_mask, fdn,
                            sizeof(fd_mask));
-                       memset(((char *)output_mask) + ofdn * sizeof(fd_mask), 
+                       memset(((char *)output_mask) + ofdn * sizeof(fd_mask),
                            0, (fdn-ofdn) * sizeof(fd_mask));
-                       actual_mask = emult_realloc(actual_mask, fdn, 
+                       actual_mask = emult_realloc(actual_mask, fdn,
                            sizeof(fd_mask));
                        mask_size = fdn * sizeof(fd_mask);
                }
@@ -612,7 +612,7 @@ prepare_pipe(struct job_pipe *p, int *fd)
 /*-
  *-----------------------------------------------------------------------
  * JobExec --
- *     Execute the shell for the given job. Called from JobStart 
+ *     Execute the shell for the given job. Called from JobStart
  *
  * Side Effects:
  *     A shell is executed, outputs is altered and the Job structure added
@@ -633,7 +633,7 @@ JobExec(Job *job)
 
        setup_engine(1);
 
-       /* Create the pipe by which we'll get the shell's output. 
+       /* Create the pipe by which we'll get the shell's output.
         */
        if (pipe(fdout) == -1)
                Punt("Cannot create pipe: %s", strerror(errno));
@@ -703,7 +703,7 @@ JobExec(Job *job)
 
                (void)fprintf(stdout, "Running %ld (%s)\n", (long)cpid,
                    job->node->name);
-               for (ln = Lst_First(&job->node->commands); ln != NULL ; 
+               for (ln = Lst_First(&job->node->commands); ln != NULL ;
                    ln = Lst_Adv(ln))
                        fprintf(stdout, "\t%s\n", (char *)Lst_Datum(ln));
                (void)fflush(stdout);
@@ -928,7 +928,7 @@ print_complete_lines(struct job_pipe *p, Job *job, FILE *out, size_t limit)
  *-----------------------------------------------------------------------
  */
 static void
-handle_pipe(struct job_pipe *p, 
+handle_pipe(struct job_pipe *p,
        Job *job, FILE *out, bool finish)
 {
        int nr;                 /* number of bytes read */
@@ -1000,7 +1000,7 @@ remove_job(LstNode ln, int status)
  * Notes:
  *     We do waits, blocking or not, according to the wisdom of our
  *     caller, until there are no more children to report. For each
- *     job, call process_job_status to finish things off. 
+ *     job, call process_job_status to finish things off.
  *-----------------------------------------------------------------------
  */
 void
@@ -1159,7 +1159,7 @@ Job_Full()
  * Job_Full --
  *     See if the job table is full. It is considered full
  *     if we are in the process of aborting OR if we have
- *     reached/exceeded our quota. 
+ *     reached/exceeded our quota.
  *
  * Results:
  *     true if the job table is full, false otherwise
@@ -1170,14 +1170,14 @@ can_start_job(void)
 {
        if (Job_Full() || expensive_job)
                return false;
-       else 
+       else
                return true;
 }
 
 /*-
  *-----------------------------------------------------------------------
  * Job_Empty --
- *     See if the job table is empty.  
+ *     See if the job table is empty.
  *
  * Results:
  *     true if it is. false if it ain't.
@@ -1312,7 +1312,7 @@ Job_AbortAll(void)
        aborting = ABORT_ERROR;
 
        if (nJobs) {
-               for (ln = Lst_First(&runningJobs); ln != NULL; 
+               for (ln = Lst_First(&runningJobs); ln != NULL;
                    ln = Lst_Adv(ln)) {
                        job = (Job *)Lst_Datum(ln);
 
index b0bee9a..0237cf1 100644 (file)
@@ -1,5 +1,5 @@
 /*     $OpenPackages$ */
-/*     $OpenBSD: lowparse.c,v 1.22 2007/09/22 10:43:38 espie Exp $ */
+/*     $OpenBSD: lowparse.c,v 1.23 2010/07/15 10:41:11 espie Exp $ */
 
 /* low-level parsing functions. */
 
@@ -238,7 +238,7 @@ Parse_ReadNextConditionalLine(Buffer linebuf)
                                        current->lineno++;
                        }
                        if (c == EOF) {
-                               Parse_Error(PARSE_FATAL, 
+                               Parse_Error(PARSE_FATAL,
                                    "Unclosed conditional");
                                return NULL;
                        }
@@ -454,7 +454,7 @@ Parse_ReportErrors(void)
                while (Parse_NextFile())
                        ;
 #endif
-               fprintf(stderr, 
+               fprintf(stderr,
                    "Fatal errors encountered -- cannot continue\n");
                exit(1);
        } else
index f1c8cf8..d78accb 100644 (file)
@@ -1,5 +1,5 @@
 /*     $OpenPackages$ */
-/*     $OpenBSD: main.c,v 1.93 2010/02/03 20:45:44 miod Exp $ */
+/*     $OpenBSD: main.c,v 1.94 2010/07/15 10:41:11 espie Exp $ */
 /*     $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $    */
 
 /*
@@ -640,7 +640,7 @@ read_all_make_rules(bool noBuiltins, bool read_depend,
                        (void)ReadMakefile("Makefile", d);
 
        /* read a .depend file, if it exists, and we're not building depend */
-       
+
        if (read_depend)
                (void)ReadMakefile(".depend", d);
 }
index 46f98cd..d9c09d0 100644 (file)
@@ -1,5 +1,5 @@
 /*     $OpenPackages$ */
-/*     $OpenBSD: parse.c,v 1.97 2009/08/16 09:51:12 espie Exp $        */
+/*     $OpenBSD: parse.c,v 1.98 2010/07/15 10:41:11 espie Exp $        */
 /*     $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $      */
 
 /*
@@ -300,7 +300,7 @@ ParseDoOp(GNode **gnp, unsigned int op)
         */
        if (((op & OP_OPMASK) != (gn->type & OP_OPMASK)) &&
            !OP_NOP(gn->type) && !OP_NOP(op)) {
-               Parse_Error(PARSE_FATAL, "Inconsistent operator for %s", 
+               Parse_Error(PARSE_FATAL, "Inconsistent operator for %s",
                    gn->name);
                return 0;
        }
@@ -644,7 +644,7 @@ parse_do_targets(Lst paths, unsigned int *op, const char *line)
                        if (gtargets.n > 0 &&
                            (strcmp(gtargets.a[0]->name, "<<<<<<<") == 0 ||
                            strcmp(gtargets.a[0]->name, ">>>>>>>") == 0)) {
-                               Parse_Error(PARSE_FATAL, 
+                               Parse_Error(PARSE_FATAL,
     "Need an operator (likely from a cvs update conflict)");
                        } else {
                                Parse_Error(PARSE_FATAL, "Need an operator");
@@ -711,7 +711,7 @@ handle_special_targets(Lst paths)
                specType = SPECIAL_NONE;
                return 0;
        } else if (seen_special != 1) {
-               Parse_Error(PARSE_FATAL, 
+               Parse_Error(PARSE_FATAL,
                    "Mixing special targets is not allowed");
                dump_targets();
                return 0;