mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
improve support for minix, PR6280, patch by
Kees van Reeuwijk! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95946 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -52,7 +52,16 @@ static const int *const IntSigsEnd =
|
||||
// KillSigs - Signals that are synchronous with the program that will cause it
|
||||
// to die.
|
||||
static const int KillSigs[] = {
|
||||
SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ
|
||||
SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV
|
||||
#ifdef SIGSYS
|
||||
, SIGSYS
|
||||
#endif
|
||||
#ifdef SIGXCPU
|
||||
, SIGXCPU
|
||||
#endif
|
||||
#ifdef SIGEMT
|
||||
, SIGXFSZ
|
||||
#endif
|
||||
#ifdef SIGEMT
|
||||
, SIGEMT
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user