[Tsan] Fix the signal_recursive.cc test to build on FreeBSD

Differential Revision: http://reviews.llvm.org/D5841

llvm-svn: 220550
This commit is contained in:
Viktor Kutuzov 2014-10-24 09:20:20 +00:00
parent 3866e52803
commit 9003426e2f
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@
#include <stdlib.h>
#include <stdio.h>
static const int kSigSuspend = SIGPWR;
static const int kSigRestart = SIGXCPU;
static const int kSigSuspend = SIGUSR1;
static const int kSigRestart = SIGUSR2;
static sigset_t g_suspend_handler_mask;
static sem_t g_thread_suspend_ack_sem;