mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-15 07:01:42 +03:00
Refactor permuted backtrace test allocation that was originally used only by the prof_accum test, so that it can be used by other heap profiling test binaries.
8 lines
114 B
C
8 lines
114 B
C
#include "test/jemalloc_test.h"
|
|
|
|
void *
|
|
btalloc(size_t size, unsigned bits)
|
|
{
|
|
|
|
return (btalloc_0(size, bits));
|
|
}
|