Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1874)

Unified Diff: base/message_loop.cc

Issue 2868020: Log the value of RUNNING_ON_VALGRIND in message_loop.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_loop.cc
===================================================================
--- base/message_loop.cc (revision 50337)
+++ base/message_loop.cc (working copy)
@@ -388,6 +388,10 @@
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();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698