| 670 | /* Print to stderr in such a way as to avoid memory allocation. */ |
| 671 | JEMALLOC_FORMAT_PRINTF(1, 2) |
| 672 | void |
| 673 | malloc_printf(const char *format, ...) { |
| 674 | va_list ap; |
| 675 | |
| 676 | va_start(ap, format); |
| 677 | malloc_vcprintf(NULL, NULL, format, ap); |
| 678 | va_end(ap); |
| 679 | } |
| 680 | |
| 681 | /* |
| 682 | * Restore normal assertion macros, in order to make it possible to compile all |
no outgoing calls