sys_interrupt...

This commit is contained in:
Nekotekina 2017-02-04 19:30:21 +03:00
parent fe26db4d36
commit 68f0393cf3
6 changed files with 116 additions and 103 deletions

View file

@ -54,9 +54,12 @@ void spu_int_ctrl_t::set(u64 ints)
{
LV2_LOCK;
if (tag && tag->handler)
if (tag)
{
tag->handler->exec();
if (auto handler = tag->handler.lock())
{
handler->exec();
}
}
}
}