Changeset 92057 in vbox for trunk/src/VBox/ValidationKit/utils
- Timestamp:
- Oct 26, 2021 7:02:32 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147868
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkatCommon.cpp
r92047 r92057 664 664 RTMSINTERVAL const msSleep = RT_MIN(RT_MAX(1, pStream->Cfg.Device.cMsSchedulingHint), 256); 665 665 666 if ( !nsLastMsgCantWrite 667 || nsNow - nsLastMsgCantWrite > RT_NS_10SEC) /* Don't spam the output too much. */ 666 if ( g_uVerbosity >= 3 667 && ( !nsLastMsgCantWrite 668 || (nsNow - nsLastMsgCantWrite) > RT_NS_10SEC) /* Don't spam the output too much. */ 668 669 { 669 670 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Waiting %RU32ms for stream to be writable again (last write %RU64ns ago) ...\n", … … 813 814 814 815 if ( g_uVerbosity >= 3 815 && (!nsLastMsgCantRead || nsNow - nsLastMsgCantRead > RT_NS_10SEC)) /* Don't spam the output too much. */ 816 && ( !nsLastMsgCantRead 817 || (nsNow - nsLastMsgCantRead) > RT_NS_10SEC)) /* Don't spam the output too much. */ 816 818 { 817 819 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Waiting %RU32ms for stream to be readable again ...\n", msSleep);
Note:
See TracChangeset
for help on using the changeset viewer.