Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/os/
H A Dclock_highres.c78 it->it_arg = NULL; in clock_highres_timer_create()
82 it->it_arg = kmem_zalloc(sizeof (cyclic_id_t), KM_SLEEP); in clock_highres_timer_create()
106 cyclic_id_t cyc, *cycp = it->it_arg; in clock_highres_timer_settime()
298 if (it->it_arg == NULL) { in clock_highres_timer_delete()
308 if ((cyc = *((cyclic_id_t *)it->it_arg)) != CYCLIC_NONE) in clock_highres_timer_delete()
313 kmem_free(it->it_arg, sizeof (cyclic_id_t)); in clock_highres_timer_delete()
323 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()
/titanic_50/usr/src/uts/common/sys/
H A Dtimer.h70 void *it_arg; /* clock backend-specific data */ member