< prev index next >

src/hotspot/share/gc/shared/generation.cpp

Print this page
rev 48000 : [mq]: open.patch

*** 42,52 **** #include "runtime/java.hpp" #include "utilities/copy.hpp" #include "utilities/events.hpp" Generation::Generation(ReservedSpace rs, size_t initial_size) : ! _ref_processor(NULL) { if (!_virtual_space.initialize(rs, initial_size)) { vm_exit_during_initialization("Could not reserve enough space for " "object heap"); } // Mangle all of the the initial generation. --- 42,53 ---- #include "runtime/java.hpp" #include "utilities/copy.hpp" #include "utilities/events.hpp" Generation::Generation(ReservedSpace rs, size_t initial_size) : ! _ref_processor(NULL), ! _gc_manager(NULL) { if (!_virtual_space.initialize(rs, initial_size)) { vm_exit_during_initialization("Could not reserve enough space for " "object heap"); } // Mangle all of the the initial generation.
< prev index next >