Lines Matching refs:starts
174 int starts = -1;
234 "Usage: pan -n name [ -SyAehpqQ ] [ -s starts ]"
260 starts = atoi(optarg);
296 timed = 1; //-t implies run as many starts as possible, by default
396 /* Supply a default for starts. If we are in sequential mode, use
399 if (timed == 1 && starts == -1) { /* timed, infinite by default */
400 starts = -1;
401 } else if (starts == -1) {
403 starts = coll->cnt;
405 starts = 1;
407 } else if (starts == 0) { /* if the user specified infinite, set it */
408 starts = -1;
410 if (starts < keep_active)
411 starts = keep_active;
526 while ((num_active < keep_active) && (starts != 0)) {
552 if ((cpid != -1 || sequential) && starts > 0)
553 --starts;
559 } /* while ((num_active < keep_active) && (starts != 0)) */
561 if (starts == 0) {
565 } else if (starts == -1) //wjh