Home | History | Annotate | Download | only in ulinux

Lines Matching defs:abstime

644     struct timespec abstime = { 0, 0 };
692 // abstime.tv_sec = currSysTime.time;
693 // abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
694 clock_gettime(CLOCK_MONOTONIC, &abstime);
699 abstime.tv_nsec += nano_sec;
700 if (abstime.tv_nsec > NSEC_PER_SEC)
702 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
703 abstime.tv_nsec = abstime.tv_nsec % NSEC_PER_SEC;
705 abstime.tv_sec += sec;
708 &gki_cb.os.thread_evt_mutex[rtask], &abstime);