[BACK]Return to gnode.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/gnode.h between version 1.25 and 1.26

version 1.25, 2013/05/14 18:47:40 version 1.26, 2013/05/22 12:14:08
Line 37 
Line 37 
 #ifndef SYMTABLE_H  #ifndef SYMTABLE_H
 #include "symtable.h"  #include "symtable.h"
 #endif  #endif
   #include <assert.h>
   
 /*-  /*-
  * The structure for an individual graph node. Each node has several   * The structure for an individual graph node. Each node has several
Line 143 
Line 144 
     int unmade;         /* The number of unmade children */      int unmade;         /* The number of unmade children */
   
     struct timespec mtime;      /* Its modification time */      struct timespec mtime;      /* Its modification time */
     struct timespec cmtime;     /* The modification time of its youngest      GNode *youngest;            /* Its youngest child */
                                  * child */  
   
     GNode *youngest;  
     GNode *impliedsrc;      GNode *impliedsrc;
     LIST cohorts;       /* Other nodes for the :: operator */      LIST cohorts;       /* Other nodes for the :: operator */
     LIST parents;       /* Nodes that depend on this one */      LIST parents;       /* Nodes that depend on this one */

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26