Changeset 64
- Timestamp:
- Jan 15, 2016, 12:16:56 AM (9 years ago)
- 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 75 75 extern uint16_t g_cchInitText; 76 76 extern uint16_t g_cchInitTextMax; 77 /* Defined in RTLogWriteDebugger-r0drv-os2.cpp */ 78 extern int (*g_pfnR0Printf)(const char *pszFormat, ...); 79 /* KEE */ 80 extern uint32_t KernKEEVersion; 77 81 RT_C_DECLS_END 78 82 … … 99 103 { 100 104 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; 101 111 102 112 /* … … 503 513 } 504 514 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 */ 523 static 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 } 505 529 506 530 SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...) 507 531 { 532 PFNRTSTROUTPUT pfnLogFunc = VBoxDrvLogOutput; 508 533 va_list va; 509 534 … … 513 538 va_end(va); 514 539 #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; 515 547 516 548 va_start(va, pszFormat); 517 int cch = RTLogFormatV( VBoxDrvLogOutput, NULL, pszFormat, va);549 int cch = RTLogFormatV(pfnLogFunc, NULL, pszFormat, va); 518 550 va_end(va); 519 551 … … 526 558 return 0; 527 559 } 528 -
TabularUnified trunk/src/VBox/Runtime/Makefile.kmk ¶
r63 r64 2190 2190 common/misc/thread.cpp \ 2191 2191 generic/RTAssertShouldPanic-generic.cpp \ 2192 generic/RTLogWriteDebugger-generic.cpp \2193 2192 generic/RTLogWriteStdOut-stub-generic.cpp \ 2194 2193 generic/RTMpCpuId-generic.cpp \ … … 2223 2222 r0drv/os2/os2imports.imp \ 2224 2223 r0drv/os2/process-r0drv-os2.cpp \ 2224 r0drv/os2/RTLogWriteDebugger-r0drv-os2.c \ 2225 2225 r0drv/os2/RTR0AssertPanicSystem-r0drv-os2.asm \ 2226 2226 r0drv/os2/RTR0Os2DHQueryDOSVar.asm \ -
TabularUnified trunk/src/VBox/Runtime/r0drv/os2/os2imports.imp ¶
r3 r64 16 16 ; KEE 17 17 ; 18 KernPrintf KEE 3 ? 18 19 KernAllocSpinLock KEE 10 ? 19 20 KernFreeSpinLock KEE 11 ?
Note:
See TracChangeset
for help on using the changeset viewer.