Files
mongo/db/common.cpp
2010-02-07 01:38:54 -05:00

15 lines
261 B
C++

// common.cpp
#include "../stdafx.h"
#include "concurrency.h"
/**
* this just has globals
*/
namespace mongo {
/* we use new here so we don't have to worry about destructor orders at program shutdown */
MongoMutex &dbMutex( *(new MongoMutex) );
}