* Remove a software interrupt handler. Currently this code does not * remove the associated interrupt event if it becomes empty. Calling code * may do so manually via intr_event_destroy(), but that's not really * an optimal interface. */
| 1095 | * an optimal interface. |
| 1096 | */ |
| 1097 | int |
| 1098 | swi_remove(void *cookie) |
| 1099 | { |
| 1100 | |
| 1101 | return (intr_event_remove_handler(cookie)); |
| 1102 | } |
| 1103 | |
| 1104 | static void |
| 1105 | intr_event_execute_handlers(struct proc *p, struct intr_event *ie) |
no test coverage detected