Changeset 99776 in vbox
- Timestamp:
- May 12, 2023 12:26:10 PM (17 months ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Runtime/testcase/tstRTR0Common.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTR0Common.h
r99775 r99776 211 211 * Report an error. 212 212 */ 213 voidRTR0TestR0Error(const char *pszFormat, ...)213 DECLINLINE(void) RTR0TestR0Error(const char *pszFormat, ...) 214 214 { 215 215 size_t off = RTStrNLen(g_szErr, sizeof(g_szErr) - 1); … … 252 252 * Informational message. 253 253 */ 254 static voidRTR0TestR0Info(const char *pszFormat, ...)254 DECLINLINE(void) RTR0TestR0Info(const char *pszFormat, ...) 255 255 { 256 256 size_t off = RTStrNLen(g_szErr, sizeof(g_szErr) - 1); … … 279 279 * Report an error. 280 280 */ 281 static voidRTR0TestR0Skip(const char *pszFormat, ...)281 DECLINLINE(void) RTR0TestR0Skip(const char *pszFormat, ...) 282 282 { 283 283 size_t off = RTStrNLen(g_szErr, sizeof(g_szErr) - 1); … … 309 309 * @returns true if there are errors, false if none. 310 310 */ 311 static boolRTR0TestR0HaveErrors(void)311 DECLINLINE(bool) RTR0TestR0HaveErrors(void) 312 312 { 313 313 return ASMAtomicUoReadU32(&g_cErrors) > 0;
Note:
See TracChangeset
for help on using the changeset viewer.

