clear fix

This commit is contained in:
gabime 2014-02-01 23:49:55 +02:00
parent bb529a226d
commit 55eebf76f1
2 changed files with 2 additions and 4 deletions

View File

@ -97,7 +97,7 @@ public:
{ {
{ {
std::unique_lock<std::mutex> ul(mutex_); std::unique_lock<std::mutex> ul(mutex_);
q_ = queue_t{}; q_.swap(queue_t());
} }
item_popped_cond_.notify_all(); item_popped_cond_.notify_all();
} }

View File

@ -87,8 +87,6 @@ void testq(int size, int pushers, int poppers)
for(int i = 0; i < pushers; i++) for(int i = 0; i < pushers; i++)
new std::thread(std::bind(pusher, &q)); new std::thread(std::bind(pusher, &q));
while(active) while(active)
{ {
using std::endl; using std::endl;