Searched refs:SIGABRT (Results 1 - 25 of 61) sorted by relevance

123

/openbsd-current/lib/libc/stdlib/
H A Dabort.c45 * don't block SIGABRT to give any handler a chance; we ignore
48 sigdelset(&mask, SIGABRT);
51 (void)raise(SIGABRT);
54 * if SIGABRT ignored, or caught and the handler returns, do
59 (void)sigaction(SIGABRT, &sa, NULL);
61 (void)raise(SIGABRT);
/openbsd-current/lib/libc/sys/
H A Dstack_protector.c59 sigdelset(&mask, SIGABRT);
77 sigaction(SIGABRT, &sa, NULL);
79 thrkill(0, SIGABRT, NULL);
/openbsd-current/gnu/usr.bin/perl/plan9/
H A Dplan9ish.h98 #ifndef SIGABRT
99 # define SIGABRT SIGILL macro
104 #define ABORT() kill(PerlProc_getpid(),SIGABRT);
/openbsd-current/regress/sys/kern/pledge/sigabrt/
H A Dsigabrt.c28 printf("forbidden STDIO in SIGABRT handler\n");
34 /* install SIGABRT handler */
35 signal(SIGABRT, &handler);
/openbsd-current/gnu/usr.bin/perl/
H A Dunixish.h108 #ifndef SIGABRT
109 # define SIGABRT SIGILL macro
114 #define ABORT() kill(PerlProc_getpid(),SIGABRT);
/openbsd-current/regress/lib/libc/setjmp/
H A Djmptest.c75 warnx("kill(SIGABRT) succeeded");
108 if (sigaction(SIGABRT, &sa, NULL) == -1)
113 if (sigaddset(&ss, SIGABRT) == -1)
123 kill(i, SIGABRT);
125 errx(1, "kill(SIGABRT) failed");
/openbsd-current/gnu/llvm/lldb/tools/debugserver/source/
H A DSysSignal.cpp29 case SIGABRT:
30 return "SIGABRT"; // 6 abort()
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dcoremaker.c114 sigaction (SIGABRT, (struct sigaction *)0, &sa);
116 sigaction (SIGABRT, &sa, (struct sigaction *)0);
H A Dsigall.c797 kill (getpid (), SIGABRT);
1057 #if defined(SIGLOST) && (!defined(SIGABRT) || SIGLOST != SIGABRT)
1586 signal (SIGABRT, handle_ABRT);
1653 #if defined(SIGLOST) && (!defined(SIGABRT) || SIGLOST != SIGABRT)
796 kill (getpid (), SIGABRT); local
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.inc103 COMMON_FLAG_HANDLE_SIGNAL_HELP(SIGABRT))
H A Dsanitizer_stoptheworld_netbsd_libcdep.cpp146 static const int kSyncSignals[] = {SIGABRT, SIGILL, SIGFPE, SIGSEGV,
165 if (signum == SIGABRT)
173 internal__exit((signum == SIGABRT) ? 1 : 2);
H A Dsanitizer_stoptheworld_linux_libcdep.cpp239 static const int kSyncSignals[] = { SIGABRT, SIGILL, SIGFPE, SIGSEGV, SIGBUS,
264 if (signum == SIGABRT)
272 internal__exit((signum == SIGABRT) ? 1 : 2);
H A Dsanitizer_posix_libcdep.cpp133 // If we are handling SIGABRT, unhandle it first.
135 if (GetHandleSignalMode(SIGABRT) != kHandleSignalNo) {
139 internal_sigaction(SIGABRT, &sigact, nullptr);
215 MaybeInstallSigaction(SIGABRT, handler);
/openbsd-current/regress/lib/libc/malloc/malloc_threaderr/
H A Dmalloc_threaderr.c61 signal(SIGABRT, catch);
/openbsd-current/sys/sys/
H A Dsignal.h56 #define SIGABRT 6 /* abort() */ macro
58 #define SIGIOT SIGABRT /* compatibility */
/openbsd-current/gnu/usr.bin/binutils/gdb/signals/
H A Dsignals.c61 {"SIGABRT", "Aborted"},
249 questionable; seems like by now people should call it SIGABRT
297 #if defined (SIGABRT)
298 if (hostsig == SIGABRT)
550 #if defined (SIGABRT)
552 return SIGABRT;
/openbsd-current/usr.bin/aucat/
H A Dutils.c138 (void)kill(getpid(), SIGABRT); local
/openbsd-current/usr.bin/sndiod/
H A Dutils.c138 (void)kill(getpid(), SIGABRT); local
/openbsd-current/regress/lib/libc/sys/
H A Dt_fork.c142 int expect_core = (sig == SIGABRT) ? 1 : 0;
205 case SIGABRT:
261 RAISE(raise6, SIGABRT) /* regular abort trap */
/openbsd-current/gnu/lib/libiberty/src/
H A Dstrsignal.c95 /* Put SIGIOT before SIGABRT, so that if SIGIOT==SIGABRT then SIGABRT
96 overrides SIGIOT. SIGABRT is in ANSI and POSIX.1, and SIGIOT isn't. */
100 #if defined (SIGABRT)
101 ENTRY(SIGABRT, "SIGABRT", "Aborted"),
/openbsd-current/gnu/usr.bin/perl/hints/
H A Dcatamount.sh315 case SIGABRT:
333 signal(SIGABRT, catasighandle);
/openbsd-current/gnu/usr.bin/cvs/src/
H A Dmain.c337 #ifdef SIGABRT
338 case SIGABRT:
775 #ifdef SIGABRT
776 (void) SIG_register (SIGABRT, main_cleanup);
/openbsd-current/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerUtilPosix.cpp130 SetSigaction(SIGABRT, CrashHandler);
H A DFuzzerUtilWindows.cpp142 if (SIG_ERR == signal(SIGABRT, CrashHandler)) {
/openbsd-current/regress/lib/libc/malloc/malloc_errs/
H A Dmalloc_errs.c318 WTERMSIG(status) != SIGABRT)

Completed in 144 milliseconds

123