Go to the source code of this file.
◆ assert
Value: do { \
eprintf( \
"<jemalloc>: %s:%d: Failed assertion: \"%s\"\n", \
__FILE__, __LINE__, #
e); \
abort(); \
} \
} while (0)
static const bool config_debug
Definition at line 6 of file assert.h.
◆ assert_not_implemented
#define assert_not_implemented |
( |
|
e | ) |
|
Value: do { \
not_implemented(); \
} while (0)
Definition at line 39 of file assert.h.
◆ not_implemented
#define not_implemented |
( |
| ) |
|
Value: do { \
eprintf("<jemalloc>: %s:%d: Not implemented\n", \
__FILE__, __LINE__); \
abort(); \
} \
} while (0)
Definition at line 29 of file assert.h.
◆ not_reached
Value: do { \
eprintf( \
"<jemalloc>: %s:%d: Unreachable code reached\n", \
__FILE__, __LINE__); \
abort(); \
} \
unreachable(); \
} while (0)
Definition at line 17 of file assert.h.