Searched refs:td0 (Results 1 – 9 of 9) sorted by relevance
| /freebsd/sys/arm64/arm64/ |
| H A D | vm_machdep.c | 180 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 D | vm_machdep.c | 188 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 D | vm_machdep.c | 175 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 D | vm_machdep.c | 455 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 D | exec_machdep.c | 1108 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 D | vm_machdep.c | 594 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 D | kern_proc.c | 1083 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 D | kern_sig.c | 668 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 D | proc.h | 1234 void cpu_copy_thread(struct thread *td, struct thread *td0);
|