comparison src/share/vm/gc_interface/collectedHeap.inline.hpp @ 342:37f87013dfd8

6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
author ysr
date Thu, 05 Jun 2008 15:57:56 -0700
parents ba764ed4b6f2
children 6aae2f9d0294
comparison
equal deleted inserted replaced
189:0b27f3512f9e 342:37f87013dfd8
119 assert(!HAS_PENDING_EXCEPTION, 119 assert(!HAS_PENDING_EXCEPTION,
120 "Unexpected exception, will result in uninitialized storage"); 120 "Unexpected exception, will result in uninitialized storage");
121 return result; 121 return result;
122 } 122 }
123 } 123 }
124 bool gc_overhead_limit_was_exceeded; 124 bool gc_overhead_limit_was_exceeded = false;
125 result = Universe::heap()->mem_allocate(size, 125 result = Universe::heap()->mem_allocate(size,
126 is_noref, 126 is_noref,
127 false, 127 false,
128 &gc_overhead_limit_was_exceeded); 128 &gc_overhead_limit_was_exceeded);
129 if (result != NULL) { 129 if (result != NULL) {