Modified the interrupt function comments

This commit is contained in:
weety 2013-03-17 11:24:07 +08:00
parent b21028474b
commit 9678ee67e9

View File

@ -305,10 +305,12 @@ void rt_hw_interrupt_umask(int irq)
/** /**
* This function will install a interrupt service routine to a interrupt. * This function will install a interrupt service routine to a interrupt.
* @param vector the interrupt number * @param vector the interrupt number
* @param new_handler the interrupt service routine to be installed * @param handler the interrupt service routine to be installed
* @param old_handler the old interrupt service routine * @param param the interrupt service function parameter
* @param name the interrupt name
*/ */
void rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, void *param, char *name) void rt_hw_interrupt_install(int vector, rt_isr_handler_t handler,
void *param, char *name)
{ {
if(vector < MAX_HANDLERS) if(vector < MAX_HANDLERS)
{ {