mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
sys_interrupt: Save ID of self tag/handler
This commit is contained in:
parent
363cc60c82
commit
1e1880893a
3 changed files with 20 additions and 20 deletions
|
@ -9,6 +9,19 @@
|
|||
|
||||
LOG_CHANNEL(sys_interrupt);
|
||||
|
||||
lv2_int_tag::lv2_int_tag() noexcept
|
||||
: id(idm::last_id())
|
||||
{
|
||||
}
|
||||
|
||||
lv2_int_serv::lv2_int_serv(const std::shared_ptr<named_thread<ppu_thread>>& thread, u64 arg1, u64 arg2) noexcept
|
||||
: id(idm::last_id())
|
||||
, thread(thread)
|
||||
, arg1(arg1)
|
||||
, arg2(arg2)
|
||||
{
|
||||
}
|
||||
|
||||
void lv2_int_serv::exec() const
|
||||
{
|
||||
thread->cmd_list
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue