Home | History | Annotate | Download | only in stdlib

Lines Matching full:abort

35 #define ABORT
127 By default detected errors cause the program to abort (calling
128 "abort()"). You can override this to instead proceed past
280 ABORT default: defined as abort()
281 Defines how to abort on failed checks. On most systems, a failed
285 abort(). It's not very useful to do more than this because many
288 abort. Also, most compilers know that abort() does not return, so
300 generates slower code than the default abort policy.
317 ABORT_ON_ASSERT_FAILURE cause assertions failures to call abort(),
530 #ifndef ABORT
531 #define ABORT abort()
532 #endif /* ABORT */
726 freed, free(p) will by default cause the current program to abort.
1202 #include <stdlib.h> /* for abort() */
1206 #define assert(x) if(!(x)) ABORT
2193 #define CORRUPTION_ERROR_ACTION(m) ABORT
2197 #define USAGE_ERROR_ACTION(m,p) ABORT
2532 ABORT;