forked from OSchip/llvm-project
[tsan] Fix signal number definitions for FreeBSD
The change in r253983 for OS X also applies to FreeBSD. llvm-svn: 261121
This commit is contained in:
parent
a36d555c33
commit
cef252ea4c
|
@ -138,7 +138,7 @@ const int SIGFPE = 8;
|
|||
const int SIGSEGV = 11;
|
||||
const int SIGPIPE = 13;
|
||||
const int SIGTERM = 15;
|
||||
#if defined(__mips__) || SANITIZER_MAC
|
||||
#if defined(__mips__) || SANITIZER_FREEBSD || SANITIZER_MAC
|
||||
const int SIGBUS = 10;
|
||||
const int SIGSYS = 12;
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue