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

Unified Diff: content/public/android/java/src/org/chromium/content/app/ChildProcessService.java

Issue 146693011: Terminate process in onDestroy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use System.exit Created 6 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 | « content/child/child_thread.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/android/java/src/org/chromium/content/app/ChildProcessService.java
diff --git a/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java b/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java
index 2898d423444fad86298329a9fdf2780367cb0972..e551aed667306c3d7ce24e059f0b8ea638d5c35c 100644
--- a/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java
+++ b/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java
@@ -184,23 +184,13 @@ public class ChildProcessService extends Service {
public void onDestroy() {
Log.i(TAG, "Destroying ChildProcessService pid=" + Process.myPid());
super.onDestroy();
- if (mCommandLineParams == null) {
- // This process was destroyed before it even started. Nothing more to do.
- return;
- }
- synchronized (mMainThread) {
- try {
- while (!mLibraryInitialized) {
- // Avoid a potential race in calling through to native code before the library
- // has loaded.
- mMainThread.wait();
- }
- } catch (InterruptedException e) {
- }
- }
- // Try to shutdown the MainThread gracefully, but it might not
- // have chance to exit normally.
- nativeShutdownMainThread();
+
+ // The Android OS may resuse a process to start new service instances,
+ // but a renderer expects to start in a clean slate. Thus we need to
+ // reliably and quickly get rid of this process before there's a chance
+ // it get's recycled. See http://crbug.com/338709 as well as
+ // https://codereview.chromium.org/12288017
+ System.exit(0);
bulach 2014/02/03 21:57:40 I can try to dig further from the android side, bu
ppi 2014/11/07 14:16:35 If System.exit(0) is frowned up... would this work
Fredrik Öhrn 2014/11/07 15:00:43 I'm not sure exactly what supposedly gets messed u
ppi 2014/11/14 10:29:58 Thanks for looking into it! Process.killProcess(Pr
ppi 2014/12/12 19:23:06 We had a discussion with the framework folks. Plea
}
@Override
@@ -300,6 +290,4 @@ public class ChildProcessService extends Service {
* Force the child process to exit.
*/
private static native void nativeExitChildProcess();
-
- private native void nativeShutdownMainThread();
}
« no previous file with comments | « content/child/child_thread.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698