pstack工具查看线程堆栈的方法
Posted clever101
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pstack工具查看线程堆栈的方法相关的知识,希望对你有一定的参考价值。
作者:朱金灿
来源:clever101的专栏
#!/bin/sh
if test $# -ne 1; then
echo "Usage: `basename $0 .sh` <process-id>" 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:-gdb
# Run GDB, strip out unwanted noise.
# --readnever is no longer used since .gdb_index is now in use.
$GDB --quiet -nx $GDBARGS /proc/$1/exe $1 <<EOF 2>&1 |
set width 0
set height 0
set pagination no
$backtrace
EOF
/bin/sed -n \\
-e 's/^\\((gdb) \\)*//' \\
-e '/^#/p' \\
-e '/^Thread/p'
2.pstack工具的使用
如果系统直接装有pstack工具的,用法是pstack pid #pid为进程id
如果系统没有,将上面shell脚本生成一个pstack.sh,复制到/usr/bin目录下,然后
通过chmod 777 /usr/bin/pstack.sh #对pstack.sh授予运行权限,然后
sudo pstack.sh pid #运行pstack.sh需要管理员权限
以上是关于pstack工具查看线程堆栈的方法的主要内容,如果未能解决你的问题,请参考以下文章
利用top命令和pstack排查linux进程CPU使用率过高的问题