mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Fix one assert
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
85e60bfc8e
commit
78c6bb1079
1 changed files with 1 additions and 2 deletions
|
@ -2632,8 +2632,7 @@ namespace {
|
||||||
// finished their work at this split point, return from the idle loop.
|
// finished their work at this split point, return from the idle loop.
|
||||||
if (waitSp != NULL && waitSp->cpus == 0)
|
if (waitSp != NULL && waitSp->cpus == 0)
|
||||||
{
|
{
|
||||||
assert( threads[threadID].state == THREAD_AVAILABLE
|
assert(threads[threadID].state == THREAD_AVAILABLE);
|
||||||
|| threads[threadID].state == THREAD_SEARCHING);
|
|
||||||
|
|
||||||
threads[threadID].state = THREAD_SEARCHING;
|
threads[threadID].state = THREAD_SEARCHING;
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue