Problem with Runtime.exec and Android

前端 未结 1 627
春和景丽
春和景丽 2020-12-21 20:50

I have an issue when I\'m using Runtime.exec with my Android device and just can\'t figure out why it happens...

Here is an example of the tests I did :



        
相关标签:
1条回答
  • 2020-12-21 21:04

    That's most likely the bug fixed in this Github commit. In essence, it deadlocks directly after fork() but before doing the actual exec() because somebody tried to malloc.

    0 讨论(0)
提交回复
热议问题