配置环境
64bit系统
Visual Studio2015
配置使用
解压文件:
Pre-built.2
—— dll >动态链接库
—— include >头文件
——lib >静态链接库
pthreads.2
QueueUserAPCEx
配置头文件和库文件
- 把include文件夹中的三个文件直接拷贝到Visual Studio安装目录下VC->include文件夹下
- 把lib文件夹下的内容拷贝到Visual Studio安装目录下默认的lib寻找路径中,即VC->lib中
- 把dll下的x64文件夹下的两个文件,即pthreadGC2.dll与pthreadVC2.dll拷贝到C:\Windows\System32下(用于64位程序的运行)
- 把dll下的x86文件夹下的五个文件,拷贝到C:\Windows\SysWOW64下(用于32位程序的运行)
测试程序:创建五个线程,并实现每个线程打招呼
#include <pthread.h>
#include <stdio.h>
#define NUM_THREADS 5
#pragma comment(lib,"pthreadVC2.lib") //必不可少,这是告诉编译器在编译形成的.obj文件和.exe文件中加一条信息,使得链接器在链接库的时候要去找pthreadVC2.lib这个库,不要先去找别的库。(.exe文件找DLL 也是这种写法,例如 pthreadVC2.dll)
void *PrintHello(void *threadid)
{
int tid;
tid = (int)threadid;
printf("Hello World!It's me,thread #%d!\n", tid);
pthread_exit(NULL);
return threadid;
}
int main(int argc, char *argv[])
{
pthread_t threads[NUM_THREADS];
int rc, t;
for (t = 0; t < NUM_THREADS; t++)
{
printf("In main:creating thread %d\n", t);
rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);
if (rc)
{
printf("ERROR:return code from pthread_create() is %d\n", rc);
return -1;
}
}
pthread_exit(NULL);
}
错误提示
在使用pthread.h的库时,报错
error C2011: “timespec”:“struct”类型重定义。
方法:在在使用的项目属性->预处理器->添加“HAVE_STRUCT_TIMESPEC”