mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-02 14:50:05 +01:00
Implement helper functions balanced_wait_until and balanced_awaken They include new path for Windows 8.1+ (WaitOnAddress) shared_mutex, cond_variable, cond_one, cond_x16 modified to use it Added helper function utils::popcnt16 Replace most semaphore<> with shared_mutex
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include "sys_sync.h"
|
|
|
|
struct sys_rwlock_attribute_t
|
|
{
|
|
be_t<u32> protocol;
|
|
be_t<u32> pshared;
|
|
be_t<u64> ipc_key;
|
|
be_t<s32> flags;
|
|
be_t<u32> pad;
|
|
|
|
union
|
|
{
|
|
char name[8];
|
|
u64 name_u64;
|
|
};
|
|
};
|
|
|
|
struct lv2_rwlock final : lv2_obj
|
|
{
|
|
static const u32 id_base = 0x88000000;
|
|
|
|
const u32 protocol;
|
|
const u32 shared;
|
|
const u64 key;
|
|
const u64 name;
|
|
const s32 flags;
|
|
|
|
shared_mutex mutex;
|
|
atomic_t<s64> owner{0};
|
|
std::deque<cpu_thread*> rq;
|
|
std::deque<cpu_thread*> wq;
|
|
|
|
lv2_rwlock(u32 protocol, u32 shared, u64 key, s32 flags, u64 name)
|
|
: protocol(protocol)
|
|
, shared(shared)
|
|
, key(key)
|
|
, flags(flags)
|
|
, name(name)
|
|
{
|
|
}
|
|
};
|
|
|
|
// Aux
|
|
class ppu_thread;
|
|
|
|
// Syscalls
|
|
|
|
error_code sys_rwlock_create(vm::ptr<u32> rw_lock_id, vm::ptr<sys_rwlock_attribute_t> attr);
|
|
error_code sys_rwlock_destroy(u32 rw_lock_id);
|
|
error_code sys_rwlock_rlock(ppu_thread& ppu, u32 rw_lock_id, u64 timeout);
|
|
error_code sys_rwlock_tryrlock(u32 rw_lock_id);
|
|
error_code sys_rwlock_runlock(ppu_thread& ppu, u32 rw_lock_id);
|
|
error_code sys_rwlock_wlock(ppu_thread& ppu, u32 rw_lock_id, u64 timeout);
|
|
error_code sys_rwlock_trywlock(ppu_thread& ppu, u32 rw_lock_id);
|
|
error_code sys_rwlock_wunlock(ppu_thread& ppu, u32 rw_lock_id);
|
|
|
|
constexpr auto _sys_rwlock_trywlock = sys_rwlock_trywlock;
|