diff options
author | Robert Morris <[email protected]> | 2019-07-24 13:33:43 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2019-07-24 13:33:43 -0400 |
commit | a77287e9244ae5dac7060c0b8817bc195325af0c (patch) | |
tree | fbf856ce361a9bc75abe4c484ecaff324607dd71 /kernel/bio.c | |
parent | b4f89bb5290cff5926e5a735487b024f8314e028 (diff) | |
download | xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.gz xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.bz2 xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.zip |
no more PAGEBREAK
Diffstat (limited to 'kernel/bio.c')
-rw-r--r-- | kernel/bio.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/bio.c b/kernel/bio.c index 41e3d1f..a08884b 100644 --- a/kernel/bio.c +++ b/kernel/bio.c @@ -43,7 +43,6 @@ binit(void) initlock(&bcache.lock, "bcache"); -//PAGEBREAK! // Create linked list of buffers bcache.head.prev = &bcache.head; bcache.head.next = &bcache.head; @@ -140,6 +139,3 @@ brelse(struct buf *b) release(&bcache.lock); } -//PAGEBREAK! -// Blank page. - |