Home | History | Annotate | Download | only in ulinux

Lines Matching defs:abstime

621     struct timespec abstime = { 0, 0 };
669 // abstime.tv_sec = currSysTime.time;
670 // abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
671 clock_gettime(CLOCK_MONOTONIC, &abstime);
676 abstime.tv_nsec += nano_sec;
677 if (abstime.tv_nsec > NSEC_PER_SEC)
679 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
680 abstime.tv_nsec = abstime.tv_nsec % NSEC_PER_SEC;
682 abstime.tv_sec += sec;
685 &gki_cb.os.thread_evt_mutex[rtask], &abstime);