Merging forward updates from release/os/4.9 to release/os/4.10 - 2023-10-06

This commit is contained in:
r3-build 2023-10-06 13:47:28 +00:00
commit de4eda5a35

View File

@ -76,8 +76,7 @@ public class SharedMemoryIncremental extends PortAllocation {
newValue = (oldValue + 1); newValue = (oldValue + 1);
} }
boolean reserveSuccess = UNSAFE.compareAndSwapLong(null, startingAddress, oldValue, newValue); boolean reserveSuccess = UNSAFE.compareAndSwapLong(null, startingAddress, oldValue, newValue);
boolean portAvailable = isLocalPortAvailable(newValue); loopSuccess = reserveSuccess && isLocalPortAvailable(newValue);
loopSuccess = reserveSuccess && portAvailable;
} while (!loopSuccess); } while (!loopSuccess);
return (int) newValue; return (int) newValue;