| 845 | } |
| 846 | |
| 847 | static void |
| 848 | malloc_conf_error(const char *msg, const char *k, size_t klen, const char *v, |
| 849 | size_t vlen) { |
| 850 | malloc_printf("<jemalloc>: %s: %.*s:%.*s\n", msg, (int)klen, k, |
| 851 | (int)vlen, v); |
| 852 | /* If abort_conf is set, error out after processing all options. */ |
| 853 | had_conf_error = true; |
| 854 | } |
| 855 | |
| 856 | static void |
| 857 | malloc_slow_flag_init(void) { |
no test coverage detected