From: Andy P. <at...@us...> - 2001-08-17 20:20:44
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/mm In directory usw-pr-cvs1:/tmp/cvs-serv18613/mm Modified Files: fault.c Log Message: Signals implementation. First attempt. Index: fault.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/mm/fault.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- fault.c 2001/07/31 17:28:26 1.7 +++ fault.c 2001/08/17 20:20:41 1.8 @@ -130,7 +130,8 @@ printk("do_page_fault: sending SIGSEGV\n"); force_sig(SIGSEGV, current); /* signals arent implemented yet */ - machine_halt(); + /* They are now atp aug 17 2001 */ +// machine_halt(); return; } |