亚洲韩日午夜视频,欧美日韩在线精品一区二区三区,韩国超清无码一区二区三区,亚洲国产成人影院播放,久草新在线,在线看片AV色

您好,歡迎來(lái)到思海網(wǎng)絡(luò),我們將竭誠(chéng)為您提供優(yōu)質(zhì)的服務(wù)! 誠(chéng)征網(wǎng)絡(luò)推廣 | 網(wǎng)站備案 | 幫助中心 | 軟件下載 | 購(gòu)買流程 | 付款方式 | 聯(lián)系我們 [ 會(huì)員登錄/注冊(cè) ]
促銷推廣
客服中心
業(yè)務(wù)咨詢
有事點(diǎn)擊這里…  531199185
有事點(diǎn)擊這里…  61352289
點(diǎn)擊這里給我發(fā)消息  81721488
有事點(diǎn)擊這里…  376585780
有事點(diǎn)擊這里…  872642803
有事點(diǎn)擊這里…  459248018
有事點(diǎn)擊這里…  61352288
有事點(diǎn)擊這里…  380791050
技術(shù)支持
有事點(diǎn)擊這里…  714236853
有事點(diǎn)擊這里…  719304487
有事點(diǎn)擊這里…  1208894568
有事點(diǎn)擊這里…  61352289
在線客服
有事點(diǎn)擊這里…  531199185
有事點(diǎn)擊這里…  61352288
有事點(diǎn)擊這里…  983054746
有事點(diǎn)擊這里…  893984210
當(dāng)前位置:首頁(yè) >> 技術(shù)文章 >> 文章瀏覽
技術(shù)文章

進(jìn)程在做什么 Linux下pstack的實(shí)現(xiàn)

添加時(shí)間:2010-12-8  添加: admin 

   Linux下有時(shí)候我們需要知道一個(gè)進(jìn)程在做什么,比如說(shuō)程序不正常的時(shí)候,他到底在干嗎?最直接的方法就是打印出他所有線程的調(diào)用棧,這樣我們從棧再配合程序代碼就知道程序在干嗎了。

  Linux下這個(gè)工具叫做pstack. 使用方法是

  ?

  # pstack

  Usage: pstack

  當(dāng)然這個(gè)被調(diào)查的程序需要有符號(hào)信息。 比較雷人的是 這個(gè)程序竟然是個(gè)shell腳本,核心實(shí)現(xiàn)是gdb的 thread apply all bt, 我們可以觀摩下他的實(shí)現(xiàn),這個(gè)我們做類似的程序提供了一個(gè)很好的思路:

  ?

  [root@=i ~]# cat `which pstack`

  #!/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'

分享到:

頂部 】 【 關(guān)閉
版權(quán)所有:佛山思海電腦網(wǎng)絡(luò)有限公司 ©1998-2024 All Rights Reserved.
聯(lián)系電話:(0757)22630313、22633833
中華人民共和國(guó)增值電信業(yè)務(wù)經(jīng)營(yíng)許可證: 粵B1.B2-20030321 備案號(hào):粵B2-20030321-1
網(wǎng)站公安備案編號(hào):44060602000007 交互式欄目專項(xiàng)備案編號(hào):200303DD003  
察察 工商 網(wǎng)安 舉報(bào)有獎(jiǎng)  警警  手機(jī)打開(kāi)網(wǎng)站