[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.28 and 1.29

version 1.28, 2013/05/30 08:58:38 version 1.29, 2017/06/22 17:08:20
Line 129 
Line 129 
                          *      made (used only in compat mode)                           *      made (used only in compat mode)
                          *  ABORTED - The target was aborted due to                           *  ABORTED - The target was aborted due to
                          *      an error making an inferior.                           *      an error making an inferior.
                          *  CYCLE - Marked as potentially being part of  
                          *      a graph cycle. If we come back to a  
                          *      node marked this way, it is printed  
                          *      and 'built_status' is changed to ENDCYCLE.  
                          *  ENDCYCLE - the cycle has been completely  
                          *      printed. Go back and unmark all its  
                          *      members.  
                          */                           */
     char *path;         /* The full pathname of the file */      char *path;         /* The full pathname of the file */
     unsigned int type;  /* Its type (see the OP flags, below) */      unsigned int type;  /* Its type (see the OP flags, below) */
     int order;          /* Its wait weight */      int order;          /* Its wait weight */
   
     int unmade;         /* The number of unmade children */      int unmade;         /* The number of unmade children */
       int in_cycle;       /* cycle detection */
   
     struct timespec mtime;      /* Its modification time */      struct timespec mtime;      /* Its modification time */
     GNode *youngest;            /* Its youngest child */      GNode *youngest;            /* Its youngest child */

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29