Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要编写一个服务,该服务必须在 android 启动时从 init.rc 启动。
如果我在具有睡眠功能的服务守护进程 shell 脚本中给出了巨大的延迟,这种延迟是否会增加 android 启动时间?
该服务不依赖于任何其他事件。
问候,
我猜它不会影响启动时间。init 在新的分叉进程中启动新服务,因此服务中的睡眠不会影响启动时间。
但是,也许值得在启动后添加您的服务?