equal
deleted
inserted
replaced
106 * |
106 * |
107 * @param newValue the new value |
107 * @param newValue the new value |
108 * @since 1.6 |
108 * @since 1.6 |
109 */ |
109 */ |
110 public final void lazySet(int newValue) { |
110 public final void lazySet(int newValue) { |
111 U.putOrderedInt(this, VALUE, newValue); |
111 U.putIntRelease(this, VALUE, newValue); |
112 } |
112 } |
113 |
113 |
114 /** |
114 /** |
115 * Atomically sets to the given value and returns the old value. |
115 * Atomically sets to the given value and returns the old value. |
116 * |
116 * |