mirror of https://github.com/stella-emu/stella.git
Cleanup.
This commit is contained in:
parent
afb1e1d1e1
commit
773a0cf906
|
@ -47,15 +47,13 @@ class EmulationWorker
|
||||||
|
|
||||||
~EmulationWorker();
|
~EmulationWorker();
|
||||||
|
|
||||||
void handlePossibleException();
|
|
||||||
|
|
||||||
void start(uInt32 cyclesPerSecond, uInt32 maxCycles, uInt32 minCycles, DispatchResult* dispatchResult);
|
void start(uInt32 cyclesPerSecond, uInt32 maxCycles, uInt32 minCycles, DispatchResult* dispatchResult);
|
||||||
|
|
||||||
void stop();
|
void stop();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
void handleException();
|
void handlePossibleException();
|
||||||
|
|
||||||
// Passing references into a thread is awkward and requires std::ref -> use pointers here
|
// Passing references into a thread is awkward and requires std::ref -> use pointers here
|
||||||
void threadMain(std::condition_variable* initializedCondition, std::mutex* initializationMutex);
|
void threadMain(std::condition_variable* initializedCondition, std::mutex* initializationMutex);
|
||||||
|
|
Loading…
Reference in New Issue