gpt4 book ai didi

c++ - boost scoped_lock。这个会锁吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:37:22 26 4
gpt4 key购买 nike

已解决

我将 bfs::directory_iterator 队列更改为 std::string 队列,并且令人惊讶地解决了问题。


嗨,我有一种直觉,我做错了。

我已经实现(或尝试)线程池模式。

N 个线程从一个队列中读取,但我遇到了一些麻烦。这是我得到的:

//inside a while loop
bool isEmpty;
bfs::directory_iterator elem;

{
boost::mutex::scoped_lock lock(this->queue_mutex);
isEmpty = this->input_queue.isEmpty();

if (!isEmpty){

elem= *(this->input_queue.pop());
}
else{
continue;
}
}

scoped_lock 是否仍然在 if 的主体内工作?我开始相信它不会(在运行许多测试之后)。如果没有,是否有任何范围内的方法来执行此操作(即不是显式锁定解锁方式)

提前致谢。

更新

向队列添加元素的代码如下所示

  //launches the above code, passing a reference to mutex and queue.
Threads threads(queue,queue_mutex);

for (bfs::directory_iterator dir_it:every file in directory){
boost::mutex::scoped_lock lock(queue_mutex);

queue.push(dir_it);


}

我放置了一个 cout 来控制弹出的文件名,如果我推送 2 个文件 (file1) 和 (file2),并使用 2 个线程,我会得到两个“file2”。

  class Threads{

boost::thread::thread_group group;
Thread (N){

//also asigns a reference to a queue and a mutex.
for(i 1..N){
//loop is posted above.
group.add(new boost::thread(boost::bind(&loop,this)));
}
}
};

最佳答案

发布的代码看起来没问题 - 如果您发现问题,可能是其他地方应该锁定而不是(例如向队列添加内容的代码)。

关于c++ - boost scoped_lock。这个会锁吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1468000/

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