src/share/vm/gc_implementation/g1/g1MMUTracker.cpp

changeset 3114
20213c8a3c40
parent 2314
f95d63e2154a
child 6876
710a3c8b516e
child 9858
b985cbb00e68
     1.1 --- a/src/share/vm/gc_implementation/g1/g1MMUTracker.cpp	Tue Sep 06 21:03:51 2011 -0700
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1MMUTracker.cpp	Wed Sep 07 12:21:23 2011 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -97,10 +97,6 @@
    1.11      // or performance (we are GC'ing most of the time anyway!),
    1.12      // simply overwrite the oldest entry in the tracker.
    1.13  
    1.14 -    if (G1PolicyVerbose > 1) {
    1.15 -      warning("MMU Tracker Queue overflow. Replacing earliest entry.");
    1.16 -    }
    1.17 -
    1.18      _head_index = trim_index(_head_index + 1);
    1.19      assert(_head_index == _tail_index, "Because we have a full circular buffer");
    1.20      _tail_index = trim_index(_tail_index + 1);

mercurial