在 zygote 之外运行本机 android 可执行文件

发布于 2024-12-19 06:00:11 字数 41 浏览 0 评论 0原文

是否可以在 zygote 之外启动本机 android 可执行文件?

Is it possible to start a native android executable file outside of zygote?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空心↖ 2024-12-26 06:00:11

我发现在我的本机应用程序中使用以下代码对您的应用程序进行守护进程会使其与 zygote 分离。

/* Daemonize */ 
daemon(0, 0); 
umask(0); 
alarm(0);

我不太确定它是否真的与 zygote 分离,但这就是 pstree 向我展示的内容。唯一的缺点是所有输出将不再被打印。就我而言,我不需要向用户打印任何内容,所以这很好。

I found out that daemonizing your application using the below code in my native application makes it detach from zygote.

/* Daemonize */ 
daemon(0, 0); 
umask(0); 
alarm(0);

I'm not really sure if it really is detached from zygote but that's what pstree shows me. The only downside is that all output will not be printed anymore. In my case I don't need to print anything to the user so that is fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文