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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java982 * only from worker threads. Unless completedAbruptly is set,
991 * @param completedAbruptly if the worker died due to user exception
993 private void processWorkerExit(Worker w, boolean completedAbruptly) { argument
994 if (completedAbruptly) // If abrupt, then workerCount wasn't adjusted
1010 if (!completedAbruptly) {
1089 * external code, in which case completedAbruptly holds, which
1099 * (breaking loop with completedAbruptly true) without processing
1128 boolean completedAbruptly = true;
1161 completedAbruptly = false;
1163 processWorkerExit(w, completedAbruptly);
[all...]

Completed in 876 milliseconds