mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 17:28:00 +02:00
Added TCMalloc and JEMalloc projects
This commit is contained in:
parent
53376f3861
commit
652142e189
242 changed files with 67746 additions and 6 deletions
66
BeefRT/JEMalloc/include/jemalloc/jemalloc_mangle_jet.h
Normal file
66
BeefRT/JEMalloc/include/jemalloc/jemalloc_mangle_jet.h
Normal file
|
@ -0,0 +1,66 @@
|
|||
/*
|
||||
* By default application code must explicitly refer to mangled symbol names,
|
||||
* so that it is possible to use jemalloc in conjunction with another allocator
|
||||
* in the same application. Define JEMALLOC_MANGLE in order to cause automatic
|
||||
* name mangling that matches the API prefixing that happened as a result of
|
||||
* --with-mangling and/or --with-jemalloc-prefix configuration settings.
|
||||
*/
|
||||
#ifdef JEMALLOC_MANGLE
|
||||
# ifndef JEMALLOC_NO_DEMANGLE
|
||||
# define JEMALLOC_NO_DEMANGLE
|
||||
# endif
|
||||
# define aligned_alloc jet_aligned_alloc
|
||||
# define calloc jet_calloc
|
||||
# define dallocx jet_dallocx
|
||||
# define free jet_free
|
||||
# define mallctl jet_mallctl
|
||||
# define mallctlbymib jet_mallctlbymib
|
||||
# define mallctlnametomib jet_mallctlnametomib
|
||||
# define malloc jet_malloc
|
||||
# define malloc_conf jet_malloc_conf
|
||||
# define malloc_conf_2_conf_harder jet_malloc_conf_2_conf_harder
|
||||
# define malloc_message jet_malloc_message
|
||||
# define malloc_stats_print jet_malloc_stats_print
|
||||
# define malloc_usable_size jet_malloc_usable_size
|
||||
# define mallocx jet_mallocx
|
||||
# define smallocx_54eaed1d8b56b1aa528be3bdd1877e59c56fa90c jet_smallocx_54eaed1d8b56b1aa528be3bdd1877e59c56fa90c
|
||||
# define nallocx jet_nallocx
|
||||
# define posix_memalign jet_posix_memalign
|
||||
# define rallocx jet_rallocx
|
||||
# define realloc jet_realloc
|
||||
# define sallocx jet_sallocx
|
||||
# define sdallocx jet_sdallocx
|
||||
# define xallocx jet_xallocx
|
||||
#endif
|
||||
|
||||
/*
|
||||
* The jet_* macros can be used as stable alternative names for the
|
||||
* public jemalloc API if JEMALLOC_NO_DEMANGLE is defined. This is primarily
|
||||
* meant for use in jemalloc itself, but it can be used by application code to
|
||||
* provide isolation from the name mangling specified via --with-mangling
|
||||
* and/or --with-jemalloc-prefix.
|
||||
*/
|
||||
#ifndef JEMALLOC_NO_DEMANGLE
|
||||
# undef jet_aligned_alloc
|
||||
# undef jet_calloc
|
||||
# undef jet_dallocx
|
||||
# undef jet_free
|
||||
# undef jet_mallctl
|
||||
# undef jet_mallctlbymib
|
||||
# undef jet_mallctlnametomib
|
||||
# undef jet_malloc
|
||||
# undef jet_malloc_conf
|
||||
# undef jet_malloc_conf_2_conf_harder
|
||||
# undef jet_malloc_message
|
||||
# undef jet_malloc_stats_print
|
||||
# undef jet_malloc_usable_size
|
||||
# undef jet_mallocx
|
||||
# undef jet_smallocx_54eaed1d8b56b1aa528be3bdd1877e59c56fa90c
|
||||
# undef jet_nallocx
|
||||
# undef jet_posix_memalign
|
||||
# undef jet_rallocx
|
||||
# undef jet_realloc
|
||||
# undef jet_sallocx
|
||||
# undef jet_sdallocx
|
||||
# undef jet_xallocx
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue