Changeset 13306 in vbox for trunk/src/VBox/Runtime/generic
- Timestamp:
- Oct 15, 2008 9:17:04 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37979
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/RTAssertShouldPanic-generic.cpp
r13298 r13306 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT - Assertions, generic RTAssert DoBreakpoint.3 * IPRT - Assertions, generic RTAssertShouldPanic. 4 4 */ 5 5 … … 29 29 */ 30 30 31 32 31 /******************************************************************************* 33 32 * Header Files * … … 36 35 37 36 38 /** 39 * Overridable function that decides whether assertions executes the breakpoint or not. 40 * 41 * The generic implementation will return true. 42 * 43 * @returns true if the breakpoint should be hit, false if it should be ignored. 44 * @remark The RTDECL() makes this a bit difficult to override on windows. Sorry. 45 */ 46 RTDECL(bool) RTAssertDoBreakpoint(void) 37 RTDECL(bool) RTAssertShouldPanic(void) 47 38 { 48 39 return true;
Note:
See TracChangeset
for help on using the changeset viewer.