summaryrefslogtreecommitdiff
path: root/src/mongo/util/time_support.cpp
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2015-10-26 14:43:59 -0400
committerRandolph Tan <randolph@10gen.com>2015-10-29 16:54:24 -0400
commitbdc6b623c323a6616c3efdfdb5fed38422c75d11 (patch)
tree9215f8e6fcda5afdfeb8a93c151a16ffd358dd24 /src/mongo/util/time_support.cpp
parentc636d8092e4a31f602cd1cc42534d5365bdf9cf1 (diff)
downloadmongo-bdc6b623c323a6616c3efdfdb5fed38422c75d11.tar.gz
SERVER-21109 Add helper for waiting a balancing round in js tests
Diffstat (limited to 'src/mongo/util/time_support.cpp')
-rw-r--r--src/mongo/util/time_support.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mongo/util/time_support.cpp b/src/mongo/util/time_support.cpp
index cfcbf6e66e4..43fa92290af 100644
--- a/src/mongo/util/time_support.cpp
+++ b/src/mongo/util/time_support.cpp
@@ -815,10 +815,6 @@ void sleepmillis(long long s) {
}
#endif
-void sleepFor(const Milliseconds& time) {
- sleepmillis(time.count());
-}
-
void Backoff::nextSleepMillis() {
// Get the current time
unsigned long long currTimeMillis = curTimeMillis64();