线程库<pthread.h>
获取程序的进程号
getpid()
cout<<"main function pid:"<<getpid()<<endl;
获取线程函数的线程号
#include <sys/types.h> cout<<"route thread function pid:"<<gettid()<<endl;
注意gettid()要写在线程函数内部