comparison src/share/vm/gc_implementation/shared/vmGCOperations.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 4e5661ba9d98
children 7c5250dbd584
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_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP
26 #define SHARE_VM_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP
27
28 #include "memory/heapInspection.hpp"
29 #include "runtime/handles.hpp"
30 #include "runtime/jniHandles.hpp"
31 #include "runtime/synchronizer.hpp"
32 #include "runtime/vm_operations.hpp"
24 33
25 // The following class hierarchy represents 34 // The following class hierarchy represents
26 // a set of operations (VM_Operation) related to GC. 35 // a set of operations (VM_Operation) related to GC.
27 // 36 //
28 // VM_Operation 37 // VM_Operation
197 ~VM_GenCollectForPermanentAllocation() {} 206 ~VM_GenCollectForPermanentAllocation() {}
198 virtual VMOp_Type type() const { return VMOp_GenCollectForPermanentAllocation; } 207 virtual VMOp_Type type() const { return VMOp_GenCollectForPermanentAllocation; }
199 virtual void doit(); 208 virtual void doit();
200 HeapWord* result() const { return _res; } 209 HeapWord* result() const { return _res; }
201 }; 210 };
211
212 #endif // SHARE_VM_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP