hd_request_struct.h
来自「阿基米德操作系统的源代码」· C头文件 代码 · 共 17 行
H
17 行
//////////////////////////////////////////////////////////////////////////
struct hd_request_struct {
int volatile hd; /* -1 if no request */
int volatile block;
int volatile cyl;
int volatile head;
int volatile sector;
int volatile nsector;
int volatile cmd;
int volatile errors;
struct buffer_head * volatile bh;
struct hd_request_struct * volatile next;
};
//////////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?