Add cross-platform Sleep(milliseconds) function.

This commit is contained in:
vng 2011-07-01 22:18:40 +03:00 committed by Alex Zolotarev
parent f7de58629b
commit 020a71a06d
3 changed files with 22 additions and 14 deletions

View file

@ -3,18 +3,9 @@
#include "../object_pool.hpp"
#include "../thread.hpp"
#include "../../base/logging.hpp"
namespace my
{
void sleep(int ms)
{
timespec t;
t.tv_nsec =(ms * 1000000) % 1000000000;
t.tv_sec = (ms * 1000000) / 1000000000;
nanosleep(&t, 0);
}
}
struct ProcessorThread : public threads::IRoutine
{
@ -33,7 +24,7 @@ struct ProcessorThread : public threads::IRoutine
int res = m_p->Reserve();
m_res->push_back(res);
LOG(LINFO, (m_id, " thread got ", res));
my::sleep(10);
threads::Sleep(10);
}
LOG(LINFO, (m_id, " thread is cancelled"));
}
@ -57,13 +48,13 @@ UNIT_TEST(ObjectPool)
t2.Create(new ProcessorThread(&p, &res, 2));
p.Free(0);
my::sleep(200);
threads::Sleep(200);
p.Free(1);
my::sleep(200);
threads::Sleep(200);
p.Free(2);
my::sleep(200);
threads::Sleep(200);
TEST_EQUAL(res.front(), 0, ());
res.pop_front();

View file

@ -166,4 +166,16 @@ namespace threads
}
}
}
void Sleep(size_t ms)
{
#ifdef OMIM_OS_WINDOWS
::Sleep(ms);
#else
timespec t;
t.tv_nsec =(ms * 1000000) % 1000000000;
t.tv_sec = (ms * 1000000) / 1000000000;
nanosleep(&t, 0);
#endif
}
}

View file

@ -40,4 +40,9 @@ namespace threads
/// wait for thread ending
void Join();
};
/// Suspends the execution of the current thread until the time-out interval elapses.
/// @param[in] ms time-out interval in milliseconds
void Sleep(size_t ms);
} // namespace threads