当前位置:   article > 正文

Android start stop 重启framework_android 重启framework

android 重启framework

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

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

start.c

  1. #include <string.h>  
  2. #include <stdio.h>  
  3. #include <stdlib.h>  
  4.   
  5. #include <cutils/properties.h>  
  6.   
  7. int start_main(int argc, char *argv[])  
  8. {  
  9.     if(argc > 1) {  
  10.         property_set("ctl.start", argv[1]);  
  11.     } else {  
  12.         /* defaults to starting the common services stopped by stop.c */  
  13.         property_set("ctl.start""netd");  
  14.         property_set("ctl.start""surfaceflinger");  
  15.         property_set("ctl.start""zygote");  
  16.         property_set("ctl.start""zygote_secondary");  
  17.     }  
  18.   
  19.     return 0;  
  20. }  

stop.c

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <cutils/properties.h>
  4. int stop_main(int argc, char *argv[])
  5. {
  6. if(argc > 1) {
  7. property_set("ctl.stop", argv[1]);
  8. } else{
  9. /* defaults to stopping the common services */
  10. property_set("ctl.stop", "zygote_secondary");
  11. property_set("ctl.stop", "zygote");
  12. property_set("ctl.stop", "surfaceflinger");
  13. property_set("ctl.stop", "netd");
  14. }
  15. return 0;
  16. }


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

闽ICP备14008679号