/src/sys/arch/sparc/sparc/ |
oclock.c | 80 static struct intrhand level10 = { oclockintr }; variable in typeref:struct:intrhand 179 intr_establish(10, 0, &level10, NULL, false);
|
timer_msiiep.c | 91 static struct intrhand level10 = { .ih_fun = clockintr_msiiep }; variable in typeref:struct:intrhand 177 intr_establish(10, 0, &level10, NULL, false);
|
timer.c | 77 static struct intrhand level10; variable in typeref:struct:intrhand 250 level10.ih_fun = clockintr_4; 258 level10.ih_fun = clockintr_4m; 265 intr_establish(10, 0, &level10, NULL, true);
|
/src/sys/arch/sparc64/sparc64/ |
clock.c | 278 struct intrhand *level10 = intrhand_alloc(); local in function:timerattach 279 level10->ih_fun = clockintr; 280 level10->ih_pil = PIL_CLOCK; 281 level10->ih_number = INTVEC(ma->ma_interrupts[0]); 282 level10->ih_clr = &timerreg_4u.t_clrintr[0]; 283 intr_establish(PIL_CLOCK, true, level10); 284 printf(" irq vectors %lx", (u_long)level10->ih_number);
|