|
|
| version 1.27, 2004/02/17 19:38:53 | version 1.28, 2004/03/29 17:30:23 |
|---|---|
| Line 98 static volatile u_int cpu_reset_proxy_ac | Line 98 static volatile u_int cpu_reset_proxy_ac |
| #endif | #endif |
| extern int _ucodesel, _udatasel; | extern int _ucodesel, _udatasel; |
| /* | |
| * quick version of vm_fault | |
| */ | |
| int | |
| vm_fault_quick(v, prot) | |
| caddr_t v; | |
| int prot; | |
| { | |
| int r; | |
| if (prot & VM_PROT_WRITE) | |
| r = subyte(v, fubyte(v)); | |
| else | |
| r = fubyte(v); | |
| return(r); | |
| } | |
| /* | /* |
| * Finish a fork operation, with process p2 nearly set up. | * Finish a fork operation, with process p2 nearly set up. |