| Index: content/browser/zygote_host/zygote_host_impl_linux.cc
|
| diff --git a/content/browser/zygote_host/zygote_host_impl_linux.cc b/content/browser/zygote_host/zygote_host_impl_linux.cc
|
| index bbaa32a3d3a4554c24633dfb2c7550346e5006bd..308ad5d5a772aaeaf251d519419b8832f08af82f 100644
|
| --- a/content/browser/zygote_host/zygote_host_impl_linux.cc
|
| +++ b/content/browser/zygote_host/zygote_host_impl_linux.cc
|
| @@ -451,10 +451,12 @@ void ZygoteHostImpl::EnsureProcessTerminated(pid_t process) {
|
|
|
| base::TerminationStatus ZygoteHostImpl::GetTerminationStatus(
|
| base::ProcessHandle handle,
|
| + bool known_dead,
|
| int* exit_code) {
|
| DCHECK(init_);
|
| Pickle pickle;
|
| pickle.WriteInt(kZygoteCommandGetTerminationStatus);
|
| + pickle.WriteBool(known_dead);
|
| pickle.WriteInt(handle);
|
|
|
| // Set this now to handle the early termination cases.
|
|
|