mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
CrashRecovery: Fix raise() override to actually send the right signal, *cough*.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116072 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bb16824dc3
commit
95b4672234
@ -275,7 +275,7 @@ void llvm::sys::PrintStackTraceOnErrorSignal() {
|
||||
#ifdef __APPLE__
|
||||
|
||||
int raise(int sig) {
|
||||
return pthread_kill(pthread_self(), SIGABRT);
|
||||
return pthread_kill(pthread_self(), sig);
|
||||
}
|
||||
|
||||
void __assert_rtn(const char *func,
|
||||
|
Loading…
x
Reference in New Issue
Block a user