NetBSD/sys/compat/pecoff
manu 80ee637534 - Introduce a e_fault field in struct proc to provide emulation specific
memory fault handler. IRIX uses irix_vm_fault, and all other emulation
use NULL, which means to use uvm_fault.

- While we are there, explicitely set to NULL the uninitialized fields in
struct emul: e_fault and e_sysctl on most ports

- e_fault is used by the trap handler, for now only on mips. In order to avoid
intrusive modifications in UVM, the function pointed by e_fault does not
has exactly the same protoype as uvm_fault:
int uvm_fault __P((struct vm_map *, vaddr_t, vm_fault_t, vm_prot_t));
int e_fault __P((struct proc *, vaddr_t, vm_fault_t, vm_prot_t));

- In IRIX share groups, all the VM space is shared, except one page.
This bounds us to have different VM spaces and synchronize modifications
to the VM space accross share group members. We need an IRIX specific hook
to the page fault handler in order to propagate VM space modifications
caused by page faults.
2002-09-21 21:14:54 +00:00
..
Makefile Use /emul/pecoff as prefix to run PE/COFF binaries. 2002-03-18 07:11:06 +00:00
files.pecoff Move a variable `emul_pecoff' to new file. 2002-03-25 06:44:46 +00:00
pecoff_emul.c - Introduce a e_fault field in struct proc to provide emulation specific 2002-09-21 21:14:54 +00:00
pecoff_exec.c Implement passing AT_{E,R}{U,G}ID in the elf aux vector, like solaris. 2002-08-26 21:05:59 +00:00
pecoff_exec.h Implement passing AT_{E,R}{U,G}ID in the elf aux vector, like solaris. 2002-08-26 21:05:59 +00:00
pecoff_misc.c PECOFF version of stat13 and lstat13 couldn't look for 2002-07-07 18:06:02 +00:00
pecoff_syscall.h Regen. 2002-05-03 00:22:16 +00:00
pecoff_syscallargs.h Regen. 2002-07-07 18:07:43 +00:00
pecoff_syscalls.c Regen. 2002-05-03 00:22:16 +00:00
pecoff_sysent.c Regen. 2002-07-07 18:07:43 +00:00
pecoff_util.h add e_path (emulation path) to struct emul, which replaces emulation-specific 2000-12-01 12:28:30 +00:00
syscalls.conf Use /emul/pecoff as prefix to run PE/COFF binaries. 2002-03-18 07:11:06 +00:00
syscalls.master PECOFF version of stat13 and lstat13 couldn't look for 2002-07-07 18:06:02 +00:00