mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
18b69cac99
Purpose-specific waiter_map_t objects instead of global one. SM_Sleep() removed.
11 lines
156 B
C++
11 lines
156 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/CPU/CPUThread.h"
|
|
|
|
#include "Utilities/SMutex.h"
|
|
|
|
bool SM_IsAborted()
|
|
{
|
|
return Emu.IsStopped();
|
|
}
|