MCPcopy Create free account
hub / github.com/git/git / finish_all_active_slots

Function finish_all_active_slots

http.c:1833–1844  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1831}
1832
1833void finish_all_active_slots(void)
1834{
1835 struct active_request_slot *slot = active_queue_head;
1836
1837 while (slot != NULL)
1838 if (slot->in_use) {
1839 run_active_slot(slot);
1840 slot = active_queue_head;
1841 } else {
1842 slot = slot->next;
1843 }
1844}
1845
1846/* Helpers for modifying and creating URLs */
1847static inline int needs_quote(int ch)

Callers 2

run_request_queueFunction · 0.85
cmd_mainFunction · 0.85

Calls 1

run_active_slotFunction · 0.85

Tested by

no test coverage detected