comparison src/share/vm/memory/sharedHeap.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 8b10f48633dc
children 1f4413413144
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
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
25 #ifndef SHARE_VM_MEMORY_SHAREDHEAP_HPP
26 #define SHARE_VM_MEMORY_SHAREDHEAP_HPP
27
28 #include "gc_interface/collectedHeap.hpp"
29 #include "memory/generation.hpp"
30 #include "memory/permGen.hpp"
24 31
25 // A "SharedHeap" is an implementation of a java heap for HotSpot. This 32 // A "SharedHeap" is an implementation of a java heap for HotSpot. This
26 // is an abstract class: there may be many different kinds of heaps. This 33 // is an abstract class: there may be many different kinds of heaps. This
27 // class defines the functions that a heap must implement, and contains 34 // class defines the functions that a heap must implement, and contains
28 // infrastructure common to all heaps. 35 // infrastructure common to all heaps.
283 void print_size_transition(outputStream* out, 290 void print_size_transition(outputStream* out,
284 size_t bytes_before, 291 size_t bytes_before,
285 size_t bytes_after, 292 size_t bytes_after,
286 size_t capacity); 293 size_t capacity);
287 }; 294 };
295
296 #endif // SHARE_VM_MEMORY_SHAREDHEAP_HPP