Home | History | Annotate | Download | only in utils

Lines Matching refs:usec

21  * os_sleep - Sleep (sec, usec)
23 * @usec: Number of microseconds to sleep
25 void os_sleep(os_time_t sec, os_time_t usec);
29 os_time_t usec;
33 * os_get_time - Get current time (sec, usec)
44 ((a)->sec == (b)->sec && (a)->usec < (b)->usec))
48 (res)->usec = (a)->usec - (b)->usec; \
49 if ((res)->usec < 0) { \
51 (res)->usec += 1000000; \