Searched refs:td0 (Results 1 – 8 of 8) sorted by relevance
| /f-stack/freebsd/arm64/arm64/ |
| H A D | vm_machdep.c | 172 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument 174 bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe)); in cpu_copy_thread() 175 bcopy(td0->td_pcb, td->td_pcb, sizeof(struct pcb)); in cpu_copy_thread() 187 td->td_md.md_saved_daif = td0->td_md.md_saved_daif & ~DAIF_I_MASKED; in cpu_copy_thread()
|
| /f-stack/freebsd/arm/arm/ |
| H A D | vm_machdep.c | 205 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument 208 bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe)); in cpu_copy_thread() 209 bcopy(td0->td_pcb, td->td_pcb, sizeof(struct pcb)); in cpu_copy_thread()
|
| /f-stack/freebsd/amd64/amd64/ |
| H A D | vm_machdep.c | 560 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument 571 update_pcb_bases(td0->td_pcb); in cpu_copy_thread() 572 bcopy(td0->td_pcb, pcb2, sizeof(*pcb2)); in cpu_copy_thread() 576 bcopy(get_pcb_user_save_td(td0), pcb2->pcb_save, in cpu_copy_thread() 583 bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe)); in cpu_copy_thread()
|
| /f-stack/freebsd/i386/i386/ |
| H A D | vm_machdep.c | 424 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument 436 bcopy(td0->td_pcb, pcb2, sizeof(*pcb2)); in cpu_copy_thread() 440 bcopy(get_pcb_user_save_td(td0), pcb2->pcb_save, in cpu_copy_thread() 446 bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe)); in cpu_copy_thread()
|
| /f-stack/freebsd/mips/mips/ |
| H A D | vm_machdep.c | 353 cpu_copy_thread(struct thread *td, struct thread *td0) in cpu_copy_thread() argument 374 bcopy(td0->td_pcb, pcb2, sizeof(*pcb2)); in cpu_copy_thread()
|
| /f-stack/freebsd/kern/ |
| H A D | kern_proc.c | 1048 struct thread *td0; in fill_kinfo_proc_only() local 1111 FOREACH_THREAD_IN_PROC(p, td0) { in fill_kinfo_proc_only() 1112 if (!TD_IS_SWAPPED(td0)) in fill_kinfo_proc_only() 1113 kp->ki_rssize += td0->td_kstack_pages; in fill_kinfo_proc_only() 1143 FOREACH_THREAD_IN_PROC(p, td0) in fill_kinfo_proc_only() 1144 kp->ki_cow += td0->td_cow; in fill_kinfo_proc_only()
|
| H A D | kern_sig.c | 560 struct thread *td0; in sigqueue_delete_set_proc() local 567 FOREACH_THREAD_IN_PROC(p, td0) in sigqueue_delete_set_proc() 568 sigqueue_move_set(&td0->td_sigqueue, &worklist, set); in sigqueue_delete_set_proc()
|
| /f-stack/freebsd/sys/ |
| H A D | proc.h | 1139 void cpu_copy_thread(struct thread *td, struct thread *td0);
|