MCPcopy Create free account
hub / github.com/ading2210/linuxpdf / vm_error

Function vm_error

tinyemu/machine.c:44–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42#endif
43
44void __attribute__((format(printf, 1, 2))) vm_error(const char *fmt, ...)
45{
46 va_list ap;
47 va_start(ap, fmt);
48#ifdef EMSCRIPTEN
49 vprintf(fmt, ap);
50#else
51 vfprintf(stderr, fmt, ap);
52#endif
53 va_end(ap);
54}
55
56int vm_get_int(JSONValue obj, const char *name, int *pval)
57{

Callers 9

x86_machine.cFile · 0.85
bf_init_onloadFunction · 0.85
copy_biosFunction · 0.85
riscv_machine_initFunction · 0.85
vm_get_intFunction · 0.85
vm_get_int_optFunction · 0.85
vm_get_str2Function · 0.85
config_load_file_cbFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected