文件名称:块型设备缓冲-UNIX操作系统课件
文件大小:124KB
文件格式:PPT
更新时间:2024-05-12 12:31:21
UNIX操作系统
块型设备缓冲 struct buf { int b_flags; /* see definition below */ struct buf *b_forw; /* headed by devtab of b_dev */ struct buf *b_back; /* 设备b链向后指针 */ struct buf *av_forw; /* av链向前指针 */ struct buf *av_back; /* av链向后指针 */ int b_dev; /* 设备名 */ int b_wcount; /* 传送字数 */ char *b_addr; /* 内存地址(低位) */ char *b_xmem; /* 内存地址(高位) */ char *b_blkno; /* 设备物理块号 */ char b_error; /* 返回出错信息 */ char *b_resid; /* 传送剩余字节 */ }buf[NBUF];