am 9cbc8088: am 5f6beb12: Merge ""stop" / "start must apply to the secondary zygote as well."

* commit '9cbc808827950ae70b2a0bb9cb92f30fd1fbc724':
  "stop" / "start must apply to the secondary zygote as well.
This commit is contained in:
Narayan Kamath 2014-05-15 09:20:27 +00:00 committed by Android Git Automerger
commit b3bd09cda0
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ int start_main(int argc, char *argv[])
/* defaults to starting the common services stopped by stop.c */
property_set("ctl.start", "surfaceflinger");
property_set("ctl.start", "zygote");
property_set("ctl.start", "zygote_secondary");
}
return 0;

View File

@ -11,6 +11,7 @@ int stop_main(int argc, char *argv[])
property_set("ctl.stop", argv[1]);
} else{
/* defaults to stopping the common services */
property_set("ctl.stop", "zygote_secondary");
property_set("ctl.stop", "zygote");
property_set("ctl.stop", "surfaceflinger");
}