Home | History | Annotate | Download | only in utils

Lines Matching defs:usec

15  * os_sleep - Sleep (sec, usec)
17 * @usec: Number of microseconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
23 os_time_t usec;
27 * os_get_time - Get current time (sec, usec)
38 ((a)->sec == (b)->sec && (a)->usec < (b)->usec))
42 (res)->usec = (a)->usec - (b)->usec; \
43 if ((res)->usec < 0) { \
45 (res)->usec += 1000000; \