Lines Matching defs:thread
1553 * group-wide total, not its individual thread total.
1736 struct elf_thread_core_info *thread;
1748 * When a regset has a writeback hook, we call it on each thread before
1874 * Figure out how many notes we're going to need for each thread.
1903 * Allocate a structure for each thread.
1905 info->thread = kzalloc(offsetof(struct elf_thread_core_info,
1908 if (unlikely(!info->thread))
1911 info->thread->task = dump_task;
1920 t->next = info->thread->next;
1921 info->thread->next = t;
1925 * Now fill in each thread's information.
1927 for (t = info->thread; t != NULL; t = t->next)
1950 * Write all the notes for each thread. When writing the first thread, the
1951 * process-wide notes are interleaved after the first thread-specific note.
1957 struct elf_thread_core_info *t = info->thread;
1989 struct elf_thread_core_info *threads = info->thread;