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): improve documentation of Candidate fields



details:   https://anonhg.NetBSD.org/src/rev/51192de2844f
branches:  trunk
changeset: 946285:51192de2844f
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sun Nov 22 12:00:27 2020 +0000

description:
make(1): improve documentation of Candidate fields

diffstat:

 usr.bin/make/suff.c |  29 ++++++++++++++++++++---------
 1 files changed, 20 insertions(+), 9 deletions(-)

diffs (50 lines):

diff -r 1f76b0e90733 -r 51192de2844f usr.bin/make/suff.c
--- a/usr.bin/make/suff.c       Sun Nov 22 11:50:31 2020 +0000
+++ b/usr.bin/make/suff.c       Sun Nov 22 12:00:27 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: suff.c,v 1.295 2020/11/22 11:50:31 rillig Exp $        */
+/*     $NetBSD: suff.c,v 1.296 2020/11/22 12:00:27 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -114,7 +114,7 @@
 #include "dir.h"
 
 /*     "@(#)suff.c     8.4 (Berkeley) 3/21/94" */
-MAKE_RCSID("$NetBSD: suff.c,v 1.295 2020/11/22 11:50:31 rillig Exp $");
+MAKE_RCSID("$NetBSD: suff.c,v 1.296 2020/11/22 12:00:27 rillig Exp $");
 
 #define SUFF_DEBUG0(text) DEBUG0(SUFF, text)
 #define SUFF_DEBUG1(fmt, arg1) DEBUG1(SUFF, fmt, arg1)
@@ -187,13 +187,24 @@
  * node is finally chosen to be made.
  */
 typedef struct Candidate {
-    char *file;                        /* The file to look for */
-    char *pref;                        /* Prefix from which file was formed */
-    Suffix *suff;              /* The suffix on the file */
-    struct Candidate *parent;  /* The candidate for which this is a source */
-    GNode *node;               /* The node describing the file */
-    int numChildren;           /* Count of existing children (so we don't free
-                                * this thing too early or never nuke it) */
+    /* The file or node to look for. */
+    char *file;
+    /* The prefix from which file was formed.
+     * Its memory is shared among all candidates. */
+    /* XXX: rename to prefix */
+    char *pref;
+    /* The suffix on the file. */
+    Suffix *suff;
+
+    /* The candidate that can be made from this,
+     * or NULL for the top-level candidate. */
+    struct Candidate *parent;
+    /* The node describing the file. */
+    GNode *node;
+
+    /* Count of existing children, only used for memory management, so we
+     * don't free this candidate too early or too late. */
+    int numChildren;
 #ifdef DEBUG_SRC
     CandidateList *childrenList;
 #endif



Home | Main Index | Thread Index | Old Index