diff options
author | Antonin Kral <a.kral@bobek.cz> | 2010-08-11 12:38:57 +0200 |
---|---|---|
committer | Antonin Kral <a.kral@bobek.cz> | 2010-08-11 12:38:57 +0200 |
commit | 7645618fd3914cb8a20561625913c20d49504a49 (patch) | |
tree | 8370f846f58f6d71165b7a0e2eda04648584ec76 /util/mmap_mm.cpp | |
parent | 68c73c3c7608b4c87f07440dc3232801720b1168 (diff) | |
download | mongodb-7645618fd3914cb8a20561625913c20d49504a49.tar.gz |
Imported Upstream version 1.6.0
Diffstat (limited to 'util/mmap_mm.cpp')
-rw-r--r-- | util/mmap_mm.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util/mmap_mm.cpp b/util/mmap_mm.cpp index 9cffad5..3cbb0d2 100644 --- a/util/mmap_mm.cpp +++ b/util/mmap_mm.cpp @@ -1,4 +1,4 @@ -// mmap_mm.cpp +// mmap_mm.cpp - in memory (no file) version /* Copyright 2009 10gen Inc. * @@ -15,7 +15,7 @@ * limitations under the License. */ -#include "stdafx.h" +#include "pch.h" #include "mmap.h" /* in memory (no file) version */ @@ -45,6 +45,8 @@ namespace mongo { void MemoryMappedFile::flush(bool sync) { } + void MemoryMappedFile::_lock() {} + void MemoryMappedFile::_unlock() {} } |