Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6c663922 authored by Chirayu Desai's avatar Chirayu Desai Committed by Steve Kondik
Browse files

toolbox: new applet restart

- stop + start
- for the lazy.

Change-Id: Ie0ef0e27f5b7819a5575ece6b82c5813f4e38420
parent 0ae3d7ed
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -58,6 +58,7 @@ TOOLS := \
	du \
	md5 \
	clear \
	restart \
	getenforce \
	setenforce \
	chcon \

toolbox/restart.c

0 → 100644
+23 −0
Original line number Diff line number Diff line
#include <string.h>
#include <stdio.h>
#include <stdlib.h>

#include <cutils/properties.h>

int restart_main(int argc, char *argv[])
{
    char buf[1024];

    if(argc > 1) {
        property_set("ctl.stop", argv[1]);
        property_set("ctl.start", argv[1]);
    } else {
        /* defaults to stopping and starting the common services */
        property_set("ctl.stop", "zygote");
        property_set("ctl.stop", "surfaceflinger");
        property_set("ctl.start", "surfaceflinger");
        property_set("ctl.start", "zygote");
    }

    return 0;
}