summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/SleepTest.h
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-02-10 16:12:42 +0100
committerJose <jose@zeroc.com>2015-02-10 16:12:42 +0100
commit5d20f8d730c593c75be0bd0057c74deb6672c0f3 (patch)
tree9589e9f87c94c7a597a5dfc3d6e3cd77e190882c /cpp/test/IceUtil/thread/SleepTest.h
parentRemoved IceDiscovery from android, UDP multicast isn't supported (diff)
downloadice-5d20f8d730c593c75be0bd0057c74deb6672c0f3.tar.bz2
ice-5d20f8d730c593c75be0bd0057c74deb6672c0f3.tar.xz
ice-5d20f8d730c593c75be0bd0057c74deb6672c0f3.zip
Fixed (ICE-5975) - Improve IceUtil::ThreadControl::sleep and wait primitives to better handle negative values
Diffstat (limited to 'cpp/test/IceUtil/thread/SleepTest.h')
-rw-r--r--cpp/test/IceUtil/thread/SleepTest.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/cpp/test/IceUtil/thread/SleepTest.h b/cpp/test/IceUtil/thread/SleepTest.h
new file mode 100644
index 00000000000..a708da939ac
--- /dev/null
+++ b/cpp/test/IceUtil/thread/SleepTest.h
@@ -0,0 +1,26 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#ifndef SLEEP_TEST_H
+#define SLEEP_TEST_H
+
+#include <TestBase.h>
+
+class SleepTest : public TestBase
+{
+public:
+
+ SleepTest();
+
+private:
+
+ virtual void run();
+};
+
+#endif