Home | History | Annotate | Download | only in ulinux

Lines Matching defs:abstime

766     struct timespec abstime = { 0, 0 };
784 clock_gettime(CLOCK_MONOTONIC, &abstime);
789 abstime.tv_nsec += nano_sec;
790 if (abstime.tv_nsec > NSEC_PER_SEC)
792 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
793 abstime.tv_nsec = abstime.tv_nsec % NSEC_PER_SEC;
795 abstime.tv_sec += sec;
798 &gki_cb.os.thread_evt_mutex[rtask], &abstime);