| 491 | } |
| 492 | |
| 493 | void |
| 494 | taskqueue_run(struct taskqueue *queue) |
| 495 | { |
| 496 | |
| 497 | TQ_LOCK(queue); |
| 498 | taskqueue_run_locked(queue); |
| 499 | TQ_UNLOCK(queue); |
| 500 | } |
| 501 | |
| 502 | static int |
| 503 | task_is_running(struct taskqueue *queue, struct task *task) |
no test coverage detected