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

Diff for /src/usr.bin/make/timestamp.h between version 1.9 and 1.10

version 1.9, 2013/04/23 14:32:53 version 1.10, 2013/05/22 12:14:08
Line 36 
Line 36 
  * ts_set_from_stat(s, t):      grab date out of stat(2) buffer.   * ts_set_from_stat(s, t):      grab date out of stat(2) buffer.
  * b = is_strictly_before(t1, t2):   * b = is_strictly_before(t1, t2):
  *                              check whether t1 is before t2.   *                              check whether t1 is before t2.
  * stamp = timestamp2time_t(t): extract time_t from timestamp.  
  * ts_set_from_time_t(d, t):    create timestamp from time_t.   * ts_set_from_time_t(d, t):    create timestamp from time_t.
  * ts_set_from_now(n):          grab current date.  
  */   */
   
 /* sysresult = set_times(name): set modification times on a file.  /* sysresult = set_times(name): set modification times on a file.
  *                              system call results.   *                              system call results.
  */   */
   
 #define Init_Timestamp()        ts_set_from_now(now)  #define Init_Timestamp()        clock_gettime(CLOCK_REALTIME, &starttime)
   
 #define TMIN (sizeof(time_t) == sizeof(int32_t) ? INT32_MIN : INT64_MIN)  #define TMIN (sizeof(time_t) == sizeof(int32_t) ? INT32_MIN : INT64_MIN)
 #define ts_set_out_of_date(t)   (t).tv_sec = TMIN, (t).tv_nsec = 0  #define ts_set_out_of_date(t)   (t).tv_sec = TMIN, (t).tv_nsec = 0
Line 66 
Line 64 
         if (is_out_of_date(t)) \          if (is_out_of_date(t)) \
                 (t).tv_nsec++; \                  (t).tv_nsec++; \
 } while (0)  } while (0)
 #define ts_set_from_now(n)      clock_gettime(CLOCK_REALTIME, &(n))  
 #define timestamp2time_t(t)     ((t).tv_sec)  
   
 extern int set_times(const char *);  extern int set_times(const char *);
   
 extern struct timespec now;     /* The time at the start of this whole  extern struct timespec starttime;       /* The time at the start
                                  * process */                                           * of this whole process */
 extern char *time_to_string(struct timespec t);  extern char *time_to_string(struct timespec *);
   
   
 #endif  #endif

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10