Home | History | Annotate | Download | only in ulinux

Lines Matching refs:abstime

616   struct timespec abstime = {0, 0};
665 // abstime.tv_sec = currSysTime.time;
666 // abstime.tv_nsec = NANOSEC_PER_MILLISEC *
668 clock_gettime(CLOCK_MONOTONIC, &abstime);
673 abstime.tv_nsec += nano_sec;
674 if (abstime.tv_nsec > NSEC_PER_SEC) {
675 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
676 abstime.tv_nsec = abstime.tv_nsec % NSEC_PER_SEC;
678 abstime.tv_sec += sec;
681 &gki_cb.os.thread_evt_mutex[rtask], &abstime);