589c63b424
For better or worse, Jemalloc has a significant number of global variables. Making all eligible global variables `static` and/or `const` at least makes it slightly easier to reason about them, as these qualifications communicate to the programmer restrictions on their use without having to `grep` the whole codebase.
18 lines
519 B
C
18 lines
519 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);
|
|
void (*curtime)(nstime_t *r_time, bool first_reading);
|
|
uint64_t (*ms_since)(nstime_t *r_time);
|
|
};
|
|
|
|
extern const hpa_hooks_t hpa_hooks_default;
|
|
|
|
#endif /* JEMALLOC_INTERNAL_HPA_HOOKS_H */
|