diff options
| author | kaashoek <kaashoek> | 2006-09-08 14:36:44 +0000 |
|---|---|---|
| committer | kaashoek <kaashoek> | 2006-09-08 14:36:44 +0000 |
| commit | 8e1d1ec934d5ebcd4d8208f88857be12c8a97a06 (patch) | |
| tree | 9df339c0bcd494c2e60f63650cac001c62b1ebd2 /buf.h | |
| parent | 50f88503664aae07e22e3ed2575853e396f909b5 (diff) | |
| download | xv6-labs-2022-8e1d1ec934d5ebcd4d8208f88857be12c8a97a06.tar.xz xv6-labs-2022-8e1d1ec934d5ebcd4d8208f88857be12c8a97a06.zip | |
some comment changes
Diffstat (limited to 'buf.h')
| -rw-r--r-- | buf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,5 +6,5 @@ struct buf { struct buf *next; uchar data[512]; }; -#define B_BUSY 0x1 -#define B_VALID 0x2 +#define B_BUSY 0x1 // buffer is locked by some process +#define B_VALID 0x2 // buffer contains the data of the sector |
