mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-23 06:15:37 +00:00
03fa9532eb
- Added object interface CThread for OSD threading and synchronization, together with SDL implementation - Added multi-threading to CModel3 so that separate CPUs (PPC of main board, 68K of sound board and Z80 of drive board) can be run in separate threads if requested to improve performance on multi-core PCs - Added -multi-threaded command line option (default is to run single-threaded still)
197 lines
2.7 KiB
C++
Executable file
197 lines
2.7 KiB
C++
Executable file
#ifndef INCLUDED_THREADS_H
|
|
#define INCLUDED_THREADS_H
|
|
|
|
class CSemaphore;
|
|
class CMutex;
|
|
class CCondVar;
|
|
|
|
typedef int (*ThreadStart)(void *startParam);
|
|
|
|
/*
|
|
* CThread
|
|
*
|
|
* Class that represents an O/S thread.
|
|
*/
|
|
class CThread
|
|
{
|
|
private:
|
|
void *m_impl;
|
|
|
|
CThread(void *impl);
|
|
|
|
public:
|
|
/*
|
|
* CreateThread
|
|
*
|
|
* Creates a new thread with the given ThreadStart callback and start parameter. The thread starts running immediately.
|
|
*/
|
|
static CThread *CreateThread(ThreadStart start, void *startParam);
|
|
|
|
/*
|
|
* CreateSemaphore
|
|
*
|
|
* Creates a new semaphore with the given initial starting value.
|
|
*/
|
|
static CSemaphore *CreateSemaphore(UINT32 initVal);
|
|
|
|
/*
|
|
* CreateCondVar
|
|
*
|
|
* Creates a new condition variable.
|
|
*/
|
|
static CCondVar *CreateCondVar();
|
|
|
|
/*
|
|
* CreateMutex
|
|
*
|
|
* Creates a new mutex.
|
|
*/
|
|
static CMutex *CreateMutex();
|
|
|
|
/*
|
|
* GetLastError
|
|
*
|
|
* Returns the error message for the last error.
|
|
*/
|
|
static const char *GetLastError();
|
|
|
|
/*
|
|
* Thread destructor.
|
|
*/
|
|
~CThread();
|
|
|
|
/*
|
|
* GetId
|
|
*
|
|
* Returns the id of this thread.
|
|
*/
|
|
UINT32 GetId();
|
|
|
|
/*
|
|
* Kill
|
|
*
|
|
* Kills this thread.
|
|
*/
|
|
void Kill();
|
|
|
|
/*
|
|
* Wait
|
|
*
|
|
* Waits until this thread has exited.
|
|
*/
|
|
int Wait();
|
|
};
|
|
|
|
/*
|
|
* CSemaphore
|
|
*
|
|
* Class that represents a semaphore.
|
|
*/
|
|
class CSemaphore
|
|
{
|
|
friend class CThread;
|
|
|
|
private:
|
|
void *m_impl;
|
|
|
|
CSemaphore(void *impl);
|
|
|
|
public:
|
|
~CSemaphore();
|
|
|
|
/*
|
|
* GetValue
|
|
*
|
|
* Returns the current value of this semaphore.
|
|
*/
|
|
UINT32 GetValue();
|
|
|
|
/*
|
|
* Wait
|
|
*
|
|
* Locks this semaphore and suspends the calling thread if its value is zero.
|
|
*/
|
|
bool Wait();
|
|
|
|
/*
|
|
* Post
|
|
*
|
|
* Unlocks this semaphore and resumes any threads that were blocked on it.
|
|
*/
|
|
bool Post();
|
|
};
|
|
|
|
/*
|
|
* CSemaphore
|
|
*
|
|
* Class that represents a condition variable.
|
|
*/
|
|
class CCondVar
|
|
{
|
|
friend class CThread;
|
|
|
|
private:
|
|
void *m_impl;
|
|
|
|
CCondVar(void *impl);
|
|
|
|
public:
|
|
~CCondVar();
|
|
|
|
/*
|
|
* Wait
|
|
*
|
|
* Waits on this condition variable and unlocks the provided mutex (which must be locked before calling this method).
|
|
*/
|
|
bool Wait(CMutex *mutex);
|
|
|
|
/*
|
|
* Signal
|
|
*
|
|
* Restarts a single thread that is waiting on this condition variable.
|
|
*/
|
|
bool Signal();
|
|
|
|
/*
|
|
* SignalAll
|
|
*
|
|
* Restarts all threads that are waiting on this condition variable.
|
|
*/
|
|
bool SignalAll();
|
|
};
|
|
|
|
/*
|
|
* CSemaphore
|
|
*
|
|
* Class that represents a mutex.
|
|
*/
|
|
class CMutex
|
|
{
|
|
friend class CThread;
|
|
friend class CCondVar;
|
|
|
|
private:
|
|
void *m_impl;
|
|
|
|
CMutex(void *impl);
|
|
|
|
public:
|
|
~CMutex();
|
|
|
|
/*
|
|
* Lock
|
|
*
|
|
* Locks this mutex. If it is already locked then the calling thread will suspend until it is unlocked.
|
|
*/
|
|
bool Lock();
|
|
|
|
/*
|
|
* Unlock
|
|
*
|
|
* Unlocks this mutex.
|
|
*/
|
|
bool Unlock();
|
|
};
|
|
|
|
#endif // INCLUDED_THREADS_H
|