pub unsafe extern "C" fn mi_register_output(
out: mi_output_fun,
arg: *mut c_void,
)Expand description
Register an output function.
outThe output function, useNoneto output to stderr.argArgument that will be passed on to the output function.
The out function is called to output any information from mimalloc,
like verbose or warning messages.
Note: This function is thread safe.