< prev index next >

src/share/vm/runtime/interfaceSupport.hpp

Print this page
rev 11647 : 8161258: Simplify including platform files.
Summary: Include patform files with macros cpu_header() etc. Do various cleanups of macro usages. Remove _64/_32 from adlc generated files and platform .hpp files. Merge stubRoutines_x86*.hpp. Remove empty mutex_<os>* files.
Reviewed-by: dholmes, coleenp, kbarrett

*** 32,41 **** --- 32,42 ---- #include "runtime/os.hpp" #include "runtime/safepoint.hpp" #include "runtime/thread.inline.hpp" #include "runtime/vmThread.hpp" #include "utilities/globalDefinitions.hpp" + #include "utilities/macros.hpp" #include "utilities/preserveException.hpp" // 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
*** 88,112 **** 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 ! #ifdef TARGET_OS_FAMILY_aix ! # include "interfaceSupport_aix.hpp" ! #endif ! #ifdef TARGET_OS_FAMILY_bsd ! # include "interfaceSupport_bsd.hpp" ! #endif }; // Basic class for all thread transition classes. --- 89,100 ---- static void verify_last_frame(); # endif public: // OS dependent stuff ! ! #include OS_HEADER(interfaceSupport) }; // Basic class for all thread transition classes.
< prev index next >