Changeset 10504 for trunk/include/dbglog.h
- Timestamp:
- Mar 10, 2004, 12:58:19 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/dbglog.h
r10435 r10504 103 103 #ifdef DEBUG 104 104 #ifdef __cplusplus 105 void inline BreakPoint(char *szFile, char *szFunction) 105 106 #define DebugInt3() BreakPoint(__FILE__, __FUNCTION__, __LINE__) 107 108 void inline BreakPoint(char *szFile, char *szFunction, int iLine) 106 109 { 107 dprintf(("BREAKPOINT %s %s", szFile, szFunction));108 _interrupt(3);110 dprintf(("BREAKPOINT %s %s %d", szFile, szFunction, iLine)); 111 _interrupt(3); 109 112 } 110 #define DebugInt3() BreakPoint(__FILE__, __FUNCTION__)111 113 112 114 #else
Note:
See TracChangeset
for help on using the changeset viewer.