summaryrefslogtreecommitdiff
path: root/src/mongo/util/mmap_win.cpp
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@10gen.com>2012-04-23 15:42:24 -0400
committerAndy Schwerin <schwerin@10gen.com>2012-04-23 16:11:12 -0400
commitef446f655bdb63d57babaefb928b4e81fd43610c (patch)
tree2dc8c6a332d9c14d6f401ad0e6c8db4c47d8e289 /src/mongo/util/mmap_win.cpp
parent84614c30a3cf272c6ca2a975421a445b026915c2 (diff)
downloadmongo-ef446f655bdb63d57babaefb928b4e81fd43610c.tar.gz
Have errorcodes.py track fassert and fassertFailed.
Fix up duped error codes.
Diffstat (limited to 'src/mongo/util/mmap_win.cpp')
-rw-r--r--src/mongo/util/mmap_win.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/util/mmap_win.cpp b/src/mongo/util/mmap_win.cpp
index c4144aa052b..38effeb5e83 100644
--- a/src/mongo/util/mmap_win.cpp
+++ b/src/mongo/util/mmap_win.cpp
@@ -93,7 +93,7 @@ namespace mongo {
<< " (file size is " << len << ")"
<< " in MemoryMappedFile::createReadOnlyMap"
<< endl;
- fassertFailed( 16150 );
+ fassertFailed( 16165 );
}
memconcept::is( readOnlyMapAddress, memconcept::concept::other, filename() );
views.push_back( readOnlyMapAddress );
@@ -174,7 +174,7 @@ namespace mongo {
<< " in MemoryMappedFile::map"
<< endl;
close();
- fassertFailed( 16151 );
+ fassertFailed( 16166 );
}
}
views.push_back(view);
@@ -242,7 +242,7 @@ namespace mongo {
<< " (file size is " << len << ")"
<< " in MemoryMappedFile::createPrivateMap"
<< endl;
- fassertFailed( 16152 );
+ fassertFailed( 16167 );
}
clearWritableBits( privateMapAddress );
views.push_back( privateMapAddress );
@@ -262,7 +262,7 @@ namespace mongo {
<< " failed with error " << errnoWithDescription( dosError )
<< " in MemoryMappedFile::remapPrivateView"
<< endl;
- fassertFailed( 16147 );
+ fassertFailed( 16168 );
}
void* newPrivateView = MapViewOfFileEx(