Changeset 48057 in vbox
- Timestamp:
- Aug 26, 2013 10:58:58 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/load.c
r47161 r48057 1149 1149 #define VBOXVEH_F_EXIT 0x00000004 1150 1150 1151 static DWORD g_VBoxVehFlags = VBOXVEH_F_DUMP1151 static DWORD g_VBoxVehFlags = 0 1152 1152 #ifdef DEBUG_misha 1153 1153 | VBOXVEH_F_BREAK 1154 #else 1155 | VBOXVEH_F_DUMP 1154 1156 #endif 1155 1157 ; … … 1284 1286 { 1285 1287 BOOL fBreak = TRUE; 1288 #ifndef DEBUG_misha 1286 1289 if (pExceptionRecord->ExceptionCode == EXCEPTION_BREAKPOINT) 1287 1290 { … … 1294 1297 fBreak = FALSE; /* <- the function has failed, don't break for sanity */ 1295 1298 } 1299 #endif 1296 1300 1297 1301 if (fBreak) … … 1351 1355 #ifdef VDBG_VEHANDLER 1352 1356 g_VBoxVehEnable = !!crGetenv("CR_DBG_VEH_ENABLE"); 1357 # ifdef DEBUG_misha 1358 g_VBoxVehEnable = 1; 1359 # endif 1353 1360 if (g_VBoxVehEnable) 1354 1361 vboxVDbgVEHandlerRegister();
Note:
See TracChangeset
for help on using the changeset viewer.