xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit c9ee77b8a20e63663b6ffa35b81f8164fefd319a
parent d26025d12463a902133bdc5b60d377d473294a8d
Author: Russ Cox <rsc@x40.(none)>
Date:   Thu,  3 Sep 2009 00:46:15 -0700

formatting tweaks

Diffstat:
Mproc.c | 3++-
Mtrap.c | 3++-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/proc.c b/proc.c @@ -94,7 +94,7 @@ usegment(void) popcli(); } -//PAGEBREAK: 15 +//PAGEBREAK: 32 // Look in the process table for an UNUSED proc. // If found, change state to EMBRYO and return it. // Otherwise return 0. @@ -139,6 +139,7 @@ found: return p; } +//PAGEBREAK: 32 // Set up first user process. void userinit(void) diff --git 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.