Advertisement
Guest User

Untitled

a guest
Mar 17th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. 106 #ifndef _TIMESPEC_DEFINED
  2. 107 #define _TIMESPEC_DEFINED
  3. 108 struct timespec {
  4. 109 time_t tv_sec; /* Seconds */
  5. 110 long tv_nsec; /* Nanoseconds */
  6. 111 };
  7. 112
  8. 113 struct itimerspec {
  9. 114 struct timespec it_interval; /* Timer period */
  10. 115 struct timespec it_value; /* Timer expiration */
  11. 116 };
  12. 117 #endif /* _TIMESPEC_DEFINED */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement