0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00

Merge branch 'master' of ssh://git.10gen.com/data/gitroot/p

This commit is contained in:
Dwight 2009-01-26 09:33:29 -05:00
commit 8276eb75b7
2 changed files with 6 additions and 0 deletions

View File

@ -102,4 +102,9 @@ namespace mongo {
printStackTrace();
}
void exit( int status ){
dbexit( status );
}
} // namespace mongo

View File

@ -42,6 +42,7 @@ namespace mongo {
void sayDbContext(const char *msg = 0);
void dbexit(int returnCode, const char *whyMsg = "");
void exit( int status );
inline void * ourmalloc(size_t size) {
void *x = malloc(size);