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

Function assert_index_minimum

fsmonitor.c:24–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22struct trace_key trace_fsmonitor = TRACE_KEY_INIT(FSMONITOR);
23
24static void assert_index_minimum(struct index_state *istate, size_t pos)
25{
26 if (pos > istate->cache_nr)
27 BUG("fsmonitor_dirty has more entries than the index (%"PRIuMAX" > %u)",
28 (uintmax_t)pos, istate->cache_nr);
29}
30
31static void fsmonitor_ewah_callback(size_t pos, void *is)
32{

Callers 4

fsmonitor_ewah_callbackFunction · 0.85
read_fsmonitor_extensionFunction · 0.85
tweak_fsmonitorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected