MCPcopy Index your code
hub / github.com/git/git / run_request_queue

Function run_request_queue

http-push.c:1702–1713  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1700}
1701
1702static 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
1715int cmd_main(int argc, const char **argv)
1716{

Callers 1

cmd_mainFunction · 0.85

Calls 3

fill_active_slotsFunction · 0.85
add_fill_functionFunction · 0.85
finish_all_active_slotsFunction · 0.85

Tested by

no test coverage detected