Changeset 82856 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Jan 25, 2020 1:16:15 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135831
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/assert-r0drv-darwin.cpp
r77120 r82856 44 44 { 45 45 IPRT_DARWIN_SAVE_EFL_AC(); 46 kprintf("\r\n!!Assertion Failed!!\r\n" 47 "Expression: %s\r\n" 48 "Location : %s(%u) %s\r\n", 49 pszExpr, pszFile, uLine, pszFunction); 46 50 printf("\r\n!!Assertion Failed!!\r\n" 47 51 "Expression: %s\r\n" … … 59 63 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va); 60 64 szMsg[sizeof(szMsg) - 1] = '\0'; 65 kprintf("%s", szMsg); 61 66 printf("%s", szMsg); 62 67 … … 68 73 RTR0DECL(void) RTR0AssertPanicSystem(void) 69 74 { 70 ASMBreakpoint();// temp71 75 panic("%s%s", g_szRTAssertMsg1, g_szRTAssertMsg2); 72 76 }
Note:
See TracChangeset
for help on using the changeset viewer.