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

Function die

usage.c:201–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

199}
200
201void NORETURN die(const char *err, ...)
202{
203 va_list params;
204
205 if (die_is_recursing()) {
206 fputs("fatal: recursion detected in die handler\n", stderr);
207 exit(128);
208 }
209
210 va_start(params, err);
211 die_routine(err, params);
212 va_end(params);
213}
214
215static const char *fmt_with_err(char *buf, int n, const char *fmt)
216{

Callers 15

write_oidFunction · 0.70
fill_in_bitmapFunction · 0.70
find_boundary_objectsFunction · 0.70
get_size_by_posFunction · 0.70
test_bitmap_typeFunction · 0.70
test_show_objectFunction · 0.70
test_show_commitFunction · 0.70
test_bitmap_walkFunction · 0.70
test_bitmap_commitsFunction · 0.70

Calls

no outgoing calls

Tested by 15

test_bitmap_typeFunction · 0.56
test_show_objectFunction · 0.56
test_show_commitFunction · 0.56
test_bitmap_walkFunction · 0.56
test_bitmap_commitsFunction · 0.56
refspec_appendFunction · 0.56
attr_value_unescapeFunction · 0.56
get_global_magicFunction · 0.56
parse_long_magicFunction · 0.56