Android:是否可以观察系统调用?
我想知道是否有一种方法可以使用服务来观察 Android 中的系统调用...使用 Java 是否可以远程实现类似的操作,或者我是否必须深入了解本机代码...?
谢谢
I was wondering if there is a way to observe the system calls in Android using a service... Is something like this remotely possible using Java or do I have to get down into native code...?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您 root 手机并安装 Debian,您应该能够从存储库安装 strace。 Android 版 Debian 安装指南位于此处。
If you root the phone and install Debian, you should be able to install strace from the repositories. Debian install guide for Android here.
系统调用是指电话铃响、wifi 连接等时的调用吗?这些事情是由广播意图处理的。
By system calls do you mean when the phone rings, wifi connects and etc? Those things are handled by Broadcast intents.