removed Mutex from Win32, split POSIX entry() function into two

This commit is contained in:
Aleksandar Fabijanic
2008-04-11 10:15:43 +00:00
parent 01613f5cf6
commit 1867398d32
4 changed files with 46 additions and 20 deletions

View File

@@ -98,7 +98,8 @@ public:
static ThreadImpl* currentImpl();
protected:
static void* entry(void* pThread);
static void* runnableEntry(void* pThread);
static void* functionEntry(void* pThread);
static int mapPrio(int prio);
private:
@@ -123,7 +124,7 @@ private:
};
AutoPtr<ThreadData> _pData;
static pthread_key_t _currentKey;
static bool _haveCurrentKey;