2010-01-17 01:53:50 +08:00
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_TYPES
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_TYPES */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_STRUCTS
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_STRUCTS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_EXTERNS
|
|
|
|
|
|
|
|
/* Huge allocation statistics. */
|
|
|
|
extern uint64_t huge_nmalloc;
|
|
|
|
extern uint64_t huge_ndalloc;
|
|
|
|
extern size_t huge_allocated;
|
|
|
|
|
|
|
|
/* Protects chunk-related data structures. */
|
|
|
|
extern malloc_mutex_t huge_mtx;
|
|
|
|
|
2014-03-28 05:46:00 +08:00
|
|
|
void *huge_malloc(size_t size, bool zero, dss_prec_t dss_prec);
|
|
|
|
void *huge_palloc(size_t size, size_t alignment, bool zero,
|
|
|
|
dss_prec_t dss_prec);
|
2014-01-13 07:05:44 +08:00
|
|
|
bool huge_ralloc_no_move(void *ptr, size_t oldsize, size_t size,
|
Add {,r,s,d}allocm().
Add allocm(), rallocm(), sallocm(), and dallocm(), which are a
functional superset of malloc(), calloc(), posix_memalign(),
malloc_usable_size(), and free().
2010-09-18 06:46:18 +08:00
|
|
|
size_t extra);
|
|
|
|
void *huge_ralloc(void *ptr, size_t oldsize, size_t size, size_t extra,
|
2014-03-28 05:46:00 +08:00
|
|
|
size_t alignment, bool zero, bool try_tcache_dalloc, dss_prec_t dss_prec);
|
2014-01-08 08:47:56 +08:00
|
|
|
#ifdef JEMALLOC_JET
|
|
|
|
typedef void (huge_dalloc_junk_t)(void *, size_t);
|
|
|
|
extern huge_dalloc_junk_t *huge_dalloc_junk;
|
|
|
|
#endif
|
2010-12-01 08:50:58 +08:00
|
|
|
void huge_dalloc(void *ptr, bool unmap);
|
2010-01-17 01:53:50 +08:00
|
|
|
size_t huge_salloc(const void *ptr);
|
2014-03-28 05:46:00 +08:00
|
|
|
dss_prec_t huge_dss_prec_get(arena_t *arena);
|
2010-04-14 07:13:54 +08:00
|
|
|
prof_ctx_t *huge_prof_ctx_get(const void *ptr);
|
|
|
|
void huge_prof_ctx_set(const void *ptr, prof_ctx_t *ctx);
|
2010-01-17 01:53:50 +08:00
|
|
|
bool huge_boot(void);
|
2012-03-14 07:31:41 +08:00
|
|
|
void huge_prefork(void);
|
|
|
|
void huge_postfork_parent(void);
|
|
|
|
void huge_postfork_child(void);
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_EXTERNS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_INLINES
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_INLINES */
|
|
|
|
/******************************************************************************/
|