diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/message_loop.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/message_loop.cc b/base/message_loop.cc index 3b13617..437df5f 100644 --- a/base/message_loop.cc +++ b/base/message_loop.cc @@ -388,6 +388,10 @@ void MessageLoop::ReloadWorkQueue() { bool MessageLoop::DeletePendingTasks() { bool did_work = !work_queue_.empty(); +#if defined(OS_POSIX) + LOG(INFO) << "MessageLoop::DeletePendingTasks(): RUNNING_ON_VALGRIND=" + << RUNNING_ON_VALGRIND; +#endif while (!work_queue_.empty()) { PendingTask pending_task = work_queue_.front(); work_queue_.pop(); |