- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 std::queue
周围有一个包装器使用 C++11 语义允许并发访问。 std::queue
受 std::mutex
保护.当一个项目被插入队列时,一个 std::condition_variable
通过调用 notify_one
获得通知.
从队列中弹出一个项目有两种方法。使用 std::condition_variable::wait()
,一种方法将无限期地阻塞,直到一个项目被推送到队列中。 .第二个将阻塞由 std::chrono::duration
给定的时间量单位使用 std::condition_variable::wait_for()
:
template <typename T> template <typename Rep, typename Period>
void ConcurrentQueue<T>::Pop(T &item, std::chrono::duration<Rep, Period> waitTime)
{
std::cv_status cvStatus = std::cv_status::no_timeout;
std::unique_lock<std::mutex> lock(m_queueMutex);
while (m_queue.empty() && (cvStatus == std::cv_status::no_timeout))
{
cvStatus = m_pushCondition.wait_for(lock, waitTime);
}
if (cvStatus == std::cv_status::no_timeout)
{
item = std::move(m_queue.front());
m_queue.pop();
}
}
ConcurrentQueue<int> intQueue;
int value = 0;
std::chrono::seconds waitTime(12);
intQueue.Pop(value, waitTime);
std::chrono::seconds::max()
,然后对 Pop() 的调用将立即退出。毫秒::max() 和 hours::max() 也会发生同样的情况。但是, days::max() 按预期工作(不会立即退出)。
g++ --version
g++ (rev5, Built by MinGW-W64 project) 4.8.1
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
最佳答案
首先,定时等待应该是 wait_until(lock, std::chrono::steady_clock::now() + waitTime);
,不是 wait_for
因为循环现在将简单地重复等待多次,直到最终条件( m_queue.empty()
)变为真。重复也可能由虚假唤醒引起。
使用谓词等待方法修复该部分代码:
template <typename Rep, typename Period>
bool pop(std::chrono::duration<Rep, Period> waitTime, int& popped)
{
std::unique_lock<std::mutex> lock(m_queueMutex);
if (m_pushCondition.wait_for(lock, waitTime, [] { return !m_queue.empty(); }))
{
popped = m_queue.back();
m_queue.pop_back();
return true;
} else
{
return false;
}
}
seconds::max()
yield
0x7fffffffffffffff
Effects: as if
return wait_until(lock, chrono::steady_clock::now() + rel_time);
auto time = steady_clock::now() + seconds::max();
std::cout << std::dec << duration_cast<seconds>(time.time_since_epoch()).count() << "\n";
265521
date --date='@265521' --rfc-822
告诉我那是
Sun, 04 Jan 1970 02:45:21 +0100
#include <thread>
#include <condition_variable>
#include <iostream>
#include <deque>
#include <chrono>
#include <iomanip>
std::mutex m_queueMutex;
std::condition_variable m_pushCondition;
std::deque<int> m_queue;
template <typename Rep, typename Period>
bool pop(std::chrono::duration<Rep, Period> waitTime, int& popped)
{
std::unique_lock<std::mutex> lock(m_queueMutex);
if (m_pushCondition.wait_for(lock, waitTime, [] { return !m_queue.empty(); }))
{
popped = m_queue.back();
m_queue.pop_back();
return true;
} else
{
return false;
}
}
int main()
{
int data;
using namespace std::chrono;
pop(seconds(2) , data);
std::cout << std::hex << std::showbase << seconds::max().count() << "\n";
auto time = steady_clock::now() + seconds::max();
std::cout << std::dec << duration_cast<seconds>(time.time_since_epoch()).count() << "\n";
pop(seconds::max(), data);
}
关于c++11 - std::condition_variable::wait_for 在给定 std::chrono::duration::max 时立即退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27726818/
我想要一个线程 (std::thread) 每 60 秒完成一次工作,否则休眠并在外部请求时立即返回。std::jthread 不是一个选项,我仅限于 C++14。 std::condition_va
我正在通过 Terraform 配置一个新服务器,并使用 Ansible 作为本地系统上的配置程序。 Terraform 在 EC2 上配置一个系统,然后运行 Ansible playbook,提
我想要一个线程 (std::thread) 每 60 秒完成一次工作,否则休眠并在外部请求时立即返回。std::jthread 不是一个选项,我仅限于 C++14。 std::condition_va
在我的工作环境中,创建了虚拟机,并在创建登录访问信息后将其添加到虚拟机中,这可能会有延迟,所以仅仅等待我的 ansible 脚本检查 SSH 是否可用是不够的,我实际上需要检查是否ansible 可以
假设一个类似这样的命令: @bot.command() async def test(ctx): def check(r, u): return u == ctx.messag
使用 Python 3.6.8 async def sleeper(): time.sleep(2) async def asyncio_sleeper(): await asynci
我正在Visual Studio 2019上使用condition_variable。condition_variable.wait_for()函数将返回std::cv_status::no_time
如果我在文件上使用 search_regex='foo',则使用 Ansible 中的 wait_for 模块 它似乎从文件的开头开始,这意味着它将匹配旧数据,因此当重新启动附加到文件而不是启动新文件
我正在尝试利用队列模块的wait_for方法。我有一个谓词的可调用对象,如果我不传递任何参数,它就可以工作,但是可调用对象需要一个 int 参数。 作品: self.cv.wait_for(fn, t
文档说可以使用 Predicate 的第二次重载来避免虚假唤醒。我没有看到它,如何修改我的代码以确保 wait_for 不会被虚假唤醒? while(count_ > 0) { if (con
我试图测试一批连接,但所有错误响应失败的连接都是“超时”,但我知道(我测试过)其中一些是“没有主机路由”。我如何在 ansible 中使用 wait_for 来做到这一点? - name: Test
我在单元测试中有一些代码等待我的 vector 足够大: bool waitForOutwardMessages(size_t size, int millis) { std::unique_
我正在尝试使用 ansible 来配置我必须使用的环境。特别是,我需要编写一个重启服务器的任务,所以我写了这个任务: - name: waiting for server to come back
Spurious wakup各种平台都允许。为了解决这个问题,我们编写了以下循环机制: while(ContinueWaiting()) cv.wait(lock); // cv is a `
这是来自 http://www.cplusplus.com/reference/condition_variable/condition_variable/wait_for/ 的简单代码 为什么如果我
我无法理解为什么我认为应该通过的测试用例大部分时间都失败了。我已将测试提炼为条件变量并使用 wait_for 方法,具体测试它是否确实至少等待了指定的持续时间。 测试代码片段如下: TEST_CASE
我有C#编码经验;我开始学习 C++ 并使用 boost 库进行线程处理。我编写了以下类 - 试图将成员函数作为线程执行。编写以下简单代码,我希望线程函数内的 while 循环每秒执行一次。 #inc
我正在尝试制作多线程应用程序,其中每个线程都将在不同的时间处理任务。所以我想使用 future 和 future::wait_for 函数。但是当我只使用来自 CPP reference 的代码时 #
条件变量的典型用法如下所示(参见下面的代码):http://en.cppreference.com/w/cpp/thread/condition_variable . 但是,似乎主线程可能会在工作线程
下面是一个运行两个后台任务的简单异步循环。 它们都执行简单的计数。第一个永远重要,包裹在尝试/除外。第二个数到 5,然后取消第一个,停止循环。 有两种方法可以确保取消完成 - asyncio.wait
我是一名优秀的程序员,十分优秀!