Home
last modified time | relevance | path

Searched refs:pcb_ext (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/sys/i386/i386/
H A Dvm86.c194 if (curpcb->pcb_ext == 0) in vm86_emulate()
196 vm86 = &curpcb->pcb_ext->ext_vm86; in vm86_emulate()
400 struct pcb_ext vml_ext;
409 struct pcb_ext vml_ext;
427 struct pcb_ext *ext; in vm86_initialize_pae()
492 pcb->pcb_ext = ext; in vm86_initialize_pae()
494 bzero(ext, sizeof(struct pcb_ext)); in vm86_initialize_pae()
533 struct pcb_ext *ext; in vm86_initialize_nopae()
556 pcb->pcb_ext = ext; in vm86_initialize_nopae()
668 vm86 = &curpcb->pcb_ext->ext_vm86; in vm86_prepcall()
[all …]
H A Dvm_machdep.c195 pcb2->pcb_ext = NULL; in copy_thread()
275 pcb2->pcb_ext = NULL; in cpu_fork()
368 if (pcb->pcb_ext != NULL) { in cpu_thread_clean()
374 pmap_trm_free(pcb->pcb_ext, ctob(IOPAGES + 1)); in cpu_thread_clean()
375 pcb->pcb_ext = NULL; in cpu_thread_clean()
398 pcb->pcb_ext = NULL; in cpu_thread_alloc()
H A Dsys_machdep.c285 struct pcb_ext *ext; in i386_extend_pcb()
320 KASSERT(td->td_pcb->pcb_ext == 0, ("already have a TSS!")); in i386_extend_pcb()
325 td->td_pcb->pcb_ext = ext; in i386_extend_pcb()
352 if (td->td_pcb->pcb_ext == 0) in i386_set_ioperm()
355 iomap = (char *)td->td_pcb->pcb_ext->ext_iomap; in i386_set_ioperm()
379 if (td->td_pcb->pcb_ext == 0) { in i386_get_ioperm()
384 iomap = (char *)td->td_pcb->pcb_ext->ext_iomap; in i386_get_ioperm()
H A Dexec_machdep.c213 struct vm86_kernel *vm86 = &td->td_pcb->pcb_ext->ext_vm86; in osendsig()
333 struct vm86_kernel *vm86 = &td->td_pcb->pcb_ext->ext_vm86; in freebsd4_sendsig()
492 struct vm86_kernel *vm86 = &td->td_pcb->pcb_ext->ext_vm86; in sendsig()
570 if (td->td_pcb->pcb_ext == 0) in osigreturn()
572 vm86 = &td->td_pcb->pcb_ext->ext_vm86; in osigreturn()
679 if (td->td_pcb->pcb_ext == 0) in freebsd4_sigreturn()
681 vm86 = &td->td_pcb->pcb_ext->ext_vm86; in freebsd4_sigreturn()
787 if (td->td_pcb->pcb_ext == 0) in sys_sigreturn()
789 vm86 = &td->td_pcb->pcb_ext->ext_vm86; in sys_sigreturn()
H A Dgenassym.c126 ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext));
128 ASSYM(PCB_EXT_TSS, offsetof(struct pcb_ext, ext_tss));
H A Dmachdep.c1601 thread0.td_pcb->pcb_ext = 0; in init386()
/freebsd-14.2/sys/i386/include/
H A Dpcb.h94 struct pcb_ext *pcb_ext; /* optional pcb extension */ member
H A Dpcb_ext.h39 struct pcb_ext { struct