src/share/vm/prims/jvmtiExtensions.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 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,32 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef _JVMTI_EXTENSIONS_H_ ! #define _JVMTI_EXTENSIONS_H_ // JvmtiExtensions // // Maintains the list of extension functions and events in this JVMTI // implementation. The list of functions and events can be obtained by --- 20,37 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_PRIMS_JVMTIEXTENSIONS_HPP ! #define SHARE_VM_PRIMS_JVMTIEXTENSIONS_HPP + #ifndef JVMTI_KERNEL + #include "jvmtifiles/jvmti.h" + #include "jvmtifiles/jvmtiEnv.hpp" + #include "memory/allocation.hpp" + #endif // JvmtiExtensions // // Maintains the list of extension functions and events in this JVMTI // implementation. The list of functions and events can be obtained by
*** 53,58 **** // sets the callback function for an extension event and enables the event static jvmtiError set_event_callback(JvmtiEnv* env, jint extension_event_index, jvmtiExtensionEvent callback); }; ! #endif /* _JVMTI_EXTENSIONS_H_ */ --- 58,63 ---- // sets the callback function for an extension event and enables the event static jvmtiError set_event_callback(JvmtiEnv* env, jint extension_event_index, jvmtiExtensionEvent callback); }; ! #endif // SHARE_VM_PRIMS_JVMTIEXTENSIONS_HPP