| 1700 | } |
| 1701 | |
| 1702 | static void run_request_queue(void) |
| 1703 | { |
| 1704 | is_running_queue = 1; |
| 1705 | fill_active_slots(); |
| 1706 | add_fill_function(NULL, fill_active_slot); |
| 1707 | do { |
| 1708 | finish_all_active_slots(); |
| 1709 | fill_active_slots(); |
| 1710 | } while (request_queue_head && !aborted); |
| 1711 | |
| 1712 | is_running_queue = 0; |
| 1713 | } |
| 1714 | |
| 1715 | int cmd_main(int argc, const char **argv) |
| 1716 | { |
no test coverage detected