VirtualBox

Changeset 1221 in vbox


Ignore:
Timestamp:
Mar 5, 2007 3:26:12 PM (18 years ago)
Author:
vboxsync
Message:

AssertMsg2 override added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/VMMR0.cpp

    r1057 r1221  
    740740}
    741741
    742 #endif
     742DECLEXPORT(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.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette