[tsan] Update signal_cond.cc to write to stderr intead of stdout

llvm-svn: 281820
This commit is contained in:
Kuba Brecka 2016-09-17 14:33:36 +00:00
parent e990652542
commit bdbd1d2848

View File

@ -14,7 +14,7 @@ pthread_cond_t cond;
void sig_handler(int sig) {
(void)sig;
write(1, "SIGNAL\n", sizeof("SIGNAL\n") - 1);
write(2, "SIGNAL\n", sizeof("SIGNAL\n") - 1);
barrier_wait(&barrier);
}