summaryrefslogtreecommitdiff
path: root/node/Thread.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-02 14:25:23 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-02 14:25:23 -0400
commit2a6b74746edbfde0b0f1468cdf153263670c908a (patch)
tree3e09ca56f65ea69e2d41df0a9d25ffb880270820 /node/Thread.cpp
parent741642ba531e487c18c8139c4a2e9510eed0466d (diff)
downloadinfinitytier-2a6b74746edbfde0b0f1468cdf153263670c908a.tar.gz
infinitytier-2a6b74746edbfde0b0f1468cdf153263670c908a.zip
Netconf service itself works, time to integrate.
Diffstat (limited to 'node/Thread.cpp')
-rw-r--r--node/Thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Thread.cpp b/node/Thread.cpp
index 71cfcaea..f650f6fc 100644
--- a/node/Thread.cpp
+++ b/node/Thread.cpp
@@ -75,7 +75,7 @@ void Thread::join()
void Thread::sleep(unsigned long ms)
{
- usleep(ms);
+ usleep(ms * 1000);
}
void Thread::__intl_run()