From 1684690ba89a98ba375b43b4160a8748d4674e7d Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 3 Sep 2004 02:32:44 +0000 Subject: [PATCH] Improve comment. --- src/userprog/exception.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/userprog/exception.c b/src/userprog/exception.c index 2498551..6383a4b 100644 --- a/src/userprog/exception.c +++ b/src/userprog/exception.c @@ -12,9 +12,10 @@ static void page_fault (struct intr_frame *); programs. In a real Unix-like OS, most of these interrupts would be - passed along to the user process in the form of signals, but - we don't implement signals. Instead, we'll make them simply - kill the user process. + passed along to the user process in the form of signals, as + described in [SV-386] 3-24 and 3-25, but we don't implement + signals. Instead, we'll make them simply kill the user + process. Page faults are an exception. Here they are treated the same way as other exceptions, but this will need to change to -- 2.30.2