Home | History | Annotate | Download | only in toolbox

Lines Matching refs:threads

88 static int max_procs, delay, iterations, threads;
162 if (!strcmp(argv[i], "-t")) { threads = 1; continue; }
172 if (threads && proc_cmp == &proc_thr_cmp) {
173 fprintf(stderr, "Sorting by threads per thread makes no sense!\n");
237 new_procs = calloc(INIT_PROCS * (threads ? THREAD_MULT : 1), sizeof(struct proc_info *));
238 num_new_procs = INIT_PROCS * (threads ? THREAD_MULT : 1);
255 if (!threads) {
290 if (threads) {
314 if (!threads)
455 if (!threads)
479 if (!threads)
568 " -t Show threads instead of processes.\n"