| 837 | } |
| 838 | |
| 839 | static void |
| 840 | malloc_abort_invalid_conf(void) { |
| 841 | assert(opt_abort_conf); |
| 842 | malloc_printf("<jemalloc>: Abort (abort_conf:true) on invalid conf " |
| 843 | "value (see above).\n"); |
| 844 | abort(); |
| 845 | } |
| 846 | |
| 847 | static void |
| 848 | malloc_conf_error(const char *msg, const char *k, size_t klen, const char *v, |
no test coverage detected