Custom Query (16363 matches)
Results (736 - 738 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #17769 | invalid | tsStartNs sets bug | ||
| Description |
pPeriod->Dbg.tsStartNs sets inside hdaR3StreamPeriodBegin only when LOG_ENABLED defined but uses in hdaR3StreamPeriodEnd without LOG_ENABLED define. int hdaR3StreamPeriodBegin(PHDASTREAMPERIOD pPeriod, uint64_t u64WalClk)
{
Assert(!(pPeriod->fStatus & HDASTREAMPERIOD_FLAG_ACTIVE)); /* No nested calls. */
pPeriod->fStatus |= HDASTREAMPERIOD_FLAG_ACTIVE;
pPeriod->u64StartWalClk = u64WalClk;
pPeriod->u64ElapsedWalClk = 0;
pPeriod->framesTransferred = 0;
pPeriod->cIntPending = 0;
# ifdef LOG_ENABLED
pPeriod->Dbg.tsStartNs = RTTimeNanoTS();
# endif
Log3Func(("[SD%RU8] Starting @ %RU64 (%RU64 long)\n", pPeriod->u8SD, pPeriod->u64StartWalClk, pPeriod->u64DurationWalClk));
return VINF_SUCCESS;
}
/**
* Ends a formerly begun period life span.
*
* @param pPeriod Stream period to end life span for.
*/
void hdaR3StreamPeriodEnd(PHDASTREAMPERIOD pPeriod)
{
Log3Func(("[SD%RU8] Took %zuus\n", pPeriod->u8SD, (RTTimeNanoTS() - pPeriod->Dbg.tsStartNs) / 1000));
...
}
|
|||
| #1688 | invalid | trunk doesn't compile on 64bit. | ||
| Description |
Using the following to build.. VBOX_SVN_REV=7749 kmk System:
Checkout:
I get the attached errors.. |
|||
| #1845 | fixed | truncated directory listing in shared folders | ||
| Description |
In some cases, listing a directory through a shared folder doesnt return all files.
Attached is a directory content (with empty files and subdirs.) where the pb occurs. Tested with host=XP-SP3 guest=XP-SP3,W2K-SP4 |
|||

