hotspot/test/serviceability/tmtools/jstat/utils/GcProvokerImpl.java
changeset 35945 f532c5c62540
parent 35493 863fb33f9940
child 39285 2ab363810925
--- a/hotspot/test/serviceability/tmtools/jstat/utils/GcProvokerImpl.java	Fri Feb 05 18:37:18 2016 +0100
+++ b/hotspot/test/serviceability/tmtools/jstat/utils/GcProvokerImpl.java	Mon Feb 08 14:50:54 2016 +0300
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -61,7 +61,7 @@
             long edenSize = Pools.getEdenCommittedSize();
             long heapSize = Pools.getHeapCommittedSize();
             float targetPercent = ((float) edenSize) / (heapSize);
-            if ((targetPercent <= 0) || (targetPercent > 1.0)) {
+            if ((targetPercent < 0) || (targetPercent > 1.0)) {
                 throw new RuntimeException("Error in the percent calculation" + " (eden size: " + edenSize + ", heap size: " + heapSize + ", calculated eden percent: " + targetPercent + ")");
             }
             eatHeapMemory(targetPercent);