VirtualBox

Changeset 55874 in vbox


Ignore:
Timestamp:
May 15, 2015 10:35:41 AM (9 years ago)
Author:
vboxsync
Message:

Devices/Input: re-add release flow logging to PS/2 input devices.

Location:
trunk/src/VBox/Devices/Input
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Input/PS2K.cpp

    r55401 r55874  
    492492    if (pQ->cUsed >= pQ->cSize)
    493493    {
    494         LogFlowFunc(("queue %p full (%d entries)\n", pQ, pQ->cUsed));
     494        LogRelFlowFunc(("queue %p full (%d entries)\n", pQ, pQ->cUsed));
    495495        return;
    496496    }
     
    500500        pQ->wpos = 0;   /* Roll over. */
    501501    ++pQ->cUsed;
    502     LogFlowFunc(("inserted 0x%02X into queue %p\n", val, pQ));
     502    LogRelFlowFunc(("inserted 0x%02X into queue %p\n", val, pQ));
    503503}
    504504
     
    11641164    int         rc;
    11651165
    1166     LogFlowFunc(("key code %08X\n", u32UsageCode));
     1166    LogRelFlowFunc(("key code %08X\n", u32UsageCode));
    11671167
    11681168    rc = PDMCritSectEnter(pThis->pCritSectR3, VERR_SEM_BUSY);
  • trunk/src/VBox/Devices/Input/PS2M.cpp

    r55164 r55874  
    328328    if (pQ->cUsed >= pQ->cSize)
    329329    {
    330         LogFlowFunc(("queue %p full (%d entries)\n", pQ, pQ->cUsed));
     330        LogRelFlowFunc(("queue %p full (%d entries)\n", pQ, pQ->cUsed));
    331331        return;
    332332    }
     
    336336        pQ->wpos = 0;   /* Roll over. */
    337337    ++pQ->cUsed;
    338     LogFlowFunc(("inserted 0x%02X into queue %p\n", val, pQ));
     338    LogRelFlowFunc(("inserted 0x%02X into queue %p\n", val, pQ));
    339339}
    340340
     
    996996    AssertReleaseRC(rc);
    997997
    998     LogFlowFunc(("dX=%d dY=%d dZ=%d dW=%d buttons=%02X\n", dx, dy, dz, dw, fButtons));
     998    LogRelFlowFunc(("dX=%d dY=%d dZ=%d dW=%d buttons=%02X\n", dx, dy, dz, dw, fButtons));
    999999    /* NB: The PS/2 Y axis direction is inverted relative to ours. */
    10001000    ps2mPutEventWorker(pThis, dx, -dy, dz, dw, fButtons);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette