当前位置:网站首页>Visual studio2019 configuration uses pthread

Visual studio2019 configuration uses pthread

2022-08-11 06:32:00 rest of my life love static

一、下载pthread

pthreadThe url
下载pthread的最新版pthreads-w32-2-9-1-release.zip,然后解压,Will get the following three folder:
在这里插入图片描述

二、配置pthread

1、右键项目,选择属性
在这里插入图片描述
2、在VC++目录配置包含目录库目录
包含目录:配置的是include所在的路径(D:\Android\c++\pthreads-w32-2-9-1-release\Pre-built.2\include)
库目录:配置的是lib所在的路径,If it's configuration is32位的平台,就选择D:\Android\c++\pthreads-w32-2-9-1-release\Pre-built.2\lib\x86;如果配置64位的平台,就选择D:\Android\c++\pthreads-w32-2-9-1-release\Pre-built.2\lib\x64
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
3、编写如下代码,并运行

#include <iostream>
// 必须的头文件
#include <pthread.h>

using namespace std;

#define NUM_THREADS 5

// 线程的运行函数
void* say_hello(void* args)
{
    
    cout << "Hello Runoob!" << endl;
    return 0;
}

int main()
{
    
    // 定义线程的 id 变量,多个变量使用数组
    pthread_t tids[NUM_THREADS];
    for (int i = 0; i < NUM_THREADS; ++i)
    {
    
        //参数依次是:创建的线程id,线程参数,调用的函数,传入的函数参数
        int ret = pthread_create(&tids[i], NULL, say_hello, NULL);
        if (ret != 0)
        {
    
            cout << "pthread_create error: error_code=" << ret << endl;
        }
    }
    //等各个线程退出后,进程才结束,否则进程强制结束了,线程可能还没反应过来;
    pthread_exit(NULL);
}

3-1、Running will quote us the following error:
在这里插入图片描述
解决方案:
打开pthread.h文件,添加以下内容:

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

在这里插入图片描述
3-2、再次运行,Will quote us the following exception:
在这里插入图片描述
解决方案:原因是找不到对应的dll文件,Need to manually put the correspondingdll文件拷贝到对应的目录下
Pre-built.2\dll\x86下的文件拷贝到C:\Windows\SysWOW64目录下
在这里插入图片描述

Pre-built.2\dll\x64下的文件拷贝到C:\Windows\System32目录下
在这里插入图片描述

PS:Direct copy the correspondingdllFile to the corresponding directory,而不是dll文件夹的文件夹
再次运行,就成功了.
在这里插入图片描述

原网站

版权声明
本文为[rest of my life love static]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/223/202208110515269714.html