Created
March 7, 2016 02:38
-
-
Save stepancheg/95ae74d3a24199e7578f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final boolean getAndSet(boolean newValue) { | |
boolean prev; | |
do { | |
prev = get(); | |
} while (!compareAndSet(prev, newValue)); | |
return prev; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment