mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include "sys_sync.h"
|
|
|
|
#include "Emu/Memory/vm_ptr.h"
|
|
|
|
struct sys_lwmutex_t;
|
|
|
|
struct sys_lwcond_attribute_t
|
|
{
|
|
union
|
|
{
|
|
nse_t<u64, 1> name_u64;
|
|
char name[sizeof(u64)];
|
|
};
|
|
};
|
|
|
|
struct sys_lwcond_t
|
|
{
|
|
vm::bptr<sys_lwmutex_t> lwmutex;
|
|
be_t<u32> lwcond_queue; // lwcond pseudo-id
|
|
};
|
|
|
|
struct lv2_lwcond final : lv2_obj
|
|
{
|
|
static const u32 id_base = 0x97000000;
|
|
|
|
const be_t<u64> name;
|
|
const u32 lwid;
|
|
const lv2_protocol protocol;
|
|
vm::ptr<sys_lwcond_t> control;
|
|
|
|
shared_mutex mutex;
|
|
atomic_t<u32> waiters{0};
|
|
std::deque<cpu_thread*> sq;
|
|
|
|
lv2_lwcond(u64 name, u32 lwid, u32 protocol, vm::ptr<sys_lwcond_t> control)
|
|
: name(std::bit_cast<be_t<u64>>(name))
|
|
, lwid(lwid)
|
|
, protocol{protocol}
|
|
, control(control)
|
|
{
|
|
}
|
|
};
|
|
|
|
// Aux
|
|
class ppu_thread;
|
|
|
|
// Syscalls
|
|
|
|
error_code _sys_lwcond_create(ppu_thread& ppu, vm::ptr<u32> lwcond_id, u32 lwmutex_id, vm::ptr<sys_lwcond_t> control, u64 name);
|
|
error_code _sys_lwcond_destroy(ppu_thread& ppu, u32 lwcond_id);
|
|
error_code _sys_lwcond_signal(ppu_thread& ppu, u32 lwcond_id, u32 lwmutex_id, u64 ppu_thread_id, u32 mode);
|
|
error_code _sys_lwcond_signal_all(ppu_thread& ppu, u32 lwcond_id, u32 lwmutex_id, u32 mode);
|
|
error_code _sys_lwcond_queue_wait(ppu_thread& ppu, u32 lwcond_id, u32 lwmutex_id, u64 timeout);
|