summaryrefslogtreecommitdiffstats
path: root/toolbox/stop.c
diff options
context:
space:
mode:
Diffstat (limited to 'toolbox/stop.c')
-rw-r--r--toolbox/stop.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/toolbox/stop.c b/toolbox/stop.c
deleted file mode 100644
index 05baffd38..000000000
--- a/toolbox/stop.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-
-#include <cutils/properties.h>
-
-int stop_main(int argc, char *argv[])
-{
- char buf[1024];
-
- if(argc > 1) {
- property_set("ctl.stop", argv[1]);
- } else{
- /* default to "stop runtime" "stop zygote" */
- property_set("ctl.stop", "runtime");
- property_set("ctl.stop", "zygote");
- }
-
- return 0;
-}
-