VS2019配置pthread多线程

时间:2023-01-25 07:21:02

从linux移植到windows的代码需要pthread,找不到pthread.h,这个多线程支持库是第三方的,下载:

ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-9-1-release.zip

解压得到三个文件夹:
pthreads.2 里面包含了pthreads 的源代码;

Pre-build.2 里面包含了pthreads for win32 的头文件和已编译好的库文件;

QueueUserAPCEx 里面是一个alert的driver,编译需要DDK 。Windows Device Driver Kit (NTDDK.h) 需要额外单独安装。

这里只使用Pre-build.2​即可,内含.h及相应的lib。

运行VS2019,报错:pthread.h(320,17): error C2011: “timespec”:“struct”类型重定义

到pthread.h头文件里,在:

#if !defined( PTHREAD_H )
#define PTHREAD_H

修改为:

#if !defined( PTHREAD_H )
#define PTHREAD_H

        #pragma comment(lib, "pthreadVC2.lib")

并将line320处注释掉:

​#if !defined(_TIMESPEC_DEFINED)

#define _TIMESPEC_DEFINED

struct timespec {

       time_t tv_sec;

       long tv_nsec;

};

#endif /* _TIMESPEC_DEFINED */

#endif /* HAVE_STRUCT_TIMESPEC */