Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/child/child_thread.h" | 5 #include "content/child/child_thread.h" |
| 6 | 6 |
| 7 #include "base/allocator/allocator_extension.h" | 7 #include "base/allocator/allocator_extension.h" |
| 8 #include "base/base_switches.h" | 8 #include "base/base_switches.h" |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 64 // processed (because that message loop is stuck in V8). | 64 // processed (because that message loop is stuck in V8). |
| 65 // | 65 // |
| 66 // One could make the browser SIGKILL the renderers, but that leaves open a | 66 // One could make the browser SIGKILL the renderers, but that leaves open a |
| 67 // large window where a browser failure (or a user, manually terminating | 67 // large window where a browser failure (or a user, manually terminating |
| 68 // the browser because "it's stuck") will leave behind a process eating all | 68 // the browser because "it's stuck") will leave behind a process eating all |
| 69 // the CPU. | 69 // the CPU. |
| 70 // | 70 // |
| 71 // So, we install a filter on the channel so that we can process this event | 71 // So, we install a filter on the channel so that we can process this event |
| 72 // here and kill the process. | 72 // here and kill the process. |
| 73 // | 73 // |
| 74 // We want to kill this process after giving it 30 seconds to run the exit | 74 // We want to kill this process after giving it 60 seconds to run the exit |
| 75 // handlers. SIGALRM has a default disposition of terminating the | 75 // handlers. SIGALRM has a default disposition of terminating the |
| 76 // application. | 76 // application. |
|
Avi (use Gerrit)
2013/08/01 15:17:28
This comment seems a bit untrue. It says "We want
asharif1
2013/08/01 15:22:15
I don't know if I need braces here. Do you?
| |
| 77 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kChildCleanExit)) | 77 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kChildCleanExit)) |
| 78 alarm(30); | 78 alarm(60); |
| 79 else | 79 else |
| 80 _exit(0); | 80 _exit(0); |
| 81 } | 81 } |
| 82 | 82 |
| 83 protected: | 83 protected: |
| 84 virtual ~SuicideOnChannelErrorFilter() {} | 84 virtual ~SuicideOnChannelErrorFilter() {} |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 #endif // OS(POSIX) | 87 #endif // OS(POSIX) |
| 88 | 88 |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 394 // inflight that would addref it. | 394 // inflight that would addref it. |
| 395 Send(new ChildProcessHostMsg_ShutdownRequest); | 395 Send(new ChildProcessHostMsg_ShutdownRequest); |
| 396 } | 396 } |
| 397 | 397 |
| 398 void ChildThread::EnsureConnected() { | 398 void ChildThread::EnsureConnected() { |
| 399 LOG(INFO) << "ChildThread::EnsureConnected()"; | 399 LOG(INFO) << "ChildThread::EnsureConnected()"; |
| 400 base::KillProcess(base::GetCurrentProcessHandle(), 0, false); | 400 base::KillProcess(base::GetCurrentProcessHandle(), 0, false); |
| 401 } | 401 } |
| 402 | 402 |
| 403 } // namespace content | 403 } // namespace content |
| OLD | NEW |