--- old/src/share/vm/utilities/taskqueue.hpp 2010-10-28 14:04:06.000000000 +0200 +++ new/src/share/vm/utilities/taskqueue.hpp 2010-10-28 14:04:06.000000000 +0200 @@ -22,6 +22,31 @@ * */ +#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) @@ -782,3 +807,5 @@ typedef OverflowTaskQueue RegionTaskQueue; typedef GenericTaskQueueSet RegionTaskQueueSet; + +#endif // SHARE_VM_UTILITIES_TASKQUEUE_HPP