src/os/linux/vm/os_linux.inline.hpp

changeset 2314
f95d63e2154a
parent 1907
c18cbe5936b8
child 2322
828eafbd85cc
equal deleted inserted replaced
2313:e33f46fc48ed 2314:f95d63e2154a
1 /* 1 /*
2 * Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 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 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 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 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef OS_LINUX_VM_OS_LINUX_INLINE_HPP
26 #define OS_LINUX_VM_OS_LINUX_INLINE_HPP
27
28 #include "runtime/atomic.hpp"
29 #include "runtime/os.hpp"
30 #ifdef TARGET_OS_ARCH_linux_x86
31 # include "atomic_linux_x86.inline.hpp"
32 # include "orderAccess_linux_x86.inline.hpp"
33 #endif
34 #ifdef TARGET_OS_ARCH_linux_sparc
35 # include "atomic_linux_sparc.inline.hpp"
36 # include "orderAccess_linux_sparc.inline.hpp"
37 #endif
38 #ifdef TARGET_OS_ARCH_linux_zero
39 # include "atomic_linux_zero.inline.hpp"
40 # include "orderAccess_linux_zero.inline.hpp"
41 #endif
24 42
25 inline void* os::thread_local_storage_at(int index) { 43 inline void* os::thread_local_storage_at(int index) {
26 return pthread_getspecific((pthread_key_t)index); 44 return pthread_getspecific((pthread_key_t)index);
27 } 45 }
28 46
121 return _result; \ 139 return _result; \
122 } while(false) 140 } while(false)
123 141
124 inline bool os::numa_has_static_binding() { return true; } 142 inline bool os::numa_has_static_binding() { return true; }
125 inline bool os::numa_has_group_homing() { return false; } 143 inline bool os::numa_has_group_homing() { return false; }
144
145 #endif // OS_LINUX_VM_OS_LINUX_INLINE_HPP

mercurial