diff options
Diffstat (limited to 'toolbox/stop.c')
-rw-r--r-- | toolbox/stop.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/toolbox/stop.c b/toolbox/stop.c index 05baffd..460f377 100644 --- a/toolbox/stop.c +++ b/toolbox/stop.c @@ -10,11 +10,10 @@ int stop_main(int argc, char *argv[]) if(argc > 1) { property_set("ctl.stop", argv[1]); } else{ - /* default to "stop runtime" "stop zygote" */ - property_set("ctl.stop", "runtime"); + /* defaults to stopping the common services */ property_set("ctl.stop", "zygote"); + property_set("ctl.stop", "surfaceflinger"); } return 0; } - |