Home Page
Search
\begin{md} # Manjaro 中无法使用 pstack ## 介绍 pstack 常用的功能是检查死锁,查看线程堆栈等。但是在 Manjaro 下没有这个包。在网上找到了一篇博客,里面使用脚本调用 gdb 实现了 pstack 的功能。可以通过下面给出的原文链接看看设计思路。 ## 脚本 ``` bash #!/bin/sh if test $# -ne 1; then echo "Usage: `basename $0 .sh`
" 1>&2 exit 1 fi if test ! -r /proc/$1; then echo "Process $1 not found." 1>&2 exit 1 fi # GDB doesn't allow "thread apply all bt" when the process isn't # threaded; need to peek at the process to determine if that or the # simpler "bt" should be used. backtrace="bt" if test -d /proc/$1/task ; then # Newer kernel; has a task/ directory. if test `/bin/ls /proc/$1/task | /usr/bin/wc -l` -gt 1 2>/dev/null ; then backtrace="thread apply all bt" fi elif test -f /proc/$1/maps ; then # Older kernel; go by it loading libpthread. if /bin/grep -e libpthread /proc/$1/maps > /dev/null 2>&1 ; then backtrace="thread apply all bt" fi fi GDB=${GDB:-/usr/bin/gdb} if $GDB -nx --quiet --batch --readnever > /dev/null 2>&1; then readnever=--readnever else readnever= fi # Run GDB, strip out unwanted noise. $GDB --quiet $readnever -nx /proc/$1/exe $1 <
&1 | $backtrace EOF /bin/sed -n \ -e 's/^(gdb) //' \ -e '/^#/p' \ -e '/^Thread/p' ``` 脚本内容比较简单,不分析了。 ## 参考 [Linux 下 pstack 的实现](http://blog.yufeng.info/archives/873) \end{md}
Home Page