server-skynet-source-3rd-je.../include/jemalloc/jemalloc_defs.h.in

25 lines
571 B
C
Raw Normal View History

/* Defined if __attribute__((...)) syntax is supported. */
#undef JEMALLOC_HAVE_ATTR
2012-03-03 09:47:37 +08:00
/* Support the experimental API. */
#undef JEMALLOC_EXPERIMENTAL
2013-12-06 13:43:46 +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
/*
* 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
/* sizeof(void *) == 2^LG_SIZEOF_PTR. */
#undef LG_SIZEOF_PTR