aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/runtime/sweeper.hpp
diff options
context:
space:
mode:
authorstefank <none@none>2010-11-23 13:22:55 -0800
committerstefank <none@none>2010-11-23 13:22:55 -0800
commit957babe3873e55a43e5e31914c6555956243dec9 (patch)
treecd2f2252bf37499ed57b7bcbf68329e4250c462d /src/share/vm/runtime/sweeper.hpp
parent4760cb2376099596852af8c70a671705077c8624 (diff)
downloadjdk8u_hotspot-957babe3873e55a43e5e31914c6555956243dec9.tar.gz
6989984: Use standard include model for Hospot
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
Diffstat (limited to 'src/share/vm/runtime/sweeper.hpp')
-rw-r--r--src/share/vm/runtime/sweeper.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/share/vm/runtime/sweeper.hpp b/src/share/vm/runtime/sweeper.hpp
index fd375fa2d..8758497d7 100644
--- a/src/share/vm/runtime/sweeper.hpp
+++ b/src/share/vm/runtime/sweeper.hpp
@@ -22,6 +22,9 @@
*
*/
+#ifndef SHARE_VM_RUNTIME_SWEEPER_HPP
+#define SHARE_VM_RUNTIME_SWEEPER_HPP
+
// An NmethodSweeper is an incremental cleaner for:
// - cleanup inline caches
// - reclamation of unreferences zombie nmethods
@@ -71,3 +74,5 @@ class NMethodSweeper : public AllStatic {
static void set_was_full(bool state) { _was_full = state; }
static bool was_full() { return _was_full; }
};
+
+#endif // SHARE_VM_RUNTIME_SWEEPER_HPP