comparison src/share/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.cpp @ 18009:f73af4455d7d

Merge
author asaha
date Thu, 29 May 2014 09:56:06 -0700
parents 78bbf4d43a14
children 52b4284cb496 1f1d373cd044
comparison
equal deleted inserted replaced
18008:da65bbf6f89e 18009:f73af4455d7d
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 }