mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-27 12:35:41 +00:00
Compilation fix
This commit is contained in:
parent
7613d749ec
commit
c305949435
@ -302,3 +302,8 @@ void waiter_map_t::notify(u64 signal_id)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool squeue_test_exit(const volatile bool* do_exit)
|
||||
{
|
||||
return Emu.IsStopped() || (do_exit && *do_exit);
|
||||
}
|
||||
|
@ -148,6 +148,8 @@ public:
|
||||
void notify(u64 signal_id);
|
||||
};
|
||||
|
||||
bool squeue_test_exit(const volatile bool* do_exit);
|
||||
|
||||
template<typename T, u32 sq_size = 256>
|
||||
class squeue_t
|
||||
{
|
||||
@ -207,7 +209,7 @@ public:
|
||||
return true;
|
||||
}))
|
||||
{
|
||||
if (Emu.IsStopped() || (do_exit && *do_exit))
|
||||
if (squeue_test_exit(do_exit))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
@ -258,7 +260,7 @@ public:
|
||||
return true;
|
||||
}))
|
||||
{
|
||||
if (Emu.IsStopped() || (do_exit && *do_exit))
|
||||
if (squeue_test_exit(do_exit))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
@ -341,7 +343,7 @@ public:
|
||||
return true;
|
||||
}))
|
||||
{
|
||||
if (Emu.IsStopped() || (do_exit && *do_exit))
|
||||
if (squeue_test_exit(do_exit))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user