Changeset 64


Ignore:
Timestamp:
Jan 15, 2016, 12:16:56 AM (9 years ago)
Author:
dmik
Message:

Runtime: Implement RTLogWriteDebugger on OS/2.

This commit also makes use of KernPrintf instead of the small internal buffer of VBoxDrv.sys
when it is available.

Author: @valerius.

Location:
trunk/src/VBox
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/VBox/HostDrivers/Support/os2/SUPDrv-os2.cpp

    r25 r64  
    7575extern uint16_t             g_cchInitText;
    7676extern uint16_t             g_cchInitTextMax;
     77/* Defined in RTLogWriteDebugger-r0drv-os2.cpp */
     78extern int                  (*g_pfnR0Printf)(const char *pszFormat, ...);
     79/* KEE */
     80extern uint32_t             KernKEEVersion;
    7781RT_C_DECLS_END
    7882
     
    99103    {
    100104        Log(("VBoxDrvInit: pszArgs=%s\n", pszArgs));
     105
     106        /*
     107         * Initialize the pointer to our logging function.
     108         */
     109        if (!g_pfnR0Printf)
     110            g_pfnR0Printf = SUPR0Printf;
    101111
    102112        /*
     
    503513}
    504514
     515/**
     516 * Callback for writing to the log buffer via KernPrinf.
     517 *
     518 * @returns number of bytes written.
     519 * @param   pvArg       Unused.
     520 * @param   pachChars   Pointer to an array of utf-8 characters.
     521 * @param   cbChars     Number of bytes in the character array pointed to by pachChars.
     522 */
     523static DECLCALLBACK(size_t) VBoxDrvLogOutput2(void *pvArg, const char *pachChars, size_t cbChars)
     524{
     525    /* RTLogWriteDebugger will write using KernPrintf when it's available */
     526    RTLogWriteDebugger(pachChars, cbChars);
     527    return cbChars;
     528}
    505529
    506530SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...)
    507531{
     532    PFNRTSTROUTPUT pfnLogFunc = VBoxDrvLogOutput;
    508533    va_list va;
    509534
     
    513538    va_end(va);
    514539#endif
     540    /*
     541     * NOTE: Only use RTLogWriteDebugger when KernPrintf is available as otherwise it
     542     * will call SUPR0Printf back creating an infinite recursion. We prefer KernPrinf
     543     * as it provides a much bigger buffer (7 MB) instead of VBoxDrv's own 16 KB.
     544     */
     545    if ((uint32_t)&KernKEEVersion > 0x00010002)
     546        pfnLogFunc = VBoxDrvLogOutput2;
    515547
    516548    va_start(va, pszFormat);
    517     int cch = RTLogFormatV(VBoxDrvLogOutput, NULL, pszFormat, va);
     549    int cch = RTLogFormatV(pfnLogFunc, NULL, pszFormat, va);
    518550    va_end(va);
    519551
     
    526558    return 0;
    527559}
    528 
  • TabularUnified trunk/src/VBox/Runtime/Makefile.kmk

    r63 r64  
    21902190        common/misc/thread.cpp \
    21912191        generic/RTAssertShouldPanic-generic.cpp \
    2192         generic/RTLogWriteDebugger-generic.cpp \
    21932192        generic/RTLogWriteStdOut-stub-generic.cpp \
    21942193        generic/RTMpCpuId-generic.cpp \
     
    22232222        r0drv/os2/os2imports.imp \
    22242223        r0drv/os2/process-r0drv-os2.cpp \
     2224        r0drv/os2/RTLogWriteDebugger-r0drv-os2.c \
    22252225        r0drv/os2/RTR0AssertPanicSystem-r0drv-os2.asm \
    22262226        r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
  • TabularUnified trunk/src/VBox/Runtime/r0drv/os2/os2imports.imp

    r3 r64  
    1616; KEE
    1717;
     18KernPrintf              KEE       3 ?
    1819KernAllocSpinLock       KEE       10 ?
    1920KernFreeSpinLock        KEE       11 ?
Note: See TracChangeset for help on using the changeset viewer.