Home | History | Annotate | Download | only in ulinux

Lines Matching defs:abstime

571   struct timespec abstime = {0, 0};
621 // abstime.tv_sec = currSysTime.time;
622 // abstime.tv_nsec = NANOSEC_PER_MILLISEC *
624 clock_gettime(CLOCK_MONOTONIC, &abstime);
629 abstime.tv_nsec += nano_sec;
630 if (abstime.tv_nsec > NSEC_PER_SEC) {
631 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
632 abstime.tv_nsec = abstime.tv_nsec % NSEC_PER_SEC;
634 abstime.tv_sec += sec;
637 &gki_cb.os.thread_evt_mutex[rtask], &abstime);