gpt4 book ai didi

c++ - 如何使用相同的函数 C++ 实例化多个线程

转载 作者:搜寻专家 更新时间:2023-10-31 00:25:48 24 4
gpt4 key购买 nike

这里是函数execute(),用于一些指令:

void execute() {

while (run) { //thread is running

if (time % 3 == 0) { // execute instructions when clock is 3
Instruct Instr;
uint16_t src1 = 0;
uint16_t src2 = 0;
int target_cycle = time;
while (target_cycle > time) {
std::this_thread::sleep_for(thread_sleep);
}

while (hpp_DE_EX.size() != 0) {

Instr = hpp_DE_EX.front();

hpp_DE_EX.pop();

uint16_t instr = Instr.header;

ptrLog->PrintData(get, instr);

src2 = instr & 0x1F;

src1 = (instr >> 0x5) & 0x1F;

uint16_t opcode = (instr >> 0xA) & 0x3F;

....

}


//For running this thread:
auto exThread = std::thread(&processor::execute, this);
exThread.detach();

使用这个函数 execute(),我想创建多个线程实例。我认为这是声明线程的可能性(但是当我编写这段代码时,我遇到了一些错误 - INVOKE ERROR C2672)---已修改,现在可以工作

    std::vector<std::thread> threads;
for (int i = 0; i <= 5; i++) // need 5 instances
threads.push_back(thread(&processor::execute, this));

cout << "Synchronizing all threads...\n";
for (auto& th : threads) th.join(); // Running code

我的意图是使用 execute() 函数(线程)来执行并行指令而不是线性指令 - 功能参数。

谢谢,F。

最佳答案

假设 processor::execute 是一个没有参数的静态成员函数,那么您向它传递了一个额外的参数,因此 std::thread 实现无法找到具有正确参数的重载。正确的调用是:

threads.push_back(thread(&processor::execute));

或者更简单地说:

threads.emplace_back(&processor::execute);

如果它不是静态方法,那么您需要传递处理器类的实例,例如:

processor p;
for (int i = 0; i <= 5; i++)
{
threads.emplace_back(&processor::execute, &p);
}

通过打印 "Synchronizing all threads" 判断,我想你不明白 std::thread::detach 做了什么,它将线程从 std::thread 实例,以便在结构被破坏后它可以继续运行。我假设您实际上打算调用 std::thread::join 等待线程完成执行。 std::thread::detach 很少是正确的做法。

关于c++ - 如何使用相同的函数 C++ 实例化多个线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54762699/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com