mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 09:40:23 +01:00
35 lines
709 B
C++
35 lines
709 B
C++
#pragma once
|
|
|
|
#include "sys_sync.h"
|
|
|
|
class PPUThread;
|
|
|
|
struct lv2_int_tag_t
|
|
{
|
|
const id_value<> id{};
|
|
|
|
std::shared_ptr<struct lv2_int_serv_t> handler;
|
|
};
|
|
|
|
struct lv2_int_serv_t
|
|
{
|
|
const std::shared_ptr<PPUThread> thread;
|
|
|
|
const id_value<> id{};
|
|
|
|
atomic_t<u32> signal{ 0 }; // signal count
|
|
|
|
lv2_int_serv_t(const std::shared_ptr<PPUThread>& thread)
|
|
: thread(thread)
|
|
{
|
|
}
|
|
|
|
void join(PPUThread& ppu, lv2_lock_t);
|
|
};
|
|
|
|
// SysCalls
|
|
s32 sys_interrupt_tag_destroy(u32 intrtag);
|
|
s32 _sys_interrupt_thread_establish(vm::ptr<u32> ih, u32 intrtag, u32 intrthread, u64 arg1, u64 arg2);
|
|
s32 _sys_interrupt_thread_disestablish(PPUThread& ppu, u32 ih, vm::ptr<u64> r13);
|
|
void sys_interrupt_thread_eoi(PPUThread& ppu);
|