diff options
author | Andrew Morrow <acm@mongodb.com> | 2014-08-04 17:54:34 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2014-08-05 07:06:36 -0400 |
commit | 931f48190b276dd783d76ae4071228d6ab1f0bfd (patch) | |
tree | 9963cbc9cebbf094aa922f0e9d78bbe94f6a5a81 /src/mongo/shell/bench.h | |
parent | c13eefdea68c0d493892014d42d8c4bbe687d4c3 (diff) | |
download | mongo-931f48190b276dd783d76ae4071228d6ab1f0bfd.tar.gz |
SERVER-6018 Replace AtomicUInt with AtomicUInt32
Diffstat (limited to 'src/mongo/shell/bench.h')
-rw-r--r-- | src/mongo/shell/bench.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/shell/bench.h b/src/mongo/shell/bench.h index 18784b4457d..ee9a232fa0c 100644 --- a/src/mongo/shell/bench.h +++ b/src/mongo/shell/bench.h @@ -34,9 +34,9 @@ #include <boost/thread/condition.hpp> #include <boost/thread/mutex.hpp> -#include "mongo/bson/util/atomic_int.h" #include "mongo/client/dbclientinterface.h" #include "mongo/db/jsobj.h" +#include "mongo/platform/atomic_word.h" #include "mongo/util/timer.h" namespace pcrecpp { @@ -305,7 +305,7 @@ namespace mongo { boost::condition _stateChangeCondition; unsigned _numUnstartedWorkers; unsigned _numActiveWorkers; - AtomicUInt _isShuttingDown; + AtomicUInt32 _isShuttingDown; }; /** |