Home
last modified time | relevance | path

Searched refs:td0 (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/arm64/arm64/
H A Dvm_machdep.c180 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument
182 bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe)); in cpu_copy_thread()
183 bcopy(td0->td_pcb, td->td_pcb, sizeof(struct pcb)); in cpu_copy_thread()
191 vfp_new_thread(td, td0, false); in cpu_copy_thread()
197 td->td_md.md_sctlr = td0->td_md.md_sctlr; in cpu_copy_thread()
205 ptrauth_copy_thread(td, td0); in cpu_copy_thread()
/freebsd/sys/arm/arm/
H A Dvm_machdep.c188 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument
191 bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe)); in cpu_copy_thread()
192 bcopy(td0->td_pcb, td->td_pcb, sizeof(struct pcb)); in cpu_copy_thread()
203 vfp_new_thread(td, td0, false); in cpu_copy_thread()
/freebsd/sys/riscv/riscv/
H A Dvm_machdep.c175 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument
178 bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe)); in cpu_copy_thread()
179 bcopy(td0->td_pcb, td->td_pcb, sizeof(struct pcb)); in cpu_copy_thread()
/freebsd/sys/i386/i386/
H A Dvm_machdep.c455 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument
457 copy_thread(td0, td); in cpu_copy_thread()
465 bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe)); in cpu_copy_thread()
/freebsd/sys/powerpc/powerpc/
H A Dexec_machdep.c1108 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument
1115 if (td0 == curthread) in cpu_copy_thread()
1116 cpu_update_pcb(td0); in cpu_copy_thread()
1121 bcopy(td0->td_pcb, pcb2, sizeof(*pcb2)); in cpu_copy_thread()
1125 bcopy(td0->td_frame, tf, sizeof(struct trapframe)); in cpu_copy_thread()
/freebsd/sys/amd64/amd64/
H A Dvm_machdep.c594 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument
596 copy_thread(td0, td); in cpu_copy_thread()
/freebsd/sys/kern/
H A Dkern_proc.c1083 struct thread *td0; in fill_kinfo_proc_only() local
1147 FOREACH_THREAD_IN_PROC(p, td0) in fill_kinfo_proc_only()
1148 kp->ki_rssize += td0->td_kstack_pages; in fill_kinfo_proc_only()
1174 FOREACH_THREAD_IN_PROC(p, td0) in fill_kinfo_proc_only()
1175 kp->ki_cow += td0->td_cow; in fill_kinfo_proc_only()
H A Dkern_sig.c668 struct thread *td0; in sigqueue_delete_set_proc() local
675 FOREACH_THREAD_IN_PROC(p, td0) in sigqueue_delete_set_proc()
676 sigqueue_move_set(&td0->td_sigqueue, &worklist, set); in sigqueue_delete_set_proc()
/freebsd/sys/sys/
H A Dproc.h1234 void cpu_copy_thread(struct thread *td, struct thread *td0);