Lines Matching refs:vector
37 static void rt_hw_int_not_handle(int vector, void *param) in rt_hw_int_not_handle() argument
39 rt_kprintf("Unhandled interrupt %d occured!!!\n", vector); in rt_hw_int_not_handle()
69 void rt_hw_interrupt_mask(int vector) in rt_hw_interrupt_mask() argument
71 vimDisableInterrupt(vector); in rt_hw_interrupt_mask()
74 void rt_hw_interrupt_umask(int vector) in rt_hw_interrupt_umask() argument
76 vimEnableInterrupt(vector, SYS_IRQ); in rt_hw_interrupt_umask()
88 rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, in rt_hw_interrupt_install() argument
93 if(vector >= 0 && vector < MAX_HANDLERS) in rt_hw_interrupt_install()
95 old_handler = irq_desc[vector].handler; in rt_hw_interrupt_install()
98 irq_desc[vector].handler = handler; in rt_hw_interrupt_install()
99 irq_desc[vector].param = param; in rt_hw_interrupt_install()