comparison src/share/vm/memory/universe.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents 3b2dea75431e
children 3582bf76420e
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972: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