Lines Matching defs:its
54 struct itimerspec its;
56 its.it_value.tv_sec = nsecs / UM_NSEC_PER_SEC;
57 its.it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC;
59 its.it_interval.tv_sec = nsecs / UM_NSEC_PER_SEC;
60 its.it_interval.tv_nsec = nsecs % UM_NSEC_PER_SEC;
62 if (timer_settime(event_high_res_timer, 0, &its, NULL) == -1)
70 struct itimerspec its = {
78 timer_settime(event_high_res_timer, 0, &its, NULL);
87 struct itimerspec its;
89 memset(&its, 0, sizeof(struct itimerspec));
90 timer_settime(event_high_res_timer, 0, &its, NULL);