我無法在包含使用C++ 11條件變量的生產者和使用者的簡單VS2012控制檯應用程序中可靠地運行代碼。我的目標在生產,使用3個參數wait_for方法或者可能wait_until方法從代碼中,我在這些網站已經聚集了小可靠的方案(作爲一個更復雜的程序的基礎上使用):在VS2012中使用C++ 11條件變量
condition_variable: wait_for , wait_until
我想使用3參數wait_for與下面的謂詞,除了它需要使用類成員變量對我以後最有用。我在收到「訪問衝突寫入位置0x_ _」或「一個無效的參數已傳遞給服務或功能」作爲錯誤後大約只有一分鐘的運行。
steady_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位。
你的代碼不使用'wait_for'或'wait_until',因此不能解決OP的問題。 –