获取进程ID和线程ID ---- getpidpthread_self

Posted ruigelwang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取进程ID和线程ID ---- getpidpthread_self相关的知识,希望对你有一定的参考价值。

获取进程ID:

原型:

#include <unistd.h>

pid_t getpid(void);

返回调用进程的进程ID。

 

 

获取线程ID:

原型:

#include <pthread.h>

pthread_t pthread_self(void);

返回调用线程的线程ID。

以上是关于获取进程ID和线程ID ---- getpidpthread_self的主要内容,如果未能解决你的问题,请参考以下文章

qt 获取句柄的线程id和进程id GetWindowThreadProcessId

qt 获取句柄的线程id和进程id GetWindowThreadProcessId

线程线程ID获取

Java如何获取正在运行的线程的Id

java 获取指定的进程id

VC++ 获取窗口的类名和窗口所属进程线程id(附源码)