/* File: SCSIDebug.h Contains: header stuff for various debugging stuff Written by: Paul Wolf Copyright: © 1992-1993 by Apple Computer, Inc., all rights reserved. Change History (most recent first): 11/22/93 pdw Rolling in from . 10/14/93 pdw roll-in. 9/26/93 pdw Added forIttInit default. 6/29/93 pdw Adding a few and prettying it up a bit. <1> 5/27/93 PW first checked in */ #ifndef __SCSIDebug__ #define __SCSIDebug__ 1 //ÉÉÉÉÉÉ Include_Debugger_Names ÉÉÉÉÉÉ routine names in .a / IfDebugXXX shows up in .c #ifndef Include_Debugger_Names #define Include_Debugger_Names 0 #endif #if Include_Debugger_Names #define IfDebugger() Debugger() #define IfDebugStr( a ) DebugStr(a) #else #define IfDebugger() #define IfDebugStr( a ) #endif //ÉÉÉÉÉÉ forceSyncAlways ÉÉÉÉÉÉ force all IOs to be handled synchronously #ifndef forceSyncAlways #define forceSyncAlways 0 #endif //ÉÉÉÉÉÉ GPHYSICAL ÉÉÉÉÉÉ I don't know what this is #ifndef GPHYSICAL #define GPHYSICAL 1 #endif //ÉÉÉÉÉÉ RECORD_ON ÉÉÉÉÉÉ turns recording of SCSI events on #ifndef RECORD_ON #define RECORD_ON 1 #endif //ÉÉÉÉÉÉ ERR_RECORD_ON ÉÉÉÉÉÉ turns recording of SCSI events on #ifndef ERR_RECORD_ON #define ERR_RECORD_ON 1 #endif //ÉÉÉÉÉÉ forIttInit ÉÉÉÉÉÉ building an Init #ifndef forIttInit #define forIttInit 0 #endif #endif // __SCSIDebug__