* Bind an interrupt event to the specified CPU. For supported platforms, any * associated ithreads as well as the primary interrupt context will be bound * to the specificed CPU. */
| 358 | * to the specificed CPU. |
| 359 | */ |
| 360 | int |
| 361 | intr_event_bind(struct intr_event *ie, int cpu) |
| 362 | { |
| 363 | |
| 364 | return (_intr_event_bind(ie, cpu, true, true)); |
| 365 | } |
| 366 | |
| 367 | /* |
| 368 | * Bind an interrupt event to the specified CPU, but do not bind associated |
no test coverage detected