VirtualBox

Changeset 20152 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
May 29, 2009 1:22:06 PM (16 years ago)
Author:
vboxsync
Message:

Added DBGFR3InfoLogRel and DBGFR3InfoStdErr.

File:
1 edited

Legend:

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

    r19300 r20152  
    2626#define LOG_GROUP LOG_GROUP_DBGF_INFO
    2727#include <VBox/dbgf.h>
     28
    2829#include <VBox/mm.h>
    2930#include "DBGFInternal.h"
    3031#include <VBox/vm.h>
    31 
     32#include <VBox/err.h>
    3233#include <VBox/log.h>
     34
     35#include <iprt/assert.h>
     36#include <iprt/ctype.h>
    3337#include <iprt/semaphore.h>
     38#include <iprt/stream.h>
     39#include <iprt/string.h>
    3440#include <iprt/thread.h>
    35 #include <iprt/assert.h>
    36 #include <iprt/string.h>
    37 #include <iprt/ctype.h>
    38 #include <VBox/err.h>
    3941
    4042
     
    4648static DECLCALLBACK(void) dbgfR3InfoLogRel_Printf(PCDBGFINFOHLP pHlp, const char *pszFormat, ...);
    4749static DECLCALLBACK(void) dbgfR3InfoLogRel_PrintfV(PCDBGFINFOHLP pHlp, const char *pszFormat, va_list args);
     50static DECLCALLBACK(void) dbgfR3InfoStdErr_Printf(PCDBGFINFOHLP pHlp, const char *pszFormat, ...);
     51static DECLCALLBACK(void) dbgfR3InfoStdErr_PrintfV(PCDBGFINFOHLP pHlp, const char *pszFormat, va_list args);
    4852static DECLCALLBACK(void) dbgfR3InfoHelp(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
    4953
     
    6670};
    6771
     72/** Standard error output. */
     73static const DBGFINFOHLP g_dbgfR3InfoStdErrHlp =
     74{
     75    dbgfR3InfoStdErr_Printf,
     76    dbgfR3InfoStdErr_PrintfV
     77};
     78
    6879
    6980/**
     
    159170{
    160171    RTLogRelPrintfV(pszFormat, args);
     172}
     173
     174
     175/** Standard error output.
     176 * @copydoc DBGFINFOHLP::pfnPrintf */
     177static DECLCALLBACK(void) dbgfR3InfoStdErr_Printf(PCDBGFINFOHLP pHlp, const char *pszFormat, ...)
     178{
     179    va_list args;
     180    va_start(args, pszFormat);
     181    RTStrmPrintfV(g_pStdErr, pszFormat, args);
     182    va_end(args);
     183}
     184
     185/** Standard error output.
     186 * @copydoc DBGFINFOHLP::pfnPrintfV */
     187static DECLCALLBACK(void) dbgfR3InfoStdErr_PrintfV(PCDBGFINFOHLP pHlp, const char *pszFormat, va_list args)
     188{
     189    RTStrmPrintfV(g_pStdErr, pszFormat, args);
    161190}
    162191
     
    761790
    762791/**
     792 * Wrapper for DBGFR3Info that outputs to the release log.
     793 *
     794 * @returns See DBGFR3Info.
     795 * @param   pVM                 The VM handle.
     796 * @param   pszName             See DBGFR3Info.
     797 * @param   pszArgs             See DBGFR3Info.
     798 */
     799VMMR3DECL(int) DBGFR3InfoLogRel(PVM pVM, const char *pszName, const char *pszArgs)
     800{
     801    return DBGFR3Info(pVM, pszName, pszArgs, &g_dbgfR3InfoLogRelHlp);
     802}
     803
     804
     805/**
     806 * Wrapper for DBGFR3Info that outputs to standard error.
     807 *
     808 * @returns See DBGFR3Info.
     809 * @param   pVM                 The VM handle.
     810 * @param   pszName             See DBGFR3Info.
     811 * @param   pszArgs             See DBGFR3Info.
     812 */
     813VMMR3DECL(int) DBGFR3InfoStdErr(PVM pVM, const char *pszName, const char *pszArgs)
     814{
     815    return DBGFR3Info(pVM, pszName, pszArgs, &g_dbgfR3InfoStdErrHlp);
     816}
     817
     818
     819/**
    763820 * Enumerate all the register info handlers.
    764821 *
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