isle-portable/LEGO1/omni/include/mxthread.h
2025-06-26 03:52:23 +02:00

57 lines
921 B
C++

#ifndef MXTHREAD_H
#define MXTHREAD_H
#include "compat.h"
#include "mxsemaphore.h"
#include "mxtypes.h"
#ifdef PSP
#include <pspkerneltypes.h>
#else
#include <SDL3/SDL_thread.h>
#endif
class MxCore;
// VTABLE: LEGO1 0x100dc860
// SIZE 0x1c
class MxThread {
public:
// Note: Comes before virtual destructor
virtual MxResult Run();
MxResult Start(MxS32 p_stackSize, MxS32 p_flag);
void Terminate();
void Sleep(MxS32 p_milliseconds);
MxBool IsRunning() { return m_running; }
// SYNTHETIC: LEGO1 0x100bf580
// MxThread::`scalar deleting destructor'
protected:
MxThread();
public:
virtual ~MxThread();
private:
#ifdef PSP
static int ThreadProc(SceSize args, void* argp);
int m_thread;
#else
static int SDLCALL ThreadProc(void* p_thread);
SDL_Thread* m_thread;
#endif
MxBool m_running; // 0x0c
MxSemaphore m_semaphore; // 0x10
protected:
MxCore* m_target; // 0x18
};
#endif // MXTHREAD_H