class CYCData: findData() added; various cleanup

This commit is contained in:
Roland Jax
2014-04-18 19:45:05 +02:00
parent fdc52ee122
commit e9a4721c8f
7 changed files with 74 additions and 31 deletions
+2 -2
View File
@@ -26,13 +26,13 @@ class Thread
{
public:
Thread();
Thread() : m_threadid(0), m_running(false), m_detached(false) {}
virtual ~Thread();
int start(const char* name);
int join();
int detach();
pthread_t self();
pthread_t self() {return m_threadid; }
virtual void* run() = 0;