Diff for /src/sys/i386/i386/Attic/vm_machdep.c between versions 1.27 and 1.28

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.

Removed from v.1.27  
changed lines
  Added in v.1.28