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

Unified Diff: content/browser/browser_child_process_host_impl.cc

Issue 11316261: Linux: inform the Zygote when it's waiting on a dead process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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
Index: content/browser/browser_child_process_host_impl.cc
diff --git a/content/browser/browser_child_process_host_impl.cc b/content/browser/browser_child_process_host_impl.cc
index b6e1094798a9b5a9cdcff270a7465c4509b77ceb..438884077aaa029f36db482e78cced098b85e7e2 100644
--- a/content/browser/browser_child_process_host_impl.cc
+++ b/content/browser/browser_child_process_host_impl.cc
@@ -194,7 +194,7 @@ base::TerminationStatus BrowserChildProcessHostImpl::GetTerminationStatus(
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
if (!child_process_.get()) // If the delegate doesn't use Launch() helper.
return base::GetTerminationStatus(data_.handle, exit_code);
- return child_process_->GetChildTerminationStatus(exit_code);
+ return child_process_->GetChildTerminationStatus(false, exit_code);
agl 2012/12/04 15:27:55 comment the bool?
jln (very slow on Chromium) 2012/12/04 20:01:25 Done.
}
bool BrowserChildProcessHostImpl::OnMessageReceived(

Powered by Google App Engine
This is Rietveld 408576698