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
|
|
|
|
|
2014-10-10 08:54:06 +08:00
|
|
|
void *huge_malloc(tsd_t *tsd, arena_t *arena, size_t size, bool zero,
|
2015-01-30 07:30:47 +08:00
|
|
|
tcache_t *tcache);
|
2015-07-24 08:16:32 +08:00
|
|
|
void *huge_palloc(tsd_t *tsd, arena_t *arena, size_t size, size_t alignment,
|
2015-01-30 07:30:47 +08:00
|
|
|
bool zero, tcache_t *tcache);
|
2016-02-20 12:09:31 +08:00
|
|
|
bool huge_ralloc_no_move(tsd_t *tsd, void *ptr, size_t oldsize,
|
|
|
|
size_t usize_min, size_t usize_max, bool zero);
|
2014-09-23 12:09:23 +08:00
|
|
|
void *huge_ralloc(tsd_t *tsd, arena_t *arena, void *ptr, size_t oldsize,
|
2015-09-12 07:18:53 +08:00
|
|
|
size_t usize, size_t alignment, bool zero, tcache_t *tcache);
|
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
|
2015-01-30 07:30:47 +08:00
|
|
|
void huge_dalloc(tsd_t *tsd, void *ptr, tcache_t *tcache);
|
2014-11-28 03:22:36 +08:00
|
|
|
arena_t *huge_aalloc(const void *ptr);
|
2010-01-17 01:53:50 +08:00
|
|
|
size_t huge_salloc(const void *ptr);
|
2014-08-19 07:22:13 +08:00
|
|
|
prof_tctx_t *huge_prof_tctx_get(const void *ptr);
|
|
|
|
void huge_prof_tctx_set(const void *ptr, prof_tctx_t *tctx);
|
2015-09-15 14:48:11 +08:00
|
|
|
void huge_prof_tctx_reset(const void *ptr);
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_EXTERNS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_INLINES
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_INLINES */
|
|
|
|
/******************************************************************************/
|