Ignore:
Timestamp:
Jul 12, 2010, 12:57:31 AM (15 years ago)
Author:
David Azarewicz
Message:

AddBuffers reentry fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • OCO/branches/DAZ/include/dbgos2.h

    r507 r513  
    2424/* dprintf is used to output info into the log for the debug version */
    2525#ifdef DEBUG
     26#define DBGCALLCONV     FAR
     27
    2628#define dprintf(a)  PrintfOut a
    2729#define dprintf1(a) if(dbglevel >= 1) PrintfOut a
     
    2931#define dprintf3(a) if(dbglevel >= 3) PrintfOut a
    3032#define dprintf4(a) if(dbglevel >= 4) PrintfOut a
     33
     34#define DebugInt3() //_asm int 3 DAZ temporarily taken out of debug build to prevent traps
     35
    3136#else
     37// notdef DEBUG
     38#define DBGCALLCONV     NEAR
     39
    3240#define dprintf(a)  //
    3341#define dprintf1(a) //
     
    3543#define dprintf3(a) //
    3644#define dprintf4(a) //
    37 #endif
    3845
    39 #ifdef DEBUG
    40 #define DebugInt3() //_asm int 3 DAZ temporarily taken out of debug build to prevent traps
    41 #else
    4246#define DebugInt3() //_asm int 3
    43 #endif
    4447
    45 #ifdef DEBUG
    46 #define DBGCALLCONV     FAR
    47 #else
    48 #define DBGCALLCONV     NEAR
    4948#endif
    5049
Note: See TracChangeset for help on using the changeset viewer.