* Move binrz meson directives to binrz/ dir * Move rizin-shell-parser to a subproject * Move bochs to a meson subproject * Move rzqnx to meson subproject * Move winkd to a meson subproject * Move rzar to a meson subproject * Move rzw32dbg_wrap to a meson subproject * Move ptrace-wrap to a meson subproject * Move rzgdb to a meson subproject * Rename w32dbg_wrap to rzw32dbg_wrap * Update CODEOWNERS * Remove old references to shlr * Move shlr/heap stuff in core and remove shlr/arm * Move spp to a meson subproject * Remove last references to shlr * Remove use_webui option * Move include files directives to librz/include/meson.build * Move librz meson directives into librz/meson.build * Handle d/ directories inside the specific module meson.build * Move plugins listing to specific module meson.build * Move rzheap to its own subproject * Fix js linter and licenses * Use meson.override_dependency for all rz_ modules
29 lines
972 B
C
29 lines
972 B
C
/*
|
|
* Name mangling for public symbols is controlled by --with-mangling and
|
|
* --with-jemalloc-prefix. With default settings the je_ prefix is stripped by
|
|
* these macro definitions.
|
|
*/
|
|
#ifndef JEMALLOC_NO_RENAME
|
|
# define je_malloc_conf malloc_conf
|
|
# define je_malloc_message malloc_message
|
|
# define je_malloc malloc
|
|
# define je_calloc calloc
|
|
# define je_posix_memalign posix_memalign
|
|
# define je_aligned_alloc aligned_alloc
|
|
# define je_realloc realloc
|
|
# define je_free free
|
|
# define je_mallocx mallocx
|
|
# define je_rallocx rallocx
|
|
# define je_xallocx xallocx
|
|
# define je_sallocx sallocx
|
|
# define je_dallocx dallocx
|
|
# define je_sdallocx sdallocx
|
|
# define je_nallocx nallocx
|
|
# define je_mallctl mallctl
|
|
# define je_mallctlnametomib mallctlnametomib
|
|
# define je_mallctlbymib mallctlbymib
|
|
# define je_malloc_stats_print malloc_stats_print
|
|
# define je_malloc_usable_size malloc_usable_size
|
|
# define je_memalign memalign
|
|
# define je_valloc valloc
|
|
#endif
|