diff options
| author | Gavin Andresen <[email protected]> | 2013-03-07 14:25:21 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-04-03 14:04:21 -0400 |
| commit | 1b43bf0d3ae7b1fcde0c0e20c23c341540f4c8d2 (patch) | |
| tree | ca5ce1b1cfaa0ac8bf6d6eb069a985fe685135e6 /src/db.cpp | |
| parent | Shutdown cleanup prep-work (diff) | |
| download | discoin-1b43bf0d3ae7b1fcde0c0e20c23c341540f4c8d2.tar.xz discoin-1b43bf0d3ae7b1fcde0c0e20c23c341540f4c8d2.zip | |
Rename util.h Sleep --> MilliSleep
Two reasons for this change:
1. Need to always use boost::thread's sleep, even on Windows, so the
sleeps can be interrupted (prior code used Windows' built-in Sleep).
2. I always forgot what units the old Sleep took.
Diffstat (limited to 'src/db.cpp')
| -rw-r--r-- | src/db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.cpp b/src/db.cpp index e51d5d2cb..87c4b5c7e 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -413,7 +413,7 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip) return fSuccess; } } - Sleep(100); + MilliSleep(100); } return false; } |