Lines Matching defs:ABORT
91 By default detected errors cause the program to abort (calling
92 "abort()"). You can override this to instead proceed past
244 ABORT default: defined as abort()
245 Defines how to abort on failed checks. On most systems, a failed
249 abort(). It's not very useful to do more than this because many
252 abort. Also, most compilers know that abort() does not return, so
264 generates slower code than the default abort policy.
281 ABORT_ON_ASSERT_FAILURE cause assertions failures to call abort(),
493 #ifndef ABORT
494 #define ABORT abort()
495 #endif /* ABORT */
682 freed, free(p) will by default cause the current program to abort.
1156 #include <stdlib.h> /* for abort() */
1160 #define assert(x) if(!(x)) ABORT
1900 (((v) != IS_MMAPPED_BIT) ? (ABORT, (v)) : \
1904 (S)->exec_offset) ? (ABORT, (v)) : \
2183 #define CORRUPTION_ERROR_ACTION(m) ABORT
2187 #define USAGE_ERROR_ACTION(m,p) ABORT
2522 ABORT;