Skip to content

Commit 8226d5c

Browse files
authored
Merge 1857756 into af441fc
2 parents af441fc + 1857756 commit 8226d5c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/thread_manager.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ class ThreadManager {
2222
return start_stop_barrier_.wait();
2323
}
2424

25-
void NotifyThreadComplete() EXCLUDES(end_cond_mutex_) {
25+
void NotifyThreadComplete() {
2626
start_stop_barrier_.removeThread();
2727
if (--alive_threads_ == 0) {
28-
MutexLock lock(end_cond_mutex_);
2928
end_condition_.notify_all();
3029
}
3130
}

0 commit comments

Comments
 (0)