| 844 | } |
| 845 | |
| 846 | static void |
| 847 | malloc_conf_error(const char *msg, const char *k, size_t klen, const char *v, |
| 848 | size_t vlen) { |
| 849 | malloc_printf("<jemalloc>: %s: %.*s:%.*s\n", msg, (int)klen, k, |
| 850 | (int)vlen, v); |
| 851 | had_conf_error = true; |
| 852 | if (opt_abort_conf) { |
| 853 | malloc_abort_invalid_conf(); |
| 854 | } |
| 855 | } |
| 856 | |
| 857 | static void |
| 858 | malloc_slow_flag_init(void) { |
no test coverage detected