Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): remove unused variable not_parallel



details:   https://anonhg.NetBSD.org/src/rev/8394e1fe52e2
branches:  trunk
changeset: 943229:8394e1fe52e2
user:      rillig <rillig%NetBSD.org@localhost>
date:      Fri Aug 28 20:23:20 2020 +0000

description:
make(1): remove unused variable not_parallel

The variable malloc_options seems unused as well, but the manual page
for jemalloc(3) mentions it.

diffstat:

 usr.bin/make/job.c |  11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diffs (52 lines):

diff -r fe115e507e92 -r 8394e1fe52e2 usr.bin/make/job.c
--- a/usr.bin/make/job.c        Fri Aug 28 20:16:19 2020 +0000
+++ b/usr.bin/make/job.c        Fri Aug 28 20:23:20 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: job.c,v 1.220 2020/08/28 04:48:57 rillig Exp $ */
+/*     $NetBSD: job.c,v 1.221 2020/08/28 20:23:20 rillig Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -70,14 +70,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: job.c,v 1.220 2020/08/28 04:48:57 rillig Exp $";
+static char rcsid[] = "$NetBSD: job.c,v 1.221 2020/08/28 20:23:20 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)job.c      8.2 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: job.c,v 1.220 2020/08/28 04:48:57 rillig Exp $");
+__RCSID("$NetBSD: job.c,v 1.221 2020/08/28 20:23:20 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -167,7 +167,6 @@
  * this tracks the number of tokens currently "out" to build jobs.
  */
 int jobTokensRunning = 0;
-int not_parallel = 0;              /* set if .NOT_PARALLEL */
 
 /*
  * XXX: Avoid SunOS bug... FILENO() is fp->_file, and file
@@ -353,7 +352,7 @@
 static void JobSigUnlock(sigset_t *);
 static void JobSigReset(void);
 
-const char *malloc_options="A";
+const char *malloc_options MAKE_ATTR_UNUSED = "A"; /* see jemalloc(3) */
 
 static unsigned
 nfds_per_job(void)
@@ -906,7 +905,7 @@
  *     Always returns 0
  *
  * Side Effects:
- *     The command is tacked onto the end of postCommands's commands list.
+ *     The command is tacked onto the end of postCommands' commands list.
  *
  *-----------------------------------------------------------------------
  */



Home | Main Index | Thread Index | Old Index