diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/thread_list.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread_list.cc b/src/thread_list.cc index e288878a8e..601a93f77b 100644 --- a/src/thread_list.cc +++ b/src/thread_list.cc @@ -403,7 +403,7 @@ void ThreadList::SuspendAllDaemonThreads() { Thread* thread = *it; // This is only run after all non-daemon threads have exited, so the remainder should all be // daemons. - CHECK(thread->IsDaemon()); + CHECK(thread->IsDaemon()) << *thread; if (thread != self) { thread->ModifySuspendCount(self, +1, false); } |