mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-02 22:59:59 +01:00
`CallbackManager` removed, added _gcm_intr_thread for cellGcmSys `PPUThread` renamed to `ppu_thread`, inheritance allowed Added lightweight command queue for `ppu_thread` Implemented call stack dump for PPU `get_current_thread_mutex` removed `thread_ctrl::spawn`: minor initialization fix `thread_ctrl::wait_for` added `named_thread`: some methods added `cpu_thread::run` added Some bugs fixes, including SPU channels
39 lines
769 B
C++
39 lines
769 B
C++
#pragma once
|
|
|
|
#include "sys_sync.h"
|
|
|
|
class ppu_thread;
|
|
|
|
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<ppu_thread> thread;
|
|
|
|
const id_value<> id{};
|
|
|
|
const u64 arg1;
|
|
const u64 arg2;
|
|
|
|
lv2_int_serv_t(const std::shared_ptr<ppu_thread>& thread, u64 arg1, u64 arg2)
|
|
: thread(thread)
|
|
, arg1(arg1)
|
|
, arg2(arg2)
|
|
{
|
|
}
|
|
|
|
void exec();
|
|
void join(ppu_thread& 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(ppu_thread& ppu, u32 ih, vm::ptr<u64> r13);
|
|
void sys_interrupt_thread_eoi(ppu_thread& ppu);
|