Home
last modified time | relevance | path

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

/freebsd-9-stable/sys/kern/
Dkern_intr.c104 struct intr_thread *ithd);
106 struct trapframe *frame, struct intr_thread **ithd);
121 static void ithread_update(struct intr_thread *ithd);
166 ithread_update(struct intr_thread *ithd) in ithread_update() argument
172 ie = ithd->it_event; in ithread_update()
173 td = ithd->it_thread; in ithread_update()
448 struct intr_thread *ithd; in ithread_create() local
452 ithd = malloc(sizeof(struct intr_thread), M_ITHREAD, M_WAITOK | M_ZERO); in ithread_create()
454 error = kproc_kthread_add(ithread_loop, ithd, &intrproc, in ithread_create()
464 ithd->it_thread = td; in ithread_create()
[all …]