src/share/vm/runtime/interfaceSupport.hpp

changeset 2314
f95d63e2154a
parent 1907
c18cbe5936b8
child 2497
3582bf76420e
     1.1 --- a/src/share/vm/runtime/interfaceSupport.hpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/runtime/interfaceSupport.hpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -22,6 +22,29 @@
    1.11   *
    1.12   */
    1.13  
    1.14 +#ifndef SHARE_VM_RUNTIME_INTERFACESUPPORT_HPP
    1.15 +#define SHARE_VM_RUNTIME_INTERFACESUPPORT_HPP
    1.16 +
    1.17 +#include "memory/gcLocker.hpp"
    1.18 +#include "runtime/handles.inline.hpp"
    1.19 +#include "runtime/mutexLocker.hpp"
    1.20 +#include "runtime/orderAccess.hpp"
    1.21 +#include "runtime/os.hpp"
    1.22 +#include "runtime/safepoint.hpp"
    1.23 +#include "runtime/vmThread.hpp"
    1.24 +#include "utilities/globalDefinitions.hpp"
    1.25 +#include "utilities/preserveException.hpp"
    1.26 +#include "utilities/top.hpp"
    1.27 +#ifdef TARGET_OS_FAMILY_linux
    1.28 +# include "thread_linux.inline.hpp"
    1.29 +#endif
    1.30 +#ifdef TARGET_OS_FAMILY_solaris
    1.31 +# include "thread_solaris.inline.hpp"
    1.32 +#endif
    1.33 +#ifdef TARGET_OS_FAMILY_windows
    1.34 +# include "thread_windows.inline.hpp"
    1.35 +#endif
    1.36 +
    1.37  // Wrapper for all entry points to the virtual machine.
    1.38  // The HandleMarkCleaner is a faster version of HandleMark.
    1.39  // It relies on the fact that there is a HandleMark further
    1.40 @@ -82,7 +105,16 @@
    1.41  
    1.42   public:
    1.43    // OS dependent stuff
    1.44 -  #include "incls/_interfaceSupport_pd.hpp.incl"
    1.45 +#ifdef TARGET_OS_FAMILY_linux
    1.46 +# include "interfaceSupport_linux.hpp"
    1.47 +#endif
    1.48 +#ifdef TARGET_OS_FAMILY_solaris
    1.49 +# include "interfaceSupport_solaris.hpp"
    1.50 +#endif
    1.51 +#ifdef TARGET_OS_FAMILY_windows
    1.52 +# include "interfaceSupport_windows.hpp"
    1.53 +#endif
    1.54 +
    1.55  };
    1.56  
    1.57  
    1.58 @@ -566,3 +598,5 @@
    1.59  
    1.60  
    1.61  #define JVM_END } }
    1.62 +
    1.63 +#endif // SHARE_VM_RUNTIME_INTERFACESUPPORT_HPP

mercurial