Include atomic in env_test

main
Igor Canadi 10 years ago
parent c1c68bce43
commit b680033e63
  1. 2
      db/db_bench.cc
  2. 1
      util/env_test.cc

@ -1533,7 +1533,7 @@ class Benchmark {
void AcquireLoad(ThreadState* thread) { void AcquireLoad(ThreadState* thread) {
int dummy; int dummy;
std::atomic<void*> ap; std::atomic<void*> ap(&dummy);
int count = 0; int count = 0;
void *ptr = nullptr; void *ptr = nullptr;
thread->stats.AddMessage("(each op is 1000 loads)"); thread->stats.AddMessage("(each op is 1000 loads)");

@ -11,6 +11,7 @@
#include <iostream> #include <iostream>
#include <unordered_set> #include <unordered_set>
#include <atomic>
#ifdef OS_LINUX #ifdef OS_LINUX
#include <sys/stat.h> #include <sys/stat.h>

Loading…
Cancel
Save