Home
last modified time | relevance | path

Searched refs:thread_list (Results 1 – 8 of 8) sorted by relevance

/linux/tools/perf/tests/workloads/
H A Dthloop.c35 pthread_t *thread_list = NULL; in thloop() local
56 thread_list = calloc(nt, sizeof(pthread_t)); in thloop()
57 if (thread_list == NULL) { in thloop()
62 int ret = pthread_create(&thread_list[i], NULL, thfunc, test_loop); in thloop()
75 if (thread_list && thread_list[i]) in thloop()
76 pthread_join(thread_list[i], /*retval=*/NULL); in thloop()
78 free(thread_list); in thloop()
/linux/drivers/md/dm-vdo/
H A Dthread-utils.c18 static struct hlist_head thread_list; variable
41 hlist_add_head(&thread->thread_links, &thread_list); in thread_starter()
/linux/fs/
H A Dbinfmt_elf_fdpic.c1478 struct elf_thread_status *thread_list = NULL; in elf_fdpic_core_dump() local
1503 tmp->next = thread_list; in elf_fdpic_core_dump()
1504 thread_list = tmp; in elf_fdpic_core_dump()
1512 tmp->next = thread_list; in elf_fdpic_core_dump()
1513 thread_list = tmp; in elf_fdpic_core_dump()
1611 if (!writenote(thread_list->notes, cprm)) in elf_fdpic_core_dump()
1617 for (i = 1; i < thread_list->num_notes; i++) in elf_fdpic_core_dump()
1618 if (!writenote(thread_list->notes + i, cprm)) in elf_fdpic_core_dump()
1622 for (tmp = thread_list->next; tmp; tmp = tmp->next) { in elf_fdpic_core_dump()
1649 while (thread_list) { in elf_fdpic_core_dump()
[all …]
/linux/arch/powerpc/kernel/
H A Dsmp.c104 unsigned int thread_list[MAX_THREAD_LIST_SIZE]; member
820 u32 *thread_list; in parse_thread_groups() local
839 thread_list = &thread_group_array[i + 3]; in parse_thread_groups()
842 tg->thread_list[j] = thread_list[j]; in parse_thread_groups()
878 if (tg->thread_list[idx] == hw_cpu_id) in get_cpu_thread_group_start()
/linux/tools/perf/
H A Dbuiltin-report.c950 struct thread_list *task_a = list_entry(la, struct thread_list, list); in task_list_cmp()
951 struct thread_list *task_b = list_entry(lb, struct thread_list, list); in task_list_cmp()
1043 struct thread_list *task; in tasks_print()
H A Dbuiltin-trace.c4956 struct thread_list *a = list_entry(la, struct thread_list, list); in trace_nr_events_cmp()
4957 struct thread_list *b = list_entry(lb, struct thread_list, list); in trace_nr_events_cmp()
4976 struct thread_list *pos; in trace__fprintf_thread_summary()
/linux/tools/perf/util/
H A Dmachine.h292 struct thread_list { struct
H A Dmachine.c3054 struct thread_list *entry = malloc(sizeof(*entry)); in thread_list_cb()
3071 struct thread_list *pos, *next; in thread_list__delete()