2010-01-24 18:53:40 +08:00
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_TYPES
|
|
|
|
|
2012-10-12 04:53:15 +08:00
|
|
|
typedef enum {
|
|
|
|
dss_prec_disabled = 0,
|
|
|
|
dss_prec_primary = 1,
|
|
|
|
dss_prec_secondary = 2,
|
|
|
|
|
|
|
|
dss_prec_limit = 3
|
2013-12-09 12:52:21 +08:00
|
|
|
} dss_prec_t;
|
2012-10-12 04:53:15 +08:00
|
|
|
#define DSS_PREC_DEFAULT dss_prec_secondary
|
|
|
|
#define DSS_DEFAULT "secondary"
|
|
|
|
|
2010-01-24 18:53:40 +08:00
|
|
|
#endif /* JEMALLOC_H_TYPES */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_STRUCTS
|
|
|
|
|
2012-10-12 04:53:15 +08:00
|
|
|
extern const char *dss_prec_names[];
|
|
|
|
|
2010-01-24 18:53:40 +08:00
|
|
|
#endif /* JEMALLOC_H_STRUCTS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_EXTERNS
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
dss_prec_t chunk_dss_prec_get(tsdn_t *tsdn);
|
|
|
|
bool chunk_dss_prec_set(tsdn_t *tsdn, dss_prec_t dss_prec);
|
|
|
|
void *chunk_alloc_dss(tsdn_t *tsdn, arena_t *arena, void *new_addr,
|
2016-04-14 14:36:15 +08:00
|
|
|
size_t size, size_t alignment, bool *zero, bool *commit);
|
2016-05-11 13:21:10 +08:00
|
|
|
bool chunk_in_dss(tsdn_t *tsdn, void *chunk);
|
2010-01-24 18:53:40 +08:00
|
|
|
bool chunk_dss_boot(void);
|
2016-05-11 13:21:10 +08:00
|
|
|
void chunk_dss_prefork(tsdn_t *tsdn);
|
|
|
|
void chunk_dss_postfork_parent(tsdn_t *tsdn);
|
|
|
|
void chunk_dss_postfork_child(tsdn_t *tsdn);
|
2010-01-24 18:53:40 +08:00
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_EXTERNS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_INLINES
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_INLINES */
|
|
|
|
/******************************************************************************/
|