Modify the interrupt interface implementations, changes in the part of the parameter definition.

This commit is contained in:
weety
2013-03-17 10:38:38 +08:00
parent 3de4b92a68
commit b21028474b
8 changed files with 114 additions and 51 deletions

View File

@@ -42,8 +42,8 @@ void rt_hw_interrupt_init(void);
void rt_hw_interrupt_mask(int vector);
void rt_hw_interrupt_umask(int vector);
void rt_hw_interrupt_install(int vector,
rt_isr_handler_t new_handler,
rt_isr_handler_t *old_handler);
rt_isr_handler_t handler,
void *param, char *name);
void rt_hw_interrupt_handle(int vector);
rt_base_t rt_hw_interrupt_disable(void);