博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux环境下通过gstack命令查看进程的运行堆栈信息
阅读量:5790 次
发布时间:2019-06-18

本文共 1165 字,大约阅读时间需要 3 分钟。

gstack命令的说明如下:

NAME       gstack - print a stack trace of a running processSYNOPSIS       gstack pidDESCRIPTION       gstack  attaches  to the active process named by the pid on the command line, and prints out an execution stack trace.  If ELF sym‐bols exist in the binary (usually the case unless you have run strip(1)), then symbolic addresses are printed as well.       If the process is part of a thread group, then gstack will print out a stack trace for each of the threads in the group.

它的用法很简单,只要在gstack命令后面跟上某个进程pid就可以,例如查询一个newthread进程的运行堆栈信息:

[yuanping@Linux ~]$ gstack `pgrep newthread | head -1`Thread 2 (Thread 0xb77d7b40 (LWP 4165)):#0  0x00e13424 in __kernel_vsyscall ()#1  0x4ebf79c6 in nanosleep () from /lib/libc.so.6#2  0x4ebf77df in sleep () from /lib/libc.so.6#3  0x0804853a in thread ()#4  0x4ed27cd3 in start_thread () from /lib/libpthread.so.0#5  0x4ec324de in clone () from /lib/libc.so.6Thread 1 (Thread 0xb77d8900 (LWP 4164)):#0  0x00e13424 in __kernel_vsyscall ()#1  0x4ed28dd5 in pthread_join () from /lib/libpthread.so.0#2  0x080485bd in main ()[yuanping@Linux ~]$

 

转载于:https://www.cnblogs.com/yuanping/archive/2013/01/07/2850316.html

你可能感兴趣的文章
消费贷用户70%月收入低于5000元 80、90后是主要人群
查看>>
2018年内蒙古外贸首次突破1000亿元
查看>>
CTOR有助于BCH石墨烯技术更上一层楼
查看>>
被遗忘的CSS
查看>>
Webpack中的sourcemap以及如何在生产和开发环境中合理的设置sourcemap的类型
查看>>
做完小程序项目、老板给我加了6k薪资~
查看>>
java工程师linux命令,这篇文章就够了
查看>>
关于React生命周期的学习
查看>>
webpack雪碧图生成
查看>>
搭建智能合约开发环境Remix IDE及使用
查看>>
Spring Cloud构建微服务架构—服务消费基础
查看>>
RAC实践采坑指北
查看>>
runtime运行时 isa指针 SEL方法选择器 IMP函数指针 Method方法 runtime消息机制 runtime的使用...
查看>>
LeetCode36.有效的数独 JavaScript
查看>>
Scrapy基本用法
查看>>
PAT A1030 动态规划
查看>>
自制一个 elasticsearch-spring-boot-starter
查看>>
【人物志】美团前端通道主席洪磊:一位产品出身、爱焊电路板的工程师
查看>>
一份关于数据科学家应该具备的技能清单
查看>>
机器学习实战_一个完整的程序(一)
查看>>