summaryrefslogtreecommitdiffstats
path: root/toolbox/stop.c
blob: 05baffd3827156f02efd67f3324051e9918b71a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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;
}