strace追踪多线程程序


方法一

先用ps -mp pid或者top -H查出线程pid。

然后strace -p pid追踪其中一个线程。

方法二

直接用strace -fp pid追踪进程下所有线

你可能感兴趣的:(多线程,线程,Android开发,android应用)