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

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/util/
H A DThreadPool.java69 private IPSThread[] idleThreadList; field in class:ThreadPool
72 * tail points to the last available idle thread in the idleThreadList. When
73 * the idleThreadList is empty, tail is set to -1. IMPORTANT: tail MUST
74 * always be accessed by acquiring a lock on idleThreadList. Otherwise, the
114 idleThreadList = new IPSThread[numThreads];
147 synchronized (idleThreadList) {
153 idleThreadList.wait();
157 ipsThread = idleThreadList[tail--];
159 // Now that the idle thread is off the idleThreadList, there is no
161 // idle thread. Release the lock on idleThreadList no
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/util/
H A DThreadPool.java69 private IPSThread[] idleThreadList; field in class:ThreadPool
72 * tail points to the last available idle thread in the idleThreadList. When
73 * the idleThreadList is empty, tail is set to -1. IMPORTANT: tail MUST
74 * always be accessed by acquiring a lock on idleThreadList. Otherwise, the
114 idleThreadList = new IPSThread[numThreads];
147 synchronized (idleThreadList) {
153 idleThreadList.wait();
157 ipsThread = idleThreadList[tail--];
159 // Now that the idle thread is off the idleThreadList, there is no
161 // idle thread. Release the lock on idleThreadList no
[all...]

Completed in 28 milliseconds