summaryrefslogtreecommitdiff
path: root/trap.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@x40.(none)>2009-09-03 00:46:15 -0700
committerRuss Cox <rsc@x40.(none)>2009-09-03 00:46:15 -0700
commitc9ee77b8a20e63663b6ffa35b81f8164fefd319a (patch)
tree505682cc8c186183e33250e07739954d844684f8 /trap.c
parentd26025d12463a902133bdc5b60d377d473294a8d (diff)
downloadxv6-labs-c9ee77b8a20e63663b6ffa35b81f8164fefd319a.tar.gz
xv6-labs-c9ee77b8a20e63663b6ffa35b81f8164fefd319a.tar.bz2
xv6-labs-c9ee77b8a20e63663b6ffa35b81f8164fefd319a.zip
formatting tweaks
Diffstat (limited to 'trap.c')
-rw-r--r--trap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/trap.c b/trap.c
index 446ebaa..86ce052 100644
--- a/trap.c
+++ b/trap.c
@@ -73,7 +73,8 @@ trap(struct trapframe *tf)
cpu->id, tf->cs, tf->eip);
lapiceoi();
break;
-
+
+ //PAGEBREAK: 13
default:
if(proc == 0 || (tf->cs&3) == 0){
// In kernel, it must be our mistake.