在一个简单的 VS2012 控制台应用程序中,我无法让代码可靠地工作,该应用程序由使用 C++11 条件变量的生产者和消费者组成。我的目标是生成一个小的可靠程序(用作更复杂程序的基础),它使用 3 个参数 wait_for 方法或我在这些网站上收集的代码中的 wait_until 方法:
条件变量: wait_for, wait_until
我想将 3 个参数 wait_for 与如下所示的谓词一起使用,但它需要使用类成员变量才能在以后对我最有用。仅运行大约一分钟后,我收到“访问冲突写入位置 0x_ _ ”或“无效参数已传递给服务或函数”作为错误。
stable_clock 和 2 参数 wait_until 是否足以替换 3 参数 wait_for?我也试过这个没有成功。
有人可以展示如何让下面的代码无限期地运行而没有错误或奇怪的行为,无论是从夏令时更改挂钟时间还是互联网时间同步?
指向可靠示例代码的链接可能同样有帮助。
// ConditionVariable.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <condition_variable>
#include <mutex>
#include <thread>
#include <iostream>
#include <queue>
#include <chrono>
#include <atomic>
#define TEST1
std::atomic<int>
//int
qcount = 0; //= ATOMIC_VAR_INIT(0);
int _tmain(int argc, _TCHAR* argv[])
{
std::queue<int> produced_nums;
std::mutex m;
std::condition_variable cond_var;
bool notified = false;
unsigned int count = 0;
std::thread producer([&]() {
int i = 0;
while (1) {
std::this_thread::sleep_for(std::chrono::microseconds(1500));
std::unique_lock<std::mutex> lock(m);
produced_nums.push(i);
notified = true;
qcount = produced_nums.size();
cond_var.notify_one();
i++;
}
cond_var.notify_one();
});
std::thread consumer([&]() {
std::unique_lock<std::mutex> lock(m);
while (1) {
#ifdef TEST1
// Version 1
if (cond_var.wait_for(
lock,
std::chrono::microseconds(1000),
[&]()->bool { return qcount != 0; }))
{
if ((count++ % 1000) == 0)
std::cout << "consuming " << produced_nums.front () << '\n';
produced_nums.pop();
qcount = produced_nums.size();
notified = false;
}
#else
// Version 2
std::chrono::steady_clock::time_point timeout1 =
std::chrono::steady_clock::now() +
//std::chrono::system_clock::now() +
std::chrono::milliseconds(1);
while (qcount == 0)//(!notified)
{
if (cond_var.wait_until(lock, timeout1) == std::cv_status::timeout)
break;
}
if (qcount > 0)
{
if ((count++ % 1000) == 0)
std::cout << "consuming " << produced_nums.front() << '\n';
produced_nums.pop();
qcount = produced_nums.size();
notified = false;
}
#endif
}
});
while (1);
return 0;
}
Visual Studio Desktop Express 安装了 1 个重要更新,而 Windows Update 没有其他重要更新。我正在使用 Windows 7 32 位。