aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/runtime/handles.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/vm/runtime/handles.hpp')
-rw-r--r--src/share/vm/runtime/handles.hpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/share/vm/runtime/handles.hpp b/src/share/vm/runtime/handles.hpp
index 487435f90..b4a03ff08 100644
--- a/src/share/vm/runtime/handles.hpp
+++ b/src/share/vm/runtime/handles.hpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,13 @@
*
*/
+#ifndef SHARE_VM_RUNTIME_HANDLES_HPP
+#define SHARE_VM_RUNTIME_HANDLES_HPP
+
+#include "oops/klass.hpp"
+#include "oops/klassOop.hpp"
+#include "utilities/top.hpp"
+
//------------------------------------------------------------------------------------------------------------------------
// In order to preserve oops during garbage collection, they should be
// allocated and passed around via Handles within the VM. A handle is
@@ -354,3 +361,5 @@ class ResetNoHandleMark: public StackObj {
~ResetNoHandleMark() {}
#endif
};
+
+#endif // SHARE_VM_RUNTIME_HANDLES_HPP