MCPcopy Create free account
hub / github.com/coreboot/coreboot / die

Function die

src/console/die.c:18–28  ·  view source on GitHub ↗

Report a fatal error */

Source from the content-addressed store, hash-verified

16
17/* Report a fatal error */
18void __noreturn die(const char *fmt, ...)
19{
20 va_list args;
21
22 va_start(args, fmt);
23 vprintk(BIOS_EMERG, fmt, args);
24 va_end(args);
25
26 die_notify();
27 halt();
28}

Callers 15

raiseFunction · 0.50
chipidea_hw_initFunction · 0.50
run_bl31Function · 0.50
decompress_kernel_headerFunction · 0.50
print_exception_and_dieFunction · 0.50
setup_new_tableFunction · 0.50
exception_prefetch_abortFunction · 0.50
exception_data_abortFunction · 0.50
exception_not_usedFunction · 0.50
exception_irqFunction · 0.50

Calls 3

vprintkFunction · 0.70
die_notifyFunction · 0.70
haltFunction · 0.50

Tested by 5

ram_checkFunction · 0.40
quick_ram_check_or_dieFunction · 0.40
setup_io_testFunction · 0.40
mapitinFunction · 0.40
mainFunction · 0.40