mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
Reservation implemented
Some SPU bugs fixed; sys_spu_thread_get_exit_status sys_spu_thread_group_destroy
This commit is contained in:
parent
cfe154d916
commit
6c606be09f
16 changed files with 272 additions and 148 deletions
|
@ -118,11 +118,11 @@ public:
|
|||
template<typename T, T (get_tid)()>
|
||||
class SMutexLockerBase
|
||||
{
|
||||
typedef SMutexBase<T> T_SMutex;
|
||||
T_SMutex& sm;
|
||||
SMutexBase<T>& sm;
|
||||
public:
|
||||
const T tid;
|
||||
|
||||
SMutexLockerBase(T_SMutex& _sm)
|
||||
SMutexLockerBase(SMutexBase<T>& _sm)
|
||||
: sm(_sm)
|
||||
, tid(get_tid())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue