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

Unified Diff: base/message_pump_libevent.cc

Issue 18378: Added more logging in debug builds for some failure passes, hopefully this... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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_pump_libevent.cc
===================================================================
--- base/message_pump_libevent.cc (revision 8304)
+++ base/message_pump_libevent.cc (working copy)
@@ -5,6 +5,7 @@
#include "base/message_pump_libevent.h"
#include <fcntl.h>
+#include <errno.h>
#include "base/logging.h"
#include "base/scoped_nsautorelease_pool.h"
@@ -81,12 +82,18 @@
bool MessagePumpLibevent::Init() {
int fds[2];
- if (pipe(fds))
+ if (pipe(fds)) {
+ DLOG(ERROR) << "pipe() failed, errno: " << errno;
return false;
- if (SetNonBlocking(fds[0]))
+ }
+ if (SetNonBlocking(fds[0])) {
+ DLOG(ERROR) << "SetNonBlocking for pipe fd[0] failed, errno: " << errno;
return false;
- if (SetNonBlocking(fds[1]))
+ }
+ if (SetNonBlocking(fds[1])) {
+ DLOG(ERROR) << "SetNonBlocking for pipe fd[1] failed, errno: " << errno;
return false;
+ }
wakeup_pipe_out_ = fds[0];
wakeup_pipe_in_ = fds[1];
« 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