获取进程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