Lines Matching defs:unfinished
231 * If the count of unfinished tasks < 1, <b>false</b> is returned directly.
232 * If the count of unfinished tasks = 1, all the threads blocked
234 * the count of unfinished tasks decrements by 1, and <b>true</b> is returned.
235 * If the count of unfinished tasks > 1,
236 * the count of unfinished tasks decrements by 1, and <b>true</b> is returned.
241 int unfinished = unfinishedTaskCount_ - 1;
243 if (unfinished <= 0) {
244 if (unfinished < 0) {
250 unfinishedTaskCount_ = unfinished;
267 * @brief Obtains the number of unfinished tasks.