| 29 | } |
| 30 | |
| 31 | static void fsmonitor_ewah_callback(size_t pos, void *is) |
| 32 | { |
| 33 | struct index_state *istate = (struct index_state *)is; |
| 34 | struct cache_entry *ce; |
| 35 | |
| 36 | assert_index_minimum(istate, pos + 1); |
| 37 | |
| 38 | ce = istate->cache[pos]; |
| 39 | ce->ce_flags &= ~CE_FSMONITOR_VALID; |
| 40 | } |
| 41 | |
| 42 | static int fsmonitor_hook_version(void) |
| 43 | { |
nothing calls this directly
no test coverage detected