Changeset 91034 in vbox
- Timestamp:
- Aug 31, 2021 3:51:14 PM (3 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
-
Devices/Audio/AudioTestService.cpp (modified) (3 diffs)
-
Devices/Audio/AudioTestServiceTcp.cpp (modified) (5 diffs)
-
ValidationKit/utils/audio/vkat.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTestService.cpp
r91030 r91034 796 796 static int atsClientReqProcess(PATSSERVER pThis, PATSCLIENTINST pInst, bool *pfDisconnect) 797 797 { 798 LogRelFlowFuncEnter(); 799 798 800 /* 799 801 * Read client command packet and process it. … … 834 836 RTMemFree(pPktHdr); 835 837 838 LogRelFlowFuncLeaveRC(rc); 836 839 return rc; 837 840 } … … 883 886 uint32_t uId; 884 887 rc = RTPoll(pThis->hPollSet, RT_INDEFINITE_WAIT, &fEvts, &uId); 888 LogRelFlowFunc(("RTPoll(...) returned fEvts=#%x, uId=%RU32 -> %Rrc\n", fEvts, uId, rc)); 885 889 if (RT_SUCCESS(rc)) 886 890 { -
trunk/src/VBox/Devices/Audio/AudioTestServiceTcp.cpp
r91024 r91034 516 516 Log3Func(("%RU32 -> %zu\n", pPktHdr->cb, cbToSend)); 517 517 518 LogRelFlowFunc((" %RTsock\n", pClient->hTcpClient));518 LogRelFlowFunc(("pClient=%RTsock\n", pClient->hTcpClient)); 519 519 LogRelFlowFunc(("Header:\n" 520 520 "%.*Rhxd\n", RT_MIN(sizeof(ATSPKTHDR), cbToSend), pPktHdr)); … … 534 534 } 535 535 536 LogRelFlowFunc(("pClient=%RTsock, cbSent=%zu -> %Rrc\n", 537 pClient->hTcpClient, cbToSend, rc)); 538 536 539 return rc; 537 540 } … … 545 548 *ppPktHdr = NULL; 546 549 547 LogRelFlowFunc(("%RTsock\n", pClient->hTcpClient)); 550 LogRelFlowFunc(("pClient=%RTsock (cbTcpStashed=%zu, cbTcpStashedAlloced=%zu)\n", 551 pClient->hTcpClient, pClient->cbTcpStashed, pClient->cbTcpStashedAlloced)); 548 552 549 553 /* … … 572 576 cbDataAlloced = RT_ALIGN_Z(64, ATSPKT_ALIGNMENT); 573 577 pbData = (uint8_t *)RTMemAlloc(cbDataAlloced); 574 if (!pbData) 575 return VERR_NO_MEMORY; 578 AssertPtrReturn(pbData, VERR_NO_MEMORY); 576 579 } 577 580 … … 674 677 } 675 678 679 LogRelFlowFunc(("pClient=%RTsock, cbData=%zu -> %Rrc\n", 680 pClient->hTcpClient, cbData, rc)); 676 681 return rc; 677 682 } -
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r91004 r91034 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #define LOG_GROUP LOG_GROUP_AUDIO_TEST 32 31 33 #include <iprt/buildconfig.h> 32 34 #include <iprt/ctype.h> … … 1362 1364 static const char * const g_apszLogGroups[] = VBOX_LOGGROUP_NAMES; 1363 1365 rc = RTLogCreate(&g_pRelLogger, fFlags, "all.e.l", "VKAT_RELEASE_LOG", 1364 RT_ELEMENTS(g_apszLogGroups), g_apszLogGroups, RTLOGDEST_STD ERR, NULL /*"vkat-release.log"*/);1366 RT_ELEMENTS(g_apszLogGroups), g_apszLogGroups, RTLOGDEST_STDOUT, NULL /*"vkat-release.log"*/); 1365 1367 if (RT_SUCCESS(rc)) 1366 1368 {
Note:
See TracChangeset
for help on using the changeset viewer.

