Home
last modified time | relevance | path

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

/linux-6.1.9/arch/powerpc/kernel/
Dprocess.c1191 struct thread_struct *new_thread) in restore_sprs() argument
1195 old_thread->vrsave != new_thread->vrsave) in restore_sprs()
1196 mtspr(SPRN_VRSAVE, new_thread->vrsave); in restore_sprs()
1200 old_thread->spefscr != new_thread->spefscr) in restore_sprs()
1201 mtspr(SPRN_SPEFSCR, new_thread->spefscr); in restore_sprs()
1206 if (new_thread->dscr_inherit) in restore_sprs()
1207 dscr = new_thread->dscr; in restore_sprs()
1214 if (old_thread->bescr != new_thread->bescr) in restore_sprs()
1215 mtspr(SPRN_BESCR, new_thread->bescr); in restore_sprs()
1216 if (old_thread->ebbhr != new_thread->ebbhr) in restore_sprs()
[all …]
/linux-6.1.9/arch/um/kernel/
Dprocess.c184 new_thread(task_stack_page(p), &p->thread.switch_buf, handler); in copy_thread()
/linux-6.1.9/arch/um/include/shared/
Dos.h290 extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void));
/linux-6.1.9/drivers/android/
Dbinder.c4806 struct binder_proc *proc, struct binder_thread *new_thread) in binder_get_thread_ilocked() argument
4823 if (!new_thread) in binder_get_thread_ilocked()
4825 thread = new_thread; in binder_get_thread_ilocked()
4840 INIT_LIST_HEAD(&new_thread->waiting_thread_node); in binder_get_thread_ilocked()
4847 struct binder_thread *new_thread; in binder_get_thread() local
4853 new_thread = kzalloc(sizeof(*thread), GFP_KERNEL); in binder_get_thread()
4854 if (new_thread == NULL) in binder_get_thread()
4857 thread = binder_get_thread_ilocked(proc, new_thread); in binder_get_thread()
4859 if (thread != new_thread) in binder_get_thread()
4860 kfree(new_thread); in binder_get_thread()
/linux-6.1.9/arch/um/os-Linux/skas/
Dprocess.c618 void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)) in new_thread() function