src/share/vm/utilities/taskqueue.hpp

Print this page

        

*** 20,29 **** --- 20,54 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_UTILITIES_TASKQUEUE_HPP + #define SHARE_VM_UTILITIES_TASKQUEUE_HPP + + #include "memory/allocation.hpp" + #include "memory/allocation.inline.hpp" + #include "runtime/mutex.hpp" + #ifdef TARGET_OS_ARCH_linux_x86 + # include "orderAccess_linux_x86.inline.hpp" + #endif + #ifdef TARGET_OS_ARCH_linux_sparc + # include "orderAccess_linux_sparc.inline.hpp" + #endif + #ifdef TARGET_OS_ARCH_linux_zero + # include "orderAccess_linux_zero.inline.hpp" + #endif + #ifdef TARGET_OS_ARCH_solaris_x86 + # include "orderAccess_solaris_x86.inline.hpp" + #endif + #ifdef TARGET_OS_ARCH_solaris_sparc + # include "orderAccess_solaris_sparc.inline.hpp" + #endif + #ifdef TARGET_OS_ARCH_windows_x86 + # include "orderAccess_windows_x86.inline.hpp" + #endif + // Simple TaskQueue stats that are collected by default in debug builds. #if !defined(TASKQUEUE_STATS) && defined(ASSERT) #define TASKQUEUE_STATS 1 #elif !defined(TASKQUEUE_STATS)
*** 780,784 **** --- 805,811 ---- typedef OverflowTaskQueue<StarTask> OopStarTaskQueue; typedef GenericTaskQueueSet<OopStarTaskQueue> OopStarTaskQueueSet; typedef OverflowTaskQueue<size_t> RegionTaskQueue; typedef GenericTaskQueueSet<RegionTaskQueue> RegionTaskQueueSet; + + #endif // SHARE_VM_UTILITIES_TASKQUEUE_HPP