Linux ps打印某个进程下的所有线程
注意:xxxx表示pid
?
1、ps -mp xxxx -o THREAD
???? 在当前用户下,列出pid包含的所有线程。
?
2、ps -mp xxxx -o THREAD? >> /tmp/thread.txt
???? 在当前用户下,列出pid包含的所有线程。并把结果增量输出到文件/tmp/thread.txt。
?
3、ps -mp xxxx -o THREAD,tid
???? 在当前用户下,列出pid包含的所有线程信息及本地线程ID(tid)。
?
4、ps -mp xxxx -o THREAD |wc -l
???? 在当前用户下,列出pid包含的所有线程的个数。
???? “wc -l”是统计记录的行数。
?
参考资料:
1、http://www.kuqin.com/aixcmds/aixcmds4/ps.htm
2、http://hi.baidu.com/xmltiger/blog/item/1ae27f13ab82b256f919b853.html
3、http://www.9linux.com/ps.html
?