MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / _mi_trace_message

Function _mi_trace_message

3rd/mimalloc-2.0.9/src/options.c:372–378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

370}
371
372void _mi_trace_message(const char* fmt, ...) {
373 if (mi_option_get(mi_option_verbose) <= 1) return; // only with verbose level 2 or higher
374 va_list args;
375 va_start(args, fmt);
376 mi_vfprintf_thread(NULL, NULL, "mimalloc: ", fmt, args);
377 va_end(args);
378}
379
380void _mi_verbose_message(const char* fmt, ...) {
381 if (!mi_option_is_enabled(mi_option_verbose)) return;

Callers

nothing calls this directly

Calls 2

mi_option_getFunction · 0.85
mi_vfprintf_threadFunction · 0.85

Tested by

no test coverage detected