Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/i386/i386/
HDvm86.c194 if (curpcb->pcb_ext == 0) in vm86_emulate()
196 vm86 = &curpcb->pcb_ext->ext_vm86; in vm86_emulate()
394 (sizeof(struct pcb_ext) - sizeof(struct segment_descriptor) + \
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()
[all …]
HDvm_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()
HDsys_machdep.c287 struct pcb_ext *ext; in i386_extend_pcb()
322 KASSERT(td->td_pcb->pcb_ext == 0, ("already have a TSS!")); in i386_extend_pcb()
327 td->td_pcb->pcb_ext = ext; in i386_extend_pcb()
354 if (td->td_pcb->pcb_ext == 0) in i386_set_ioperm()
357 iomap = (char *)td->td_pcb->pcb_ext->ext_iomap; in i386_set_ioperm()
381 if (td->td_pcb->pcb_ext == 0) { in i386_get_ioperm()
386 iomap = (char *)td->td_pcb->pcb_ext->ext_iomap; in i386_get_ioperm()
HDexec_machdep.c209 struct vm86_kernel *vm86 = &td->td_pcb->pcb_ext->ext_vm86; in osendsig()
329 struct vm86_kernel *vm86 = &td->td_pcb->pcb_ext->ext_vm86; in freebsd4_sendsig()
488 struct vm86_kernel *vm86 = &td->td_pcb->pcb_ext->ext_vm86; in sendsig()
566 if (td->td_pcb->pcb_ext == 0) in osigreturn()
568 vm86 = &td->td_pcb->pcb_ext->ext_vm86; in osigreturn()
675 if (td->td_pcb->pcb_ext == 0) in freebsd4_sigreturn()
677 vm86 = &td->td_pcb->pcb_ext->ext_vm86; in freebsd4_sigreturn()
783 if (td->td_pcb->pcb_ext == 0) in sys_sigreturn()
785 vm86 = &td->td_pcb->pcb_ext->ext_vm86; in sys_sigreturn()
HDgenassym.c128 ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext));
130 ASSYM(PCB_EXT_TSS, offsetof(struct pcb_ext, ext_tss));
HDmachdep.c1607 thread0.td_pcb->pcb_ext = 0; in init386()
/freebsd-13-stable/sys/i386/include/
HDpcb.h94 struct pcb_ext *pcb_ext; /* optional pcb extension */ member
HDpcb_ext.h39 struct pcb_ext { struct