Home
last modified time | relevance | path

Searched refs:new_thread (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/arch/powerpc/kernel/
H A Dprocess.c1226 struct thread_struct *new_thread) in restore_sprs() argument
1230 old_thread->vrsave != new_thread->vrsave) in restore_sprs()
1231 mtspr(SPRN_VRSAVE, new_thread->vrsave); in restore_sprs()
1235 old_thread->spefscr != new_thread->spefscr) in restore_sprs()
1236 mtspr(SPRN_SPEFSCR, new_thread->spefscr); in restore_sprs()
1241 if (new_thread->dscr_inherit) in restore_sprs()
1242 dscr = new_thread->dscr; in restore_sprs()
1249 if (old_thread->bescr != new_thread->bescr) in restore_sprs()
1250 mtspr(SPRN_BESCR, new_thread->bescr); in restore_sprs()
1251 if (old_thread->ebbhr != new_thread->ebbhr) in restore_sprs()
[all …]
/openbmc/linux/arch/um/kernel/
H A Dprocess.c185 new_thread(task_stack_page(p), &p->thread.switch_buf, handler); in copy_thread()
/openbmc/linux/arch/um/include/shared/
H A Dos.h290 extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void));
/openbmc/linux/drivers/android/
H A Dbinder.c4857 struct binder_proc *proc, struct binder_thread *new_thread) in binder_get_thread_ilocked() argument
4874 if (!new_thread) in binder_get_thread_ilocked()
4876 thread = new_thread; in binder_get_thread_ilocked()
4891 INIT_LIST_HEAD(&new_thread->waiting_thread_node); in binder_get_thread_ilocked()
4898 struct binder_thread *new_thread; in binder_get_thread() local
4904 new_thread = kzalloc(sizeof(*thread), GFP_KERNEL); in binder_get_thread()
4905 if (new_thread == NULL) in binder_get_thread()
4908 thread = binder_get_thread_ilocked(proc, new_thread); in binder_get_thread()
4910 if (thread != new_thread) in binder_get_thread()
4911 kfree(new_thread); in binder_get_thread()
/openbmc/linux/arch/um/os-Linux/skas/
H A Dprocess.c615 void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)) in new_thread() function