Home
last modified time | relevance | path

Searched refs:it_arg (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Dclock_highres.c74 it->it_arg = kmem_zalloc(sizeof (cyclic_id_t), KM_SLEEP); in clock_highres_timer_create()
98 cyclic_id_t cyc, *cycp = it->it_arg; in clock_highres_timer_settime()
333 if (it->it_arg == NULL) { in clock_highres_timer_delete()
343 if ((cyc = *((cyclic_id_t *)it->it_arg)) != CYCLIC_NONE) in clock_highres_timer_delete()
348 kmem_free(it->it_arg, sizeof (cyclic_id_t)); in clock_highres_timer_delete()
358 cyclic_id_t cyc = *((cyclic_id_t *)it->it_arg); in clock_highres_timer_lwpbind()
H A Dclock_realtime.c76 timeout_id_t *tidp = it->it_arg; in clock_realtime_fire()
152 timeout_id_t *tidp = it->it_arg; in clock_realtime_fire_first()
177 it->it_arg = kmem_zalloc(sizeof (timeout_id_t), KM_SLEEP); in clock_realtime_timer_create()
187 timeout_id_t tid, *tidp = it->it_arg; in clock_realtime_timer_settime()
282 timeout_id_t tid, *tidp = it->it_arg; in clock_realtime_timer_delete()
/illumos-gate/usr/src/uts/common/sys/
H A Dtimer.h79 void *it_arg; /* clock backend-specific data */ member