scsi_debug.h

来自「LINUX1.0内核源代码,学习LINUX编程的一定要看。」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef _SCSI_DEBUG_H#include <linux/types.h>int scsi_debug_detect(int);int scsi_debug_command(Scsi_Cmnd *);int scsi_debug_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));int scsi_debug_abort(Scsi_Cmnd *, int);int scsi_debug_biosparam(int, int*);char *scsi_debug_info(void);int scsi_debug_reset(Scsi_Cmnd *);#ifndef NULL	#define NULL 0#endif#define SCSI_DEBUG_MAILBOXES 8#define SCSI_DEBUG {"SCSI DEBUG", scsi_debug_detect,	\		scsi_debug_info, scsi_debug_command,		\		scsi_debug_queuecommand,			\		scsi_debug_abort,				\		scsi_debug_reset,				\		NULL,						\		scsi_debug_biosparam,				\		SCSI_DEBUG_MAILBOXES, 7, SG_ALL, 1, 0, 1}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?