Skip to content

Commit cc98ffb

Browse files
authored
[tsan][test] Remove some unneded debug comments in a tsan test (#86896)
I introduced this test in #86537, let's remove some unneeded debugging comments. This PR was initially also moving the test to linux directory but looks like it's already done by 17ab9e6 .
1 parent 64f0410 commit cc98ffb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

compiler-rt/test/tsan/Linux/signal_in_futex_wait.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,13 @@ class Mutex {
5757
Mutex mutex;
5858

5959
void *Thread(void *x) {
60-
// fprintf(stderr, "canova here thread 0\n");
6160
// Waiting for the futex.
6261
mutex.lock();
63-
// fprintf(stderr, "canova here thread 1\n");
6462
// Finished waiting.
6563
return nullptr;
6664
}
6765

6866
static void SigprofHandler(int signal, siginfo_t *info, void *context) {
69-
// fprintf(stderr, "canova here sigprof handler\n");
7067
// Unlock the futex.
7168
mutex.unlock();
7269
}

0 commit comments

Comments
 (0)