Changeset 71608 in vbox
- Timestamp:
- Apr 1, 2018 11:40:19 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121635
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/AssertGuest.h
r71606 r71608 591 591 #endif 592 592 593 /** @def ASSERT_GUEST_FAILED Stmt593 /** @def ASSERT_GUEST_FAILED_STMT 594 594 * An assertion failed, hit breakpoint and execute statement. 595 595 */ … … 747 747 #endif 748 748 749 /** @def ASSERT_GUEST_MSG_FAILED Return749 /** @def ASSERT_GUEST_MSG_FAILED_RETURN 750 750 * An assertion failed, hit breakpoint with message (VBOX_STRICT_GUEST mode only) and return. 751 751 * … … 889 889 } while (0) 890 890 891 /** @def ASSERT_GUEST_LOGREL Return891 /** @def ASSERT_GUEST_LOGREL_RETURN 892 892 * Assert that an expression is true, return \a a_rc if it isn't. 893 893 * Strict builds will hit a breakpoint, non-strict will only do LogRel. … … 1368 1368 #define ASSERT_GUEST_RC_STMT_RETURN_VOID(rc, stmt) ASSERT_GUEST_MSG_RC_STMT_RETURN_VOID(rc, ("%Rra\n", (rc)), stmt) 1369 1369 1370 /** @def ASSERT_GUEST_RC Break1370 /** @def ASSERT_GUEST_RC_BREAK 1371 1371 * Asserts a iprt status code successful, bitch (RT_STRICT mode only) and break if it isn't. 1372 1372 * … … 1397 1397 do { ASSERT_GUEST_MSG(RT_SUCCESS_NP(rc), msg); NOREF(rc); } while (0) 1398 1398 1399 /** @def ASSERT_GUEST_MSG_RC Stmt1399 /** @def ASSERT_GUEST_MSG_RC_STMT 1400 1400 * Asserts a iprt status code successful, bitch (RT_STRICT mode only) and 1401 1401 * execute @a stmt if it isn't. … … 1517 1517 #define ASSERT_GUEST_RC_SUCCESS_BREAK(rc) ASSERT_GUEST_MSG_BREAK((rc) == VINF_SUCCESS, ("%Rra\n", (rc))) 1518 1518 1519 /** @def ASSERT_GUEST_RC_SUCCESS BreakStmt1519 /** @def ASSERT_GUEST_RC_SUCCESS_STMT_BREAK 1520 1520 * Asserts that an iprt status code equals VINF_SUCCESS, bitch (RT_STRICT mode only) and break if it isn't. 1521 1521 * … … 1594 1594 #define ASSERT_GUEST_LOGREL_RC_STMT_RETURN_VOID(rc, stmt) ASSERT_GUEST_LOGREL_MSG_RC_STMT_RETURN_VOID(rc, ("%Rra\n", (rc)), stmt) 1595 1595 1596 /** @def ASSERT_GUEST_LOGREL_RC Break1596 /** @def ASSERT_GUEST_LOGREL_RC_BREAK 1597 1597 * Asserts a iprt status code successful, bitch (RT_STRICT mode only) and break if it isn't. 1598 1598 * … … 1623 1623 do { ASSERT_GUEST_LOGREL_MSG(RT_SUCCESS_NP(rc), msg); NOREF(rc); } while (0) 1624 1624 1625 /** @def ASSERT_GUEST_LOGREL_MSG_RC Stmt1625 /** @def ASSERT_GUEST_LOGREL_MSG_RC_STMT 1626 1626 * Asserts a iprt status code successful, bitch (RT_STRICT mode only) and 1627 1627 * execute @a stmt if it isn't. … … 1743 1743 #define ASSERT_GUEST_LOGREL_RC_SUCCESS_BREAK(rc) ASSERT_GUEST_LOGREL_MSG_BREAK((rc) == VINF_SUCCESS, ("%Rra\n", (rc))) 1744 1744 1745 /** @def ASSERT_GUEST_LOGREL_RC_SUCCESS BreakStmt1745 /** @def ASSERT_GUEST_LOGREL_RC_SUCCESS_STMT_BREAK 1746 1746 * Asserts that an iprt status code equals VINF_SUCCESS, bitch (RT_STRICT mode only) and break if it isn't. 1747 1747 *
Note:
See TracChangeset
for help on using the changeset viewer.