6630c59896
We wait a while after deciding a huge extent should get hugified to see if it gets purged before long. This avoids hugifying extents that might shortly get dehugified for purging. Rename and use the hpa_dehugification_threshold option support code for this, since it's now ignored.
17 lines
452 B
C
17 lines
452 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);
|
|
};
|
|
|
|
extern hpa_hooks_t hpa_hooks_default;
|
|
|
|
#endif /* JEMALLOC_INTERNAL_HPA_HOOKS_H */
|