当前位置:   article > 正文

android编程stop,Android start stop命令

ctl.stop

我们经常使用stop start命令来重启framework,我们来看下其代码

是在system/core/toolbox下面,原理很简单就是利用ctl属性来控制进程。

start.c

#include

#include

#include

#include

int start_main(int argc, char *argv[])

{

if(argc > 1) {

property_set("ctl.start", argv[1]);

} else {

/* defaults to starting the common services stopped by stop.c */

property_set("ctl.start", "netd");

property_set("ctl.start", "surfaceflinger");

property_set("ctl.start", "zygote");

property_set("ctl.start", "zygote_secondary");

}

return 0;

}

stop.c

#include

#include

#include

int stop_main(int argc, char *argv[])

{

if(argc > 1) {

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");

property_set("ctl.stop", "netd");

}

return 0;

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/945176
推荐阅读
相关标签
  

闽ICP备14008679号