xv6-riscv-rust/buf.h

8 lines
94 B
C

struct buf {
int flags;
uint dev;
uint sector;
uchar data[512];
};
#define B_BUSY 0x1