[BACK]Return to time.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/time.h between version 1.24 and 1.25

version 1.24, 2013/04/02 05:16:14 version 1.25, 2013/06/17 19:11:54
Line 101 
Line 101 
 #endif  #endif
 #endif  #endif
   
   #if __POSIX_VISIBLE >= 200112
   #ifndef _PID_T_DEFINED_
   #define _PID_T_DEFINED_
   typedef __pid_t         pid_t;
   #endif
   #endif
   
 struct tm {  struct tm {
         int     tm_sec;         /* seconds after the minute [0-60] */          int     tm_sec;         /* seconds after the minute [0-60] */
         int     tm_min;         /* minutes after the hour [0-59] */          int     tm_min;         /* minutes after the hour [0-59] */
Line 152 
Line 159 
 int clock_gettime(clockid_t, struct timespec *);  int clock_gettime(clockid_t, struct timespec *);
 int clock_settime(clockid_t, const struct timespec *);  int clock_settime(clockid_t, const struct timespec *);
 int nanosleep(const struct timespec *, struct timespec *);  int nanosleep(const struct timespec *, struct timespec *);
   #endif
   
   #if __POSIX_VISIBLE >= 200112
   int clock_getcpuclockid(pid_t, clockid_t *);
 #endif  #endif
   
 #if __BSD_VISIBLE  #if __BSD_VISIBLE

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