comparison src/os/bsd/vm/thread_bsd.inline.hpp @ 20197:ce8f6bb717c9

8042195: Introduce umbrella header orderAccess.inline.hpp. Reviewed-by: dholmes, kvn, stefank, twisti
author goetz
date Tue, 29 Apr 2014 15:17:27 +0200
parents f34d701e952e
children c49dcaf78a65
comparison
equal deleted inserted replaced
20196:c8dd4f65cc76 20197:ce8f6bb717c9
27 27
28 #ifndef SHARE_VM_RUNTIME_THREAD_INLINE_HPP_SCOPE 28 #ifndef SHARE_VM_RUNTIME_THREAD_INLINE_HPP_SCOPE
29 #error "This file should only be included from thread.inline.hpp" 29 #error "This file should only be included from thread.inline.hpp"
30 #endif 30 #endif
31 31
32 #include "runtime/atomic.hpp"
33 #include "runtime/prefetch.hpp"
34 #include "runtime/thread.hpp" 32 #include "runtime/thread.hpp"
35 #include "runtime/threadLocalStorage.hpp" 33 #include "runtime/threadLocalStorage.hpp"
36 #ifdef TARGET_OS_ARCH_bsd_x86 34 #ifdef TARGET_OS_ARCH_bsd_x86
37 # include "atomic_bsd_x86.inline.hpp"
38 # include "orderAccess_bsd_x86.inline.hpp"
39 # include "prefetch_bsd_x86.inline.hpp" 35 # include "prefetch_bsd_x86.inline.hpp"
40 #endif 36 #endif
41 #ifdef TARGET_OS_ARCH_bsd_zero 37 #ifdef TARGET_OS_ARCH_bsd_zero
42 # include "atomic_bsd_zero.inline.hpp"
43 # include "orderAccess_bsd_zero.inline.hpp"
44 # include "prefetch_bsd_zero.inline.hpp" 38 # include "prefetch_bsd_zero.inline.hpp"
45 #endif 39 #endif
46 40
47 // Contains inlined functions for class Thread and ThreadLocalStorage 41 // Contains inlined functions for class Thread and ThreadLocalStorage
48 42