Changeset 57228 in vbox for trunk/src/VBox/Runtime/r0drv/darwin/assert-r0drv-darwin.cpp
- Timestamp:
- Aug 6, 2015 11:27:10 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/assert-r0drv-darwin.cpp
r56290 r57228 43 43 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) 44 44 { 45 IPRT_DARWIN_SAVE_EFL_AC(); 45 46 printf("\r\n!!Assertion Failed!!\r\n" 46 47 "Expression: %s\r\n" 47 48 "Location : %s(%u) %s\r\n", 48 49 pszExpr, pszFile, uLine, pszFunction); 50 IPRT_DARWIN_RESTORE_EFL_AC(); 49 51 } 50 52 … … 52 54 DECLHIDDEN(void) rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) 53 55 { 56 IPRT_DARWIN_SAVE_EFL_AC(); 54 57 char szMsg[256]; 55 58 … … 59 62 60 63 NOREF(fInitial); 64 IPRT_DARWIN_RESTORE_EFL_AC(); 61 65 } 62 66
Note:
See TracChangeset
for help on using the changeset viewer.