Start using Date_t. Can anyone think of a better name?

This commit is contained in:
Mathias Stearn
2009-12-03 17:25:22 -05:00
parent 5660a25e9b
commit dcf3a10eea
20 changed files with 59 additions and 32 deletions

View File

@@ -50,7 +50,7 @@ namespace mongo {
bool BackgroundJob::wait(int msMax) {
assert( state != NotStarted );
int ms = 1;
unsigned long long start = jsTime();
Date_t start = jsTime();
while ( state != Done ) {
sleepmillis(ms);
if ( ms < 1000 )