| 368 | } |
| 369 | |
| 370 | int is_racy_timestamp(const struct index_state *istate, |
| 371 | const struct cache_entry *ce) |
| 372 | { |
| 373 | return (!S_ISGITLINK(ce->ce_mode) && |
| 374 | is_racy_stat(istate, &ce->ce_stat_data)); |
| 375 | } |
| 376 | |
| 377 | int match_stat_data_racy(const struct index_state *istate, |
| 378 | const struct stat_data *sd, struct stat *st) |
no test coverage detected