andriod zygote

懵懂的女人 提交于 2019-11-29 18:38:10

/system/bin/app_process64   作为service 被启动,启动后comm:改成main ,cmdline 改成 zygote ,

main ->  runtime.start( com.android.internal.os.ZygoteInit)   调用在frameworks/base/core/jni/AndroidRuntime.cpp文件中的父类   AndriodRuntime::start ()  {启动虚拟机)  }  }  

c语言里通过JNI语法直接调用了java语言的 com.android.internal.os.ZygoteInit 类在 frameworks/base/core/java/com/android/internal/os/ZygoteInit.java

main-> startSystemServer()  -> Zygote.forkSystemServer { nativeForkSystemServer{}    }   

                                             ->  handleSystemServerProcess {} 

nativeForkSystemServer :   JAVA里面调用C  ,jni 实现在frameworks/base/core/jni/com_android_internal_os_Zygote.cpp下的com_android_internal_os_Zygote_nativeForkSystemServer() : fork  出来的进程进程,改了 comm 到system_server

-> ForkAndSpecializeCommon -> SetThreadName-> pthread_setname_np

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!