Home
last modified time | relevance | path

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

/dragonfly/sys/kern/
HDkern_event.c426 struct callout *calloutp; in filt_timerreset() local
433 calloutp = (struct callout *)kn->kn_hook; in filt_timerreset()
434 callout_reset(calloutp, tticks, filt_timerexpire, kn); in filt_timerreset()
482 struct callout *calloutp; in filt_timerattach() local
493 calloutp = kmalloc(sizeof(*calloutp), M_KQUEUE, M_WAITOK); in filt_timerattach()
494 callout_init_mp(calloutp); in filt_timerattach()
495 kn->kn_hook = (caddr_t)calloutp; in filt_timerattach()
508 struct callout *calloutp; in filt_timerdetach() local
510 calloutp = (struct callout *)kn->kn_hook; in filt_timerdetach()
511 callout_terminate(calloutp); in filt_timerdetach()
[all …]