projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdbd1d2
)
[tsan] Update fork_atexit.cc to consistently print to stderr (and not stdout)
author
Kuba Brecka
<kuba.brecka@gmail.com>
Sat, 17 Sep 2016 14:39:53 +0000
(14:39 +0000)
committer
Kuba Brecka
<kuba.brecka@gmail.com>
Sat, 17 Sep 2016 14:39:53 +0000
(14:39 +0000)
llvm-svn: 281821
compiler-rt/test/tsan/fork_atexit.cc
patch
|
blob
|
history
diff --git
a/compiler-rt/test/tsan/fork_atexit.cc
b/compiler-rt/test/tsan/fork_atexit.cc
index
15cf0a2
..
6e3a2f5
100644
(file)
--- a/
compiler-rt/test/tsan/fork_atexit.cc
+++ b/
compiler-rt/test/tsan/fork_atexit.cc
@@
-7,7
+7,7
@@
#include <sys/wait.h>
void foo() {
-
printf(
"CHILD ATEXIT\n");
+
fprintf(stderr,
"CHILD ATEXIT\n");
}
void *worker(void *unused) {