113938b6f4
For now, this is a no-op change. In a subsequent commit, it will be useful for testing.
16 lines
416 B
C
16 lines
416 B
C
#ifndef JEMALLOC_INTERNAL_HPA_HOOKS_H
|
|
#define JEMALLOC_INTERNAL_HPA_HOOKS_H
|
|
|
|
typedef struct hpa_hooks_s hpa_hooks_t;
|
|
struct hpa_hooks_s {
|
|
void *(*map)(size_t size);
|
|
void (*unmap)(void *ptr, size_t size);
|
|
void (*purge)(void *ptr, size_t size);
|
|
void (*hugify)(void *ptr, size_t size);
|
|
void (*dehugify)(void *ptr, size_t size);
|
|
};
|
|
|
|
extern hpa_hooks_t hpa_hooks_default;
|
|
|
|
#endif /* JEMALLOC_INTERNAL_HPA_HOOKS_H */
|