src/os/bsd/vm/thread_bsd.inline.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 7089790_bsd_vs_linux Sdiff src/os/bsd/vm

src/os/bsd/vm/thread_bsd.inline.hpp

Print this page
rev 2698 : new bsd files


   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef OS_LINUX_VM_THREAD_LINUX_INLINE_HPP
  26 #define OS_LINUX_VM_THREAD_LINUX_INLINE_HPP
  27 
  28 #include "runtime/atomic.hpp"
  29 #include "runtime/prefetch.hpp"
  30 #include "runtime/thread.hpp"
  31 #include "runtime/threadLocalStorage.hpp"
  32 #ifdef TARGET_OS_ARCH_linux_x86
  33 # include "atomic_linux_x86.inline.hpp"
  34 # include "orderAccess_linux_x86.inline.hpp"
  35 # include "prefetch_linux_x86.inline.hpp"
  36 #endif
  37 #ifdef TARGET_OS_ARCH_linux_sparc
  38 # include "atomic_linux_sparc.inline.hpp"
  39 # include "orderAccess_linux_sparc.inline.hpp"
  40 # include "prefetch_linux_sparc.inline.hpp"
  41 #endif
  42 #ifdef TARGET_OS_ARCH_linux_zero
  43 # include "atomic_linux_zero.inline.hpp"
  44 # include "orderAccess_linux_zero.inline.hpp"
  45 # include "prefetch_linux_zero.inline.hpp"
  46 #endif
  47 #ifdef TARGET_OS_ARCH_linux_arm
  48 # include "atomic_linux_arm.inline.hpp"
  49 # include "orderAccess_linux_arm.inline.hpp"
  50 # include "prefetch_linux_arm.inline.hpp"
  51 #endif
  52 #ifdef TARGET_OS_ARCH_linux_ppc
  53 # include "atomic_linux_ppc.inline.hpp"
  54 # include "orderAccess_linux_ppc.inline.hpp"
  55 # include "prefetch_linux_ppc.inline.hpp"
  56 #endif
  57 
  58 // Contains inlined functions for class Thread and ThreadLocalStorage
  59 
  60 inline void ThreadLocalStorage::pd_invalidate_all() {} // nothing to do
  61 
  62 #endif // OS_LINUX_VM_THREAD_LINUX_INLINE_HPP


   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef OS_BSD_VM_THREAD_BSD_INLINE_HPP
  26 #define OS_BSD_VM_THREAD_BSD_INLINE_HPP
  27 
  28 #include "runtime/atomic.hpp"
  29 #include "runtime/prefetch.hpp"
  30 #include "runtime/thread.hpp"
  31 #include "runtime/threadLocalStorage.hpp"
  32 #ifdef TARGET_OS_ARCH_bsd_x86
  33 # include "atomic_bsd_x86.inline.hpp"
  34 # include "orderAccess_bsd_x86.inline.hpp"
  35 # include "prefetch_bsd_x86.inline.hpp"
  36 #endif
  37 #ifdef TARGET_OS_ARCH_bsd_sparc
  38 # include "atomic_bsd_sparc.inline.hpp"
  39 # include "orderAccess_bsd_sparc.inline.hpp"
  40 # include "prefetch_bsd_sparc.inline.hpp"
  41 #endif
  42 #ifdef TARGET_OS_ARCH_bsd_zero
  43 # include "atomic_bsd_zero.inline.hpp"
  44 # include "orderAccess_bsd_zero.inline.hpp"
  45 # include "prefetch_bsd_zero.inline.hpp"
  46 #endif
  47 #ifdef TARGET_OS_ARCH_bsd_arm
  48 # include "atomic_bsd_arm.inline.hpp"
  49 # include "orderAccess_bsd_arm.inline.hpp"
  50 # include "prefetch_bsd_arm.inline.hpp"
  51 #endif
  52 #ifdef TARGET_OS_ARCH_bsd_ppc
  53 # include "atomic_bsd_ppc.inline.hpp"
  54 # include "orderAccess_bsd_ppc.inline.hpp"
  55 # include "prefetch_bsd_ppc.inline.hpp"
  56 #endif
  57 
  58 // Contains inlined functions for class Thread and ThreadLocalStorage
  59 
  60 inline void ThreadLocalStorage::pd_invalidate_all() {} // nothing to do
  61 
  62 #endif // OS_BSD_VM_THREAD_BSD_INLINE_HPP
src/os/bsd/vm/thread_bsd.inline.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File