Symbol: thread_list
arch/powerpc/kernel/smp.c
104
unsigned int thread_list[MAX_THREAD_LIST_SIZE];
arch/powerpc/kernel/smp.c
820
u32 *thread_list;
arch/powerpc/kernel/smp.c
841
thread_list = &thread_group_array[i + 3];
arch/powerpc/kernel/smp.c
844
tg->thread_list[j] = thread_list[j];
arch/powerpc/kernel/smp.c
880
if (tg->thread_list[idx] == hw_cpu_id)
drivers/md/dm-vdo/thread-utils.c
18
static struct hlist_head thread_list;
drivers/md/dm-vdo/thread-utils.c
41
hlist_add_head(&thread->thread_links, &thread_list);
fs/binfmt_elf_fdpic.c
1484
struct elf_thread_status *thread_list = NULL;
fs/binfmt_elf_fdpic.c
1509
tmp->next = thread_list;
fs/binfmt_elf_fdpic.c
1510
thread_list = tmp;
fs/binfmt_elf_fdpic.c
1518
tmp->next = thread_list;
fs/binfmt_elf_fdpic.c
1519
thread_list = tmp;
fs/binfmt_elf_fdpic.c
1617
if (!writenote(thread_list->notes, cprm))
fs/binfmt_elf_fdpic.c
1623
for (i = 1; i < thread_list->num_notes; i++)
fs/binfmt_elf_fdpic.c
1624
if (!writenote(thread_list->notes + i, cprm))
fs/binfmt_elf_fdpic.c
1628
for (tmp = thread_list->next; tmp; tmp = tmp->next) {
fs/binfmt_elf_fdpic.c
1655
while (thread_list) {
fs/binfmt_elf_fdpic.c
1656
tmp = thread_list;
fs/binfmt_elf_fdpic.c
1657
thread_list = thread_list->next;
tools/perf/builtin-report.c
1043
struct thread_list *task;
tools/perf/builtin-report.c
950
struct thread_list *task_a = list_entry(la, struct thread_list, list);
tools/perf/builtin-report.c
951
struct thread_list *task_b = list_entry(lb, struct thread_list, list);
tools/perf/builtin-trace.c
4955
struct thread_list *a = list_entry(la, struct thread_list, list);
tools/perf/builtin-trace.c
4956
struct thread_list *b = list_entry(lb, struct thread_list, list);
tools/perf/builtin-trace.c
4975
struct thread_list *pos;
tools/perf/tests/workloads/thloop.c
35
pthread_t *thread_list = NULL;
tools/perf/tests/workloads/thloop.c
56
thread_list = calloc(nt, sizeof(pthread_t));
tools/perf/tests/workloads/thloop.c
57
if (thread_list == NULL) {
tools/perf/tests/workloads/thloop.c
62
int ret = pthread_create(&thread_list[i], NULL, thfunc, test_loop);
tools/perf/tests/workloads/thloop.c
75
if (thread_list && thread_list[i])
tools/perf/tests/workloads/thloop.c
76
pthread_join(thread_list[i], /*retval=*/NULL);
tools/perf/tests/workloads/thloop.c
78
free(thread_list);
tools/perf/util/machine.c
3083
struct thread_list *entry = malloc(sizeof(*entry));
tools/perf/util/machine.c
3100
struct thread_list *pos, *next;