Blame memkind-1.10.0/jemalloc/src/test_hooks.c

Packit Service 724aca
#include "jemalloc/internal/jemalloc_preamble.h"
Packit Service 724aca
Packit Service 724aca
/*
Packit Service 724aca
 * The hooks are a little bit screwy -- they're not genuinely exported in the
Packit Service 724aca
 * sense that we want them available to end-users, but we do want them visible
Packit Service 724aca
 * from outside the generated library, so that we can use them in test code.
Packit Service 724aca
 */
Packit Service 724aca
JEMALLOC_EXPORT
Packit Service 724aca
void (*test_hooks_arena_new_hook)() = NULL;
Packit Service 724aca
Packit Service 724aca
JEMALLOC_EXPORT
Packit Service 724aca
void (*test_hooks_libc_hook)() = NULL;