Changeset 1221 in vbox
- Timestamp:
- Mar 5, 2007 3:26:12 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r1057 r1221 740 740 } 741 741 742 #endif 742 DECLEXPORT(void) RTCALL AssertMsg2(const char *pszFormat, ...) 743 { 744 PRTLOGGER pLog = RTLogRelDefaultInstance(); 745 if (pLog) 746 { 747 va_start(args, pszFormat); 748 RTLogRelPrintfV(pszFormat, args); 749 va_end(args); 750 RTLogFlush(pLog); 751 } 752 } 753 754 #endif
Note:
See TracChangeset
for help on using the changeset viewer.