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-10-13 02:49:19 +08:00
|
|
|
extern const char *opt_dss;
|
|
|
|
|
2016-10-14 03:18:38 +08:00
|
|
|
dss_prec_t extent_dss_prec_get(void);
|
|
|
|
bool extent_dss_prec_set(dss_prec_t dss_prec);
|
2016-06-02 03:59:02 +08:00
|
|
|
void *extent_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-10-14 03:18:38 +08:00
|
|
|
bool extent_in_dss(void *addr);
|
|
|
|
bool extent_dss_mergeable(void *addr_a, void *addr_b);
|
|
|
|
void extent_dss_boot(void);
|
2010-01-24 18:53:40 +08:00
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_EXTERNS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_INLINES
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_INLINES */
|
|
|
|
/******************************************************************************/
|