[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:
Ed Maste 2016-02-17 18:25:27 +00:00
parent a36d555c33
commit cef252ea4c
1 changed files with 1 additions and 1 deletions

View File

@ -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