< prev index next >

src/share/vm/gc/shared/taskqueue.inline.hpp

Print this page
rev 8362 : [mq]: hotspot

*** 20,39 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_UTILITIES_TASKQUEUE_INLINE_HPP ! #define SHARE_VM_UTILITIES_TASKQUEUE_INLINE_HPP #include "memory/allocation.inline.hpp" #include "oops/oop.inline.hpp" - #include "utilities/debug.hpp" - #include "utilities/taskqueue.hpp" - #include "utilities/stack.inline.hpp" #include "runtime/atomic.inline.hpp" #include "runtime/orderAccess.inline.hpp" template <class T, MEMFLAGS F> inline GenericTaskQueueSet<T, F>::GenericTaskQueueSet(int n) : _n(n) { typedef T* GenericTaskQueuePtr; _queues = NEW_C_HEAP_ARRAY(GenericTaskQueuePtr, n, F); --- 20,39 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_SHARED_TASKQUEUE_INLINE_HPP ! #define SHARE_VM_GC_SHARED_TASKQUEUE_INLINE_HPP + #include "gc/shared/taskqueue.hpp" #include "memory/allocation.inline.hpp" #include "oops/oop.inline.hpp" #include "runtime/atomic.inline.hpp" #include "runtime/orderAccess.inline.hpp" + #include "utilities/debug.hpp" + #include "utilities/stack.inline.hpp" template <class T, MEMFLAGS F> inline GenericTaskQueueSet<T, F>::GenericTaskQueueSet(int n) : _n(n) { typedef T* GenericTaskQueuePtr; _queues = NEW_C_HEAP_ARRAY(GenericTaskQueuePtr, n, F);
*** 274,279 **** } // tty->print_cr("END OopTaskQueue::oops_do"); } ! #endif // SHARE_VM_UTILITIES_TASKQUEUE_INLINE_HPP --- 274,279 ---- } // tty->print_cr("END OopTaskQueue::oops_do"); } ! #endif // SHARE_VM_GC_SHARED_TASKQUEUE_INLINE_HPP
< prev index next >