summaryrefslogtreecommitdiff
path: root/buf.h
blob: 7ab352a68c7a5ec15e32b4a3d5ce72c8dfa07a59 (plain)
1
2
3
4
5
6
7
8
struct buf {
  int flags;
  uint dev;
  uint sector;
  uchar data[512];
};
#define B_BUSY 0x1
#define B_VALID 0x2