diff options
author | Frans Kaashoek <[email protected]> | 2014-08-29 17:06:49 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2014-08-29 17:06:49 -0400 |
commit | 74c77da6f8a21e905d51dceb6016769a3652b045 (patch) | |
tree | 3c31a21e7dd871eeadc98cb4cb2a359270334a3f | |
parent | ac83a21a5b5ae0089b67b21c4ce8b953b59d2264 (diff) | |
download | xv6-labs-74c77da6f8a21e905d51dceb6016769a3652b045.tar.gz xv6-labs-74c77da6f8a21e905d51dceb6016769a3652b045.tar.bz2 xv6-labs-74c77da6f8a21e905d51dceb6016769a3652b045.zip |
Nice layout for a printout of the code
-rw-r--r-- | bio.c | 2 | ||||
-rw-r--r-- | file.h | 3 | ||||
-rw-r--r-- | log.c | 3 | ||||
-rw-r--r-- | main.c | 5 | ||||
-rw-r--r-- | mp.h | 2 | ||||
-rw-r--r-- | runoff.spec | 2 | ||||
-rw-r--r-- | vm.c | 8 |
7 files changed, 20 insertions, 5 deletions
@@ -138,4 +138,6 @@ brelse(struct buf *b) release(&bcache.lock); } +//PAGEBREAK! +// Blank page. @@ -36,3 +36,6 @@ struct devsw { extern struct devsw devsw[]; #define CONSOLE 1 + +//PAGEBREAK! +// Blank page. @@ -227,6 +227,3 @@ log_write(struct buf *b) b->flags |= B_DIRTY; // prevent eviction } -//PAGEBREAK! -// Blank page. - @@ -113,4 +113,7 @@ pde_t entrypgdir[NPDENTRIES] = { //PAGEBREAK! // Blank page. - +//PAGEBREAK! +// Blank page. +//PAGEBREAK! +// Blank page. @@ -52,3 +52,5 @@ struct mpioapic { // I/O APIC table entry #define MPIOINTR 0x03 // One per bus interrupt source #define MPLINTR 0x04 // One per system interrupt source +//PAGEBREAK! +// Blank page. diff --git a/runoff.spec b/runoff.spec index 8f800ac..9247948 100644 --- a/runoff.spec +++ b/runoff.spec @@ -1,5 +1,5 @@ # Is sheet 01 (after the TOC) a left sheet or a right sheet? -sheet1: right +sheet1: left # "left" and "right" specify which page of a two-page spread a file # must start on. "left" means that a file must start on the first of @@ -376,3 +376,11 @@ copyout(pde_t *pgdir, uint va, void *p, uint len) } return 0; } + +//PAGEBREAK! +// Blank page. +//PAGEBREAK! +// Blank page. +//PAGEBREAK! +// Blank page. + |