Skip to content
Snippets Groups Projects
Commit 872a63e1 authored by rsc's avatar rsc
Browse files

nits

parent 766ba5cc
No related branches found
No related tags found
No related merge requests found
...@@ -96,8 +96,7 @@ bget(uint dev, uint sector) ...@@ -96,8 +96,7 @@ bget(uint dev, uint sector)
panic("bget: no buffers"); panic("bget: no buffers");
} }
// Return a B_BUSY buf with the contents of the indicated // Return a B_BUSY buf with the contents of the indicated disk sector.
// disk sector.
struct buf* struct buf*
bread(uint dev, uint sector) bread(uint dev, uint sector)
{ {
...@@ -114,8 +113,7 @@ bread(uint dev, uint sector) ...@@ -114,8 +113,7 @@ bread(uint dev, uint sector)
return b; return b;
} }
// Write buf's contents to disk. // Write buf's contents to disk. Must be locked.
// Must be locked.
void void
bwrite(struct buf *b) bwrite(struct buf *b)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment