src/share/vm/prims/jvmtiEnvBase.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2009, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2003, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,29 **** --- 20,43 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_PRIMS_JVMTIENVBASE_HPP + #define SHARE_VM_PRIMS_JVMTIENVBASE_HPP + + #include "classfile/classLoader.hpp" + #include "prims/jvmtiEnvThreadState.hpp" + #include "prims/jvmtiEventController.hpp" + #include "prims/jvmtiThreadState.hpp" + #include "runtime/fieldDescriptor.hpp" + #include "runtime/frame.hpp" + #include "runtime/handles.inline.hpp" + #include "runtime/thread.hpp" + #include "runtime/vm_operations.hpp" + #include "utilities/growableArray.hpp" + #ifndef _JAVA_JVMTIENVBASE_H_ #define _JAVA_JVMTIENVBASE_H_ // // Forward Declarations
*** 596,600 **** --- 610,616 ---- void do_monitor(ObjectMonitor* mon); jvmtiError error() { return _error;} }; #endif /* _JAVA_JVMTIENVBASE_H_ */ + + #endif // SHARE_VM_PRIMS_JVMTIENVBASE_HPP