1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| #include "Thread.h" #include <iostream> using namespace std;
Thread::Thread(const ThreadFunc& func) : func_(func), autoDelete_(false) { }
void Thread::Start() { pthread_create(&threadId_, NULL, ThreadRoutine, this); }
void Thread::Join() { pthread_join(threadId_, NULL); }
void* Thread::ThreadRoutine(void* arg) { Thread* thread = static_cast<Thread*>(arg); thread->Run(); if (thread->autoDelete_) delete thread; return NULL; }
void Thread::SetAutoDelete(bool autoDelete) { autoDelete_ = autoDelete; }
void Thread::Run() { func_(); }
|