Home | History | Annotate | Download | only in ulinux

Lines Matching defs:abstime

643     struct timespec abstime = { 0, 0 };
691 // abstime.tv_sec = currSysTime.time;
692 // abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
693 clock_gettime(CLOCK_MONOTONIC, &abstime);
698 abstime.tv_nsec += nano_sec;
699 if (abstime.tv_nsec > NSEC_PER_SEC)
701 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
702 abstime.tv_nsec = abstime.tv_nsec % NSEC_PER_SEC;
704 abstime.tv_sec += sec;
707 &gki_cb.os.thread_evt_mutex[rtask], &abstime);