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

make methods public

This commit is contained in:
Mathias Stearn 2010-12-21 18:12:55 -05:00
parent 63cbf0d152
commit 011fb119d2

View File

@ -14,13 +14,13 @@ namespace mongo {
RecoveryJob() { _lastDataSyncedFromLastRun = 0; }
void go(vector<path>& files);
~RecoveryJob();
void processSection(const void *, unsigned len);
void close();
private:
void applyEntry(const ParsedJournalEntry& entry, bool apply, bool dump);
void applyEntries(const vector<ParsedJournalEntry> &entries);
void processSection(const void *, unsigned len);
bool processFileBuffer(const void *, unsigned len);
bool processFile(path journalfile);
void close();
/** retrieve the mmap pointer for the specified dbName plus file number.
open if not yet open.