Home | History | Annotate | Download | only in concurrent

Lines Matching refs:MATCH

195      * changed, but cannot yet proceed until match is set.  In the
198 * the linearization point to be a CAS of the match field (as done
248 * slot CASes, it would also be legal for the write to Node.match
285 * The bound for spins while waiting for a match. The actual
316 volatile Object match; // Item provided by releasing thread
366 q.match = item;
378 Object v = p.match;
380 U.putOrderedObject(p, MATCH, null);
394 spins = SPINS; // releaser hasn't set match yet
461 q.match = item;
487 while ((v = p.match) == null) {
511 U.putOrderedObject(p, MATCH, null);
631 private static final long MATCH;
641 MATCH = U.objectFieldOffset
642 (Node.class.getDeclaredField("match"));