diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-08 09:19:36 -0400 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-08 09:19:36 -0400 |
| commit | 8a46452a700fa5a8d6fc3bd9308bf483cd715de1 (patch) | |
| tree | ef548e9fb3b2f715fed9f765120a4cc00c0a7abb /node/Node.cpp | |
| parent | 20f8668c286b2991f5eb1984dde6a8a76434d12d (diff) | |
| download | infinitytier-8a46452a700fa5a8d6fc3bd9308bf483cd715de1.tar.gz infinitytier-8a46452a700fa5a8d6fc3bd9308bf483cd715de1.zip | |
Move template parameter in Thread to a more logical scope location.
Diffstat (limited to 'node/Node.cpp')
| -rw-r--r-- | node/Node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Node.cpp b/node/Node.cpp index e5332480..92d8a75c 100644 --- a/node/Node.cpp +++ b/node/Node.cpp @@ -431,7 +431,7 @@ Node::ReasonForTermination Node::run() if (lastDelayDelta >= ZT_SLEEP_WAKE_DETECTION_THRESHOLD) { resynchronize = true; LOG("probable suspend/resume detected, pausing a moment for things to settle..."); - Thread<Node>::sleep(ZT_SLEEP_WAKE_SETTLE_TIME); + Thread::sleep(ZT_SLEEP_WAKE_SETTLE_TIME); } // Periodically check our network environment, sending pings out to all |
