2004-06-11 05:12:58 +00:00
|
|
|
#ifndef THREADS_WIN32_H
|
|
|
|
|
#define THREADS_WIN32_H
|
|
|
|
|
|
|
|
|
|
#include "Threads.h"
|
|
|
|
|
|
2004-06-11 05:26:00 +00:00
|
|
|
#if defined(LINUX)
|
|
|
|
|
#define PID_BASED_THREADS
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-06-11 05:12:58 +00:00
|
|
|
class ThreadImpl_Pthreads: public ThreadImpl
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
pthread_t thread;
|
|
|
|
|
|
|
|
|
|
#if defined(PID_BASED_THREADS)
|
|
|
|
|
/* Keep a list of child PIDs, so we can send them SIGKILL. This has an
|
|
|
|
|
* added bonus: if this is corrupted, we'll just send signals and they'll
|
|
|
|
|
* fail; we won't blow up (unless we're root). */
|
|
|
|
|
int pid;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined(DARWIN)
|
|
|
|
|
thread_act_t MachThreadHandle;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
int (*m_pFunc)( void *pData );
|
|
|
|
|
void *m_pData;
|
|
|
|
|
|
|
|
|
|
void Halt( bool Kill );
|
|
|
|
|
void Resume();
|
|
|
|
|
uint64_t GetThreadId() const;
|
2004-06-11 07:06:48 +00:00
|
|
|
uint64_t GetCrashHandle() const { return GetThreadId(); }
|
2004-06-11 05:12:58 +00:00
|
|
|
int Wait();
|
|
|
|
|
};
|
|
|
|
|
|
2004-06-14 05:21:46 +00:00
|
|
|
class MutexImpl_Pthreads: public MutexImpl
|
2004-06-11 05:12:58 +00:00
|
|
|
{
|
2004-06-14 05:21:46 +00:00
|
|
|
public:
|
2004-06-11 05:12:58 +00:00
|
|
|
MutexImpl_Pthreads( RageMutex *parent );
|
|
|
|
|
~MutexImpl_Pthreads();
|
|
|
|
|
|
|
|
|
|
bool Lock();
|
2004-06-14 05:21:46 +00:00
|
|
|
bool TryLock();
|
2004-06-11 05:12:58 +00:00
|
|
|
void Unlock();
|
2004-06-14 05:21:46 +00:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class SemaImpl_Pthreads: public SemaImpl
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SemaImpl_Pthreads( int iInitialValue );
|
|
|
|
|
~SemaImpl_Pthreads();
|
|
|
|
|
int GetValue() const;
|
|
|
|
|
void Post();
|
|
|
|
|
bool Wait();
|
|
|
|
|
bool TryWait();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
sem_t sem;
|
2004-06-11 05:12:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* (c) 2001-2004 Glenn Maynard
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
|
|
|
* whom the Software is furnished to do so, provided that the above
|
|
|
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
|
|
|
* the Software and that both the above copyright notice(s) and this
|
|
|
|
|
* permission notice appear in supporting documentation.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
|
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
|
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
|
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
|
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*/
|