mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
Hotfix: useless error
This commit is contained in:
parent
3dbecada4e
commit
6b3f722ff0
3 changed files with 11 additions and 5 deletions
|
@ -142,7 +142,7 @@ public:
|
|||
u64 get_cycles();
|
||||
|
||||
// Wait for the thread (it does NOT change thread state, and can be called from multiple threads)
|
||||
bool join() const;
|
||||
bool join(bool dtor = false) const;
|
||||
|
||||
// Notify the thread
|
||||
void notify();
|
||||
|
@ -393,7 +393,7 @@ public:
|
|||
{
|
||||
// Assign aborting state forcefully
|
||||
operator=(thread_state::aborting);
|
||||
thread::join();
|
||||
thread::join(true);
|
||||
|
||||
if constexpr (!result::empty)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue