src/share/vm/runtime/thread.inline.hpp

Thu, 22 Aug 2013 09:39:54 -0700

author
goetz
date
Thu, 22 Aug 2013 09:39:54 -0700
changeset 6461
bdd155477289
parent 4299
f34d701e952e
child 6876
710a3c8b516e
child 6911
ce8f6bb717c9
permissions
-rw-r--r--

8023033: PPC64 (part 13): basic changes for AIX
Summary: Added AIX includes alpha-sorted before BSD. Fix compilation issues with xlC in shared code. Basic shared platform dependend adaption (vm_version etc.).
Reviewed-by: kvn, dholmes, stefank

stefank@4299 1 /*
stefank@4299 2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
stefank@4299 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
stefank@4299 4 *
stefank@4299 5 * This code is free software; you can redistribute it and/or modify it
stefank@4299 6 * under the terms of the GNU General Public License version 2 only, as
stefank@4299 7 * published by the Free Software Foundation.
stefank@4299 8 *
stefank@4299 9 * This code is distributed in the hope that it will be useful, but WITHOUT
stefank@4299 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
stefank@4299 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
stefank@4299 12 * version 2 for more details (a copy is included in the LICENSE file that
stefank@4299 13 * accompanied this code).
stefank@4299 14 *
stefank@4299 15 * You should have received a copy of the GNU General Public License version
stefank@4299 16 * 2 along with this work; if not, write to the Free Software Foundation,
stefank@4299 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
stefank@4299 18 *
stefank@4299 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
stefank@4299 20 * or visit www.oracle.com if you need additional information or have any
stefank@4299 21 * questions.
stefank@4299 22 *
stefank@4299 23 */
stefank@4299 24
stefank@4299 25 #ifndef SHARE_VM_RUNTIME_THREAD_INLINE_HPP
stefank@4299 26 #define SHARE_VM_RUNTIME_THREAD_INLINE_HPP
stefank@4299 27
stefank@4299 28 #define SHARE_VM_RUNTIME_THREAD_INLINE_HPP_SCOPE
stefank@4299 29
stefank@4299 30 #include "runtime/thread.hpp"
stefank@4299 31 #ifdef TARGET_OS_FAMILY_linux
stefank@4299 32 # include "thread_linux.inline.hpp"
stefank@4299 33 #endif
stefank@4299 34 #ifdef TARGET_OS_FAMILY_solaris
stefank@4299 35 # include "thread_solaris.inline.hpp"
stefank@4299 36 #endif
stefank@4299 37 #ifdef TARGET_OS_FAMILY_windows
stefank@4299 38 # include "thread_windows.inline.hpp"
stefank@4299 39 #endif
goetz@6461 40 #ifdef TARGET_OS_FAMILY_aix
goetz@6461 41 # include "thread_aix.inline.hpp"
goetz@6461 42 #endif
stefank@4299 43 #ifdef TARGET_OS_FAMILY_bsd
stefank@4299 44 # include "thread_bsd.inline.hpp"
stefank@4299 45 #endif
stefank@4299 46
stefank@4299 47 #undef SHARE_VM_RUNTIME_THREAD_INLINE_HPP_SCOPE
stefank@4299 48
stefank@4299 49 #endif // SHARE_VM_RUNTIME_THREAD_INLINE_HPP

mercurial