diff options
Diffstat (limited to 'test/common/testcommon.cpp')
-rw-r--r-- | test/common/testcommon.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/common/testcommon.cpp b/test/common/testcommon.cpp index 45473425..6c90602a 100644 --- a/test/common/testcommon.cpp +++ b/test/common/testcommon.cpp @@ -137,15 +137,6 @@ ConfigurationVerify verify = 0 }; -void safe_sleep(int seconds) -{ - struct timespec ts; - ts.tv_sec = seconds; - ts.tv_nsec = 0; - while (nanosleep(&ts, &ts) == -1 && errno == EINTR) - { /* sleep again */ } -} - class TestLogger : public Logger { private: |