Issue with low-memory notification
The low-memory notification was getting into an infinite loop. This fixes the loop termination, and provides a test for platforms which support low-memory notification.
This commit is contained in:
@@ -263,7 +263,7 @@ namespace snmalloc
|
||||
{
|
||||
lazy_decommit();
|
||||
}
|
||||
} while (old_epoch <= new_epoch);
|
||||
} while (old_epoch < new_epoch);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user