Changeset 25536 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Dec 21, 2009 11:06:08 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56209
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/assert-r0drv-darwin.cpp
r25528 r25536 54 54 55 55 56 void rtR0AssertNativeMsg2V( const char *pszFormat, va_list va)56 void rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) 57 57 { 58 58 char szMsg[256]; … … 61 61 szMsg[sizeof(szMsg) - 1] = '\0'; 62 62 printf("%s", szMsg); 63 64 NOREF(fInitial); 63 65 } 64 66 -
trunk/src/VBox/Runtime/r0drv/freebsd/assert-r0drv-freebsd.c
r25533 r25536 51 51 52 52 53 void rtR0AssertNativeMsg2V( const char *pszFormat, va_list va)53 void rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) 54 54 { 55 55 char szMsg[256]; … … 58 58 szMsg[sizeof(szMsg) - 1] = '\0'; 59 59 printf("%s", szMsg); 60 61 NOREF(fInitial); 60 62 } 61 63 -
trunk/src/VBox/Runtime/r0drv/linux/assert-r0drv-linux.c
r25530 r25536 54 54 55 55 56 void rtR0AssertNativeMsg2V( const char *pszFormat, va_list va)56 void rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) 57 57 { 58 58 char szMsg[256]; … … 61 61 szMsg[sizeof(szMsg) - 1] = '\0'; 62 62 printk("%s", szMsg); 63 64 NOREF(fInitial); 63 65 } 64 66 -
trunk/src/VBox/Runtime/r0drv/nt/assert-r0drv-nt.cpp
r25533 r25536 51 51 52 52 53 void rtR0AssertNativeMsg2V( const char *pszFormat, va_list va)53 void rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) 54 54 { 55 55 char szMsg[256]; … … 58 58 szMsg[sizeof(szMsg) - 1] = '\0'; 59 59 DbgPrint("%s", szMsg); 60 61 NOREF(fInitial); 60 62 } 61 63 -
trunk/src/VBox/Runtime/r0drv/os2/assert-r0drv-os2.cpp
r25533 r25536 75 75 76 76 77 void rtR0AssertNativeMsg2V( const char *pszFormat, va_list va)77 void rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) 78 78 { 79 79 #if defined(DEBUG_bird) … … 88 88 cch += RTStrFormatV(rtR0Os2AssertOutputCB, &pch, NULL, NULL, pszFormat, va); 89 89 g_cchRTAssertMsg = cch; 90 91 NOREF(fInitial); 90 92 } 91 93 -
trunk/src/VBox/Runtime/r0drv/solaris/assert-r0drv-solaris.c
r25531 r25536 54 54 55 55 56 void rtR0AssertNativeMsg2V( const char *pszFormat, va_list va)56 void rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) 57 57 { 58 58 char szMsg[256]; … … 61 61 szMsg[sizeof(szMsg) - 1] = '\0'; 62 62 uprintf("%s", szMsg); 63 64 NOREF(fInitial); 63 65 } 64 66
Note:
See TracChangeset
for help on using the changeset viewer.