mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 01:29:52 +00:00
[tsan] Update signal_cond.cc to write to stderr intead of stdout
llvm-svn: 281820
This commit is contained in:
parent
e990652542
commit
bdbd1d2848
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user