jemalloc_defs.h.in revision 0b8f0bc0a41ad6db469097bf257d85a44f839f5f
1/* Defined if __attribute__((...)) syntax is supported. */
2#undef JEMALLOC_HAVE_ATTR
3
4/* Defined if alloc_size attribute is supported. */
5#undef JEMALLOC_HAVE_ATTR_ALLOC_SIZE
6
7/*
8 * Define overrides for non-standard allocator-related functions if they are
9 * present on the system.
10 */
11#undef JEMALLOC_OVERRIDE_MEMALIGN
12#undef JEMALLOC_OVERRIDE_VALLOC
13
14/*
15 * At least Linux omits the "const" in:
16 *
17 *   size_t malloc_usable_size(const void *ptr);
18 *
19 * Match the operating system's prototype.
20 */
21#undef JEMALLOC_USABLE_SIZE_CONST
22
23/*
24 * If defined, specify throw() for the public function prototypes when compiling
25 * with C++.  The only justification for this is to match the prototypes that
26 * glibc defines.
27 */
28#undef JEMALLOC_USE_CXX_THROW
29
30/* sizeof(void *) == 2^LG_SIZEOF_PTR. */
31#undef LG_SIZEOF_PTR
32