This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/env/thread_posix.cpp
2013-08-05 03:10:18 +03:00

37 lines
552 B
C++

#include "thread.hpp"
#include "posix.hpp"
namespace env
{
void * PThreadProc(void * p)
{
Thread::Runnable * runnable = reinterpret_cast<Thread::Runnable *>(p);
runnable->Run();
::pthread_exit(0);
return 0;
}
void Thread::Create(Runnable * runnable)
{
m_runnable = runnable;
CHECK_POSIX(::pthread_create(&m_handle, 0, &PThreadProc, reinterpret_cast<void *>(runnable)));
}
void Thread::Join()
{
CHECK_POSIX(::pthread_join(m_handle, 0));
}
void Thread::Cancel()
{
if (m_runnable)
{
m_runnable->Cancel();
Join();
}
}
}