hotspot/src/share/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.cpp
changeset 24424 2658d7834c6e
parent 23470 ff2a7ea4225d
child 24941 4ebbe176a7b1
equal deleted inserted replaced
24358:8528b67f6562 24424:2658d7834c6e
     1 /*
     1 /*
     2  * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   371     // time spent in gc crosses a threshold, we will bail out.
   371     // time spent in gc crosses a threshold, we will bail out.
   372     loop_count++;
   372     loop_count++;
   373     if ((result == NULL) && (QueuedAllocationWarningCount > 0) &&
   373     if ((result == NULL) && (QueuedAllocationWarningCount > 0) &&
   374         (loop_count % QueuedAllocationWarningCount == 0)) {
   374         (loop_count % QueuedAllocationWarningCount == 0)) {
   375       warning("ParallelScavengeHeap::mem_allocate retries %d times \n\t"
   375       warning("ParallelScavengeHeap::mem_allocate retries %d times \n\t"
   376               " size=%d", loop_count, size);
   376               " size=" SIZE_FORMAT, loop_count, size);
   377     }
   377     }
   378   }
   378   }
   379 
   379 
   380   return result;
   380   return result;
   381 }
   381 }