Changeset 55624 in vbox for trunk/src/VBox/GuestHost/OpenGL/util/error.c
- Timestamp:
- May 3, 2015 3:42:51 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/error.c
r55574 r55624 97 97 va_end(va); 98 98 99 #ifdef IN_GUEST 100 /* Give things a chance to close down. */ 99 #ifdef DEBUG 100 /* Let's interrupt App execution only on debug builds and return 101 * bad status to upper level on release ones. */ 102 # ifdef IN_GUEST 103 /* Trigger debugger's breakpoint handler. */ 101 104 ASMBreakpoint(); 102 # else105 # else 103 106 /* Dump core or activate the debugger in debug builds. */ 104 107 AssertFailed(); 105 #endif 108 # endif 109 #endif /* DEBUG */ 106 110 } 107 111
Note:
See TracChangeset
for help on using the changeset viewer.