Merge pull request #1678 from Diapolo/LoadExternalBlockFile_add_timer

log how long LoadExternalBlockFile() takes in ms (Benchmark)
This commit is contained in:
Jeff Garzik 2012-08-17 08:45:11 -07:00
commit dabb95b892
1 changed files with 3 additions and 1 deletions

View File

@ -2146,6 +2146,8 @@ void PrintBlockTree()
bool LoadExternalBlockFile(FILE* fileIn) bool LoadExternalBlockFile(FILE* fileIn)
{ {
int64 nStart = GetTimeMillis();
int nLoaded = 0; int nLoaded = 0;
{ {
LOCK(cs_main); LOCK(cs_main);
@ -2198,7 +2200,7 @@ bool LoadExternalBlockFile(FILE* fileIn)
__PRETTY_FUNCTION__); __PRETTY_FUNCTION__);
} }
} }
printf("Loaded %i blocks from external file\n", nLoaded); printf("Loaded %i blocks from external file in %"PRI64d"ms\n", nLoaded, GetTimeMillis() - nStart);
return nLoaded > 0; return nLoaded > 0;
} }