X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=lib%2Fjetty%2Forg%2Feclipse%2Fjetty%2Futil%2FAtomics.java;h=a3cdff063d806448685a2a2ee927c629d0ace46a;hp=42fb48902ea4c350dff84b0181223c983aa4f0bb;hb=ba4f228fa9f72d50991a2218cfd83987ef5d385e;hpb=875b5e9651498a0cd8e0001c0742ba843e47cad0 diff --git a/lib/jetty/org/eclipse/jetty/util/Atomics.java b/lib/jetty/org/eclipse/jetty/util/Atomics.java index 42fb4890..a3cdff06 100644 --- a/lib/jetty/org/eclipse/jetty/util/Atomics.java +++ b/lib/jetty/org/eclipse/jetty/util/Atomics.java @@ -1,6 +1,6 @@ // // ======================================================================== -// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd. +// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 @@ -27,47 +27,51 @@ public class Atomics { } - public static void updateMin(AtomicLong currentMin, long newValue) + public static boolean updateMin(AtomicLong currentMin, long newValue) { long oldValue = currentMin.get(); while (newValue < oldValue) { if (currentMin.compareAndSet(oldValue, newValue)) - break; + return true; oldValue = currentMin.get(); } + return false; } - public static void updateMax(AtomicLong currentMax, long newValue) + public static boolean updateMax(AtomicLong currentMax, long newValue) { long oldValue = currentMax.get(); while (newValue > oldValue) { if (currentMax.compareAndSet(oldValue, newValue)) - break; + return true; oldValue = currentMax.get(); } + return false; } - public static void updateMin(AtomicInteger currentMin, int newValue) + public static boolean updateMin(AtomicInteger currentMin, int newValue) { int oldValue = currentMin.get(); while (newValue < oldValue) { if (currentMin.compareAndSet(oldValue, newValue)) - break; + return true; oldValue = currentMin.get(); } + return false; } - public static void updateMax(AtomicInteger currentMax, int newValue) + public static boolean updateMax(AtomicInteger currentMax, int newValue) { int oldValue = currentMax.get(); while (newValue > oldValue) { if (currentMax.compareAndSet(oldValue, newValue)) - break; + return true; oldValue = currentMax.get(); } + return false; } }