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,31 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef _JAVA_JVMTIENVBASE_H_ ! #define _JAVA_JVMTIENVBASE_H_ // // Forward Declarations // --- 20,42 ---- * 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" // // Forward Declarations //
*** 595,600 **** } void do_monitor(ObjectMonitor* mon); jvmtiError error() { return _error;} }; ! #endif /* _JAVA_JVMTIENVBASE_H_ */ --- 606,611 ---- } void do_monitor(ObjectMonitor* mon); jvmtiError error() { return _error;} }; ! #endif // SHARE_VM_PRIMS_JVMTIENVBASE_HPP