diff -r e33f46fc48ed -r f95d63e2154a src/share/vm/memory/universe.hpp --- a/src/share/vm/memory/universe.hpp Tue Nov 23 15:01:43 2010 -0500 +++ b/src/share/vm/memory/universe.hpp Tue Nov 23 13:22:55 2010 -0800 @@ -22,6 +22,12 @@ * */ +#ifndef SHARE_VM_MEMORY_UNIVERSE_HPP +#define SHARE_VM_MEMORY_UNIVERSE_HPP + +#include "runtime/handles.hpp" +#include "utilities/growableArray.hpp" + // Universe is a name space holding known system classes and objects in the VM. // // Loaded classes are accessible through the SystemDictionary. @@ -461,3 +467,5 @@ size_t bytesize() { return _bytesize; } oop get_oop() { return _oop; } }; + +#endif // SHARE_VM_MEMORY_UNIVERSE_HPP