Home | History | Annotate | Download | only in toolbox

Lines Matching full:threads

46 struct thread_table threads;
103 info = get_item(&threads);
152 commit_item(&threads);
180 for (j = 0; j < threads.active; j++)
181 if (tid == threads.data[j].tid)
183 if (j == threads.active)
185 else if (!(flags & FLAG_HIDE_IDLE) || threads.data[j].run_count - last_threads.data[i].run_count)
187 NS_TO_S_D(threads.data[j].exec_time - last_threads.data[i].exec_time),
188 NS_TO_S_D(threads.data[j].delay_time - last_threads.data[i].delay_time),
189 threads.data[j].run_count - last_threads.data[i].run_count,
190 NS_TO_S_D(threads.data[j].exec_time), NS_TO_S_D(threads.data[j].delay_time),
191 threads.data[j].run_count, threads.data[j].name);
215 printf("Processes: %d, Threads %d\n", processes.active, threads.active);
257 last_threads = threads;
258 threads = tmp;
259 threads.active = 0;