forked from OSchip/llvm-project
[tsan] Fix signal number definitions for OS X
On OS X, SIGBUS is 10 and SIGSYS is 12. Differential Revision: http://reviews.llvm.org/D14946 llvm-svn: 253983
This commit is contained in:
parent
440d08600b
commit
8443d187e6
|
@ -124,7 +124,7 @@ const int SIGFPE = 8;
|
|||
const int SIGSEGV = 11;
|
||||
const int SIGPIPE = 13;
|
||||
const int SIGTERM = 15;
|
||||
#ifdef __mips__
|
||||
#if defined(__mips__) || SANITIZER_MAC
|
||||
const int SIGBUS = 10;
|
||||
const int SIGSYS = 12;
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue