comparison src/share/vm/gc_implementation/shared/adaptiveSizePolicy.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 c18cbe5936b8
children bca17e38de00
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_GC_IMPLEMENTATION_SHARED_ADAPTIVESIZEPOLICY_HPP
26 #define SHARE_VM_GC_IMPLEMENTATION_SHARED_ADAPTIVESIZEPOLICY_HPP
27
28 #include "gc_implementation/shared/gcUtil.hpp"
29 #include "gc_interface/collectedHeap.hpp"
30 #include "gc_interface/gcCause.hpp"
31 #include "memory/allocation.hpp"
32 #include "memory/universe.hpp"
33
25 // This class keeps statistical information and computes the 34 // This class keeps statistical information and computes the
26 // size of the heap. 35 // size of the heap.
27 36
28 // Forward decls 37 // Forward decls
29 class elapsedTimer; 38 class elapsedTimer;
501 assert(UseAdaptiveSizePolicy, "Should not be in use"); 510 assert(UseAdaptiveSizePolicy, "Should not be in use");
502 _size_policy->print_adaptive_size_policy_on(gclog_or_tty); 511 _size_policy->print_adaptive_size_policy_on(gclog_or_tty);
503 } 512 }
504 } 513 }
505 }; 514 };
515
516 #endif // SHARE_VM_GC_IMPLEMENTATION_SHARED_ADAPTIVESIZEPOLICY_HPP