mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
8033931: Several nightly tests failing with assert(imin < imax) failed: Unexpected page size
Loosen new assert() in get_stack_commited_bottom() Reviewed-by: dcubed, coleenp, dsamersoff, hseigel
This commit is contained in:
parent
62755b7358
commit
3d76a6654e
1 changed files with 1 additions and 1 deletions
|
@ -3002,7 +3002,7 @@ address get_stack_commited_bottom(address bottom, size_t size) {
|
|||
unsigned imin = 1, imax = pages + 1, imid;
|
||||
int mincore_return_value = 0;
|
||||
|
||||
assert(imin < imax, "Unexpected page size");
|
||||
assert(imin <= imax, "Unexpected page size");
|
||||
|
||||
while (imin < imax) {
|
||||
imid = (imax + imin) / 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue