src/share/vm/runtime/interfaceSupport.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2007, 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) 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,29 **** --- 20,52 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_RUNTIME_INTERFACESUPPORT_HPP + #define SHARE_VM_RUNTIME_INTERFACESUPPORT_HPP + + #include "memory/gcLocker.hpp" + #include "runtime/handles.inline.hpp" + #include "runtime/mutexLocker.hpp" + #include "runtime/orderAccess.hpp" + #include "runtime/os.hpp" + #include "runtime/safepoint.hpp" + #include "runtime/vmThread.hpp" + #include "utilities/globalDefinitions.hpp" + #include "utilities/preserveException.hpp" + #include "utilities/top.hpp" + #ifdef TARGET_OS_FAMILY_linux + # include "thread_linux.inline.hpp" + #endif + #ifdef TARGET_OS_FAMILY_solaris + # include "thread_solaris.inline.hpp" + #endif + #ifdef TARGET_OS_FAMILY_windows + # include "thread_windows.inline.hpp" + #endif + // Wrapper for all entry points to the virtual machine. // The HandleMarkCleaner is a faster version of HandleMark. // It relies on the fact that there is a HandleMark further // down the stack (in JavaCalls::call_helper), and just resets // to the saved values in that HandleMark.
*** 80,90 **** static void verify_last_frame(); # endif public: // OS dependent stuff ! #include "incls/_interfaceSupport_pd.hpp.incl" }; // Basic class for all thread transition classes. --- 103,122 ---- static void verify_last_frame(); # endif public: // OS dependent stuff ! #ifdef TARGET_OS_FAMILY_linux ! # include "interfaceSupport_linux.hpp" ! #endif ! #ifdef TARGET_OS_FAMILY_solaris ! # include "interfaceSupport_solaris.hpp" ! #endif ! #ifdef TARGET_OS_FAMILY_windows ! # include "interfaceSupport_windows.hpp" ! #endif ! }; // Basic class for all thread transition classes.
*** 564,568 **** --- 596,602 ---- VM_Exit::block_if_vm_exited(); \ __LEAF(result_type, header) #define JVM_END } } + + #endif // SHARE_VM_RUNTIME_INTERFACESUPPORT_HPP