mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
Add atomic_t<>::try_dec instead of fetch_dec_sat Add atomic_t<>::try_inc GDBDebugServer is broken (needs rewrite) Removed old_thread class (former named_thread) Removed storing/rethrowing exceptions from thread Emu.Stop doesn't inject an exception anymore task_stack helper class removed thread_base simplified (no shared_from_this) thread_ctrl::spawn simplified (creates detached thread) Implemented overrideable thread detaching logic Disabled cellAdec, cellDmux, cellFsAio SPUThread renamed to spu_thread RawSPUThread removed, spu_thread used instead Disabled deriving from ppu_thread Partial support for thread renaming lv2_timer... simplified, screw it idm/fxm: butchered support for on_stop/on_init vm: improved allocation structure (added size)
39 lines
845 B
C++
39 lines
845 B
C++
#pragma once
|
|
|
|
#include "sys_sync.h"
|
|
|
|
class ppu_thread;
|
|
|
|
struct lv2_int_tag final : lv2_obj
|
|
{
|
|
static const u32 id_base = 0x0a000000;
|
|
|
|
std::weak_ptr<struct lv2_int_serv> handler;
|
|
};
|
|
|
|
struct lv2_int_serv final : lv2_obj
|
|
{
|
|
static const u32 id_base = 0x0b000000;
|
|
|
|
const std::shared_ptr<named_thread<ppu_thread>> thread;
|
|
const u64 arg1;
|
|
const u64 arg2;
|
|
|
|
lv2_int_serv(const std::shared_ptr<named_thread<ppu_thread>>& thread, u64 arg1, u64 arg2)
|
|
: thread(thread)
|
|
, arg1(arg1)
|
|
, arg2(arg2)
|
|
{
|
|
}
|
|
|
|
void exec();
|
|
void join();
|
|
};
|
|
|
|
// Syscalls
|
|
|
|
error_code sys_interrupt_tag_destroy(u32 intrtag);
|
|
error_code _sys_interrupt_thread_establish(vm::ptr<u32> ih, u32 intrtag, u32 intrthread, u64 arg1, u64 arg2);
|
|
error_code _sys_interrupt_thread_disestablish(ppu_thread& ppu, u32 ih, vm::ptr<u64> r13);
|
|
void sys_interrupt_thread_eoi(ppu_thread& ppu);
|