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

Unified Diff: ipc/ipc_channel_posix.cc

Issue 288007: Linux: remove the pipe errors that we spew all the time. (Closed)
Patch Set: Created 11 years, 2 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: ipc/ipc_channel_posix.cc
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc
index e8065fe0a68a180b945532ee523dcde9f9d66b23..f6a6367c63068e34e123eb84535a1db9b75f1d05 100644
--- a/ipc/ipc_channel_posix.cc
+++ b/ipc/ipc_channel_posix.cc
@@ -447,6 +447,8 @@ bool Channel::ChannelImpl::ProcessIncomingMessages() {
// to the console.
return false;
#endif // defined(OS_MACOSX)
+ } else if (errno == ECONNRESET) {
+ return false;
} else {
PLOG(ERROR) << "pipe error (" << pipe_ << ")";
return false;
« 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