我是靠谱客的博主 自觉皮带,最近开发中收集的这篇文章主要介绍ptrace 获取程序实时的堆栈,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#!/bin/bash
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"
reg_trace="info all-registers"
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 full"
reg_trace="thread apply all info all-registers"
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 full"
reg_trace="thread apply all info all-registers"
fi
fi
GDB=${GDB:-/usr/bin/gdb}
PMAP=${PMAP:-/usr/bin/pmap}
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 <<EOF 2>&1 |
$backtrace
EOF
/bin/sed -n 
-e 's/^(gdb) //' 
-e '/^#/p' 
-e '/^ /p' 
-e '/^Thread/p'
# Run GDB, strip out unwanted noise.
$GDB --quiet $readnever -nx /proc/$1/exe $1 <<EOF 2>&1 |
$reg_trace
EOF
/bin/sed -n 
-e 's/^(gdb) //' 
-e '/^#/p' 
-e '/^ /p' 
-e '/^Thread/p'
$PMAP -d $1

最后

以上就是自觉皮带为你收集整理的ptrace 获取程序实时的堆栈的全部内容,希望文章能够帮你解决ptrace 获取程序实时的堆栈所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(68)

评论列表共有 0 条评论

立即
投稿
返回
顶部