Searched refs:qlock (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinPool.java259 * field qlock), because submitters encountering a busy queue move
263 * putOrderedInt). The qlock is also used during termination
461 * helps terminate others by setting their (qlock) status,
785 volatile int qlock; // 1: locked, < 0: terminate; else 0 field in class:ForkJoinPool.WorkQueue
998 qlock = 0;
1024 qlock = 0;
1323 (WorkQueue.class.getDeclaredField("qlock"));
1632 w.qlock = -1; // ensure set
1775 stat = w.qlock = -1; // pool terminating
1782 stat = w.qlock
[all...]
H A DSynchronousQueue.java1133 private ReentrantLock qlock; field in class:SynchronousQueue
1146 qlock = new ReentrantLock(true);
1151 qlock = new ReentrantLock();

Completed in 9 milliseconds