* Bind an interrupt event's ithread to the specified CPU. */
| 379 | * Bind an interrupt event's ithread to the specified CPU. |
| 380 | */ |
| 381 | int |
| 382 | intr_event_bind_ithread(struct intr_event *ie, int cpu) |
| 383 | { |
| 384 | |
| 385 | return (_intr_event_bind(ie, cpu, false, true)); |
| 386 | } |
| 387 | |
| 388 | /* |
| 389 | * Bind an interrupt event's ithread to the specified cpuset. |
no test coverage detected