Linux下获取线程TID的方法——gettid()
如何获取进程的PID(process ID)?
可以使用:
如何获取线程的TID(thread ID)?
通过查看man得到如下描述:
(1) The gettid() system call first appeared on Linux in kernel 2.4.11.
(2) gettid() returns the thread ID of the current process. This is equal to the process ID (as returned by getpid(2)), unless the process is part of a thread group (created by specifying the CLONE_THREAD flag to the clone(2) system call). All processes in the same thread group have the same PID, but each one has a unique TID.
(3) gettid() is Linux specific and should not be used in programs that are intended to be portable. (如果考虑移植性,不应该使用此接口)
但是根据man的使用说明,测试后发现会报找不到此接口的错误“error: undefined reference to `gettid'”,通过下面链接可以找到更详细的说明:
http://www.kernel.org/doc/man-pages/online/pages/man2/gettid.2.html
(1) Glibc does not provide a wrapper for this system call; call it using syscall(2).(说明Glibc并没有提供此接口的声明,此接口实际使用的是系统调用,使用者可以自己创建包裹函数)
(2) The thread ID returned by this call is not the same thing as a POSIX thread ID (i.e., the opaque value returned by pthread_self(3)).
然后查看/usr/include/sys/syscall.h(实际在/usr/include/asm/unistd.h)可以找到我们需要的system call number:
#define __NR_gettid 224
因此,要获取某个线程的TID,最nasty的方式是:
验证TID是否正确的方法:
查看进程pid
(1) ps ux | grep prog_name
(2) pgrep prog_name
查看线程tid
(1) ps -efL | grep prog_name
(2) ls /proc/pid/task
from : http://blog.csdn.net/delphiwcdj/article/details/8476547
转载于:https://www.cnblogs.com/hehehaha/p/6332386.html
总结
以上是生活随笔为你收集整理的Linux下获取线程TID的方法——gettid()的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: kindeditor图片上传
- 下一篇: Linux下利用backtrace追踪函