2010-01-04 03:59:20 +08:00
|
|
|
/* Defined if __attribute__((...)) syntax is supported. */
|
|
|
|
#undef JEMALLOC_HAVE_ATTR
|
2009-07-01 07:17:05 +08:00
|
|
|
|
2015-07-11 07:41:12 +08:00
|
|
|
/* Defined if alloc_size attribute is supported. */
|
|
|
|
#undef JEMALLOC_HAVE_ATTR_ALLOC_SIZE
|
|
|
|
|
2013-12-06 13:43:46 +08:00
|
|
|
/*
|
2013-12-08 03:53:26 +08:00
|
|
|
* Define overrides for non-standard allocator-related functions if they are
|
|
|
|
* present on the system.
|
2013-12-06 13:43:46 +08:00
|
|
|
*/
|
|
|
|
#undef JEMALLOC_OVERRIDE_MEMALIGN
|
|
|
|
#undef JEMALLOC_OVERRIDE_VALLOC
|
|
|
|
|
2012-10-10 07:20:10 +08:00
|
|
|
/*
|
|
|
|
* At least Linux omits the "const" in:
|
|
|
|
*
|
|
|
|
* size_t malloc_usable_size(const void *ptr);
|
|
|
|
*
|
|
|
|
* Match the operating system's prototype.
|
|
|
|
*/
|
|
|
|
#undef JEMALLOC_USABLE_SIZE_CONST
|
2013-12-06 13:43:46 +08:00
|
|
|
|
2015-07-11 05:33:00 +08:00
|
|
|
/*
|
|
|
|
* If defined, specify throw() for the public function prototypes when compiling
|
|
|
|
* with C++. The only justification for this is to match the prototypes that
|
|
|
|
* glibc defines.
|
|
|
|
*/
|
|
|
|
#undef JEMALLOC_USE_CXX_THROW
|
|
|
|
|
2013-12-06 13:43:46 +08:00
|
|
|
/* sizeof(void *) == 2^LG_SIZEOF_PTR. */
|
|
|
|
#undef LG_SIZEOF_PTR
|