| 895 | } |
| 896 | |
| 897 | static void |
| 898 | malloc_abort_invalid_conf(void) { |
| 899 | assert(opt_abort_conf); |
| 900 | malloc_printf("<jemalloc>: Abort (abort_conf:true) on invalid conf " |
| 901 | "value (see above).\n"); |
| 902 | abort(); |
| 903 | } |
| 904 | |
| 905 | static void |
| 906 | malloc_conf_error(const char *msg, const char *k, size_t klen, const char *v, |
no test coverage detected