equal
deleted
inserted
replaced
122 * |
122 * |
123 * @param newValue the new value |
123 * @param newValue the new value |
124 * @since 1.6 |
124 * @since 1.6 |
125 */ |
125 */ |
126 public final void lazySet(long newValue) { |
126 public final void lazySet(long newValue) { |
127 U.putOrderedLong(this, VALUE, newValue); |
127 U.putLongRelease(this, VALUE, newValue); |
128 } |
128 } |
129 |
129 |
130 /** |
130 /** |
131 * Atomically sets to the given value and returns the old value. |
131 * Atomically sets to the given value and returns the old value. |
132 * |
132 * |