src/share/vm/memory/universe.hpp

changeset 2314
f95d63e2154a
parent 2268
3b2dea75431e
child 2497
3582bf76420e
equal deleted inserted replaced
2313:e33f46fc48ed 2314:f95d63e2154a
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 #ifndef SHARE_VM_MEMORY_UNIVERSE_HPP
26 #define SHARE_VM_MEMORY_UNIVERSE_HPP
27
28 #include "runtime/handles.hpp"
29 #include "utilities/growableArray.hpp"
30
25 // Universe is a name space holding known system classes and objects in the VM. 31 // Universe is a name space holding known system classes and objects in the VM.
26 // 32 //
27 // Loaded classes are accessible through the SystemDictionary. 33 // Loaded classes are accessible through the SystemDictionary.
28 // 34 //
29 // The object heap is allocated and accessed through Universe, and various allocation 35 // The object heap is allocated and accessed through Universe, and various allocation
459 465
460 jint arena_id() { return _arena_id; } 466 jint arena_id() { return _arena_id; }
461 size_t bytesize() { return _bytesize; } 467 size_t bytesize() { return _bytesize; }
462 oop get_oop() { return _oop; } 468 oop get_oop() { return _oop; }
463 }; 469 };
470
471 #endif // SHARE_VM_MEMORY_UNIVERSE_HPP

mercurial