Changeset 28697 in vbox
- Timestamp:
- Apr 24, 2010 10:35:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/assert-r0drv-linux.c
r25536 r28697 47 47 void rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) 48 48 { 49 printk("\r\n!!Assertion Failed!!\r\n" 49 printk(KERN_EMERG 50 "\r\n!!Assertion Failed!!\r\n" 50 51 "Expression: %s\r\n" 51 52 "Location : %s(%d) %s\r\n", … … 60 61 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va); 61 62 szMsg[sizeof(szMsg) - 1] = '\0'; 62 printk( "%s", szMsg);63 printk(KERN_EMERG "%s", szMsg); 63 64 64 65 NOREF(fInitial);
Note:
See TracChangeset
for help on using the changeset viewer.