MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / malloc_conf_error

Function malloc_conf_error

deps/jemalloc/src/jemalloc.c:905–917  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

903}
904
905static void
906malloc_conf_error(const char *msg, const char *k, size_t klen, const char *v,
907 size_t vlen) {
908 malloc_printf("<jemalloc>: %s: %.*s:%.*s\n", msg, (int)klen, k,
909 (int)vlen, v);
910 /* If abort_conf is set, error out after processing all options. */
911 const char *experimental = "experimental_";
912 if (strncmp(k, experimental, strlen(experimental)) == 0) {
913 /* However, tolerate experimental features. */
914 return;
915 }
916 had_conf_error = true;
917}
918
919static void
920malloc_slow_flag_init(void) {

Callers

nothing calls this directly

Calls 1

malloc_printfFunction · 0.70

Tested by

no test coverage detected