Searched defs:QueueNode (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.hpp485 class QueueNode : public CHeapObj<mtInternal> { class in class:JvmtiDeferredEventQueue
488 QueueNode* _next;
491 QueueNode(const JvmtiDeferredEvent& event) function in class:JvmtiDeferredEventQueue::QueueNode
495 QueueNode* next() const { return _next; }
497 void set_next(QueueNode* next) { _next = next; }
500 static QueueNode* _queue_head; // Hold Service_lock to access
501 static QueueNode* _queue_tail; // Hold Service_lock to access
502 static volatile QueueNode* _pending_list; // Uses CAS for read/update

Completed in 32 milliseconds