VirtualBox

Changeset 81385 in vbox for trunk/src/VBox/Devices/Network


Ignore:
Timestamp:
Oct 20, 2019 12:09:26 AM (5 years ago)
Author:
vboxsync
Message:

DevE1000: Converted timers from pointers to handles. [build fix] bugref:9218

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/DevE1000.cpp

    r81384 r81385  
    13101310
    13111311/* Forward declarations ******************************************************/
    1312 static int e1kXmitPending(PE1KSTATE pThis, bool fOnWorkerThread);
     1312static int e1kXmitPending(PPDMDEVINS pDevIns, PE1KSTATE pThis, bool fOnWorkerThread);
    13131313
    13141314/**
     
    33653365        pThis->uStatMaxTxDelay = u64Elapsed;
    33663366#  endif
    3367     int rc = e1kXmitPending(pThis, false /*fOnWorkerThread*/);
     3367    int rc = e1kXmitPending(pDevIns, pThis, false /*fOnWorkerThread*/);
    33683368    AssertMsg(RT_SUCCESS(rc) || rc == VERR_TRY_AGAIN, ("%Rrc\n", rc));
    33693369}
     
    52895289 * @returns VBox status code.  VERR_TRY_AGAIN is returned if we're busy.
    52905290 *
    5291  * @param   pThis              The E1000 state.
     5291 * @param   pDevIns             The device instance.
     5292 * @param   pThis               The E1000 state.
    52925293 * @param   fOnWorkerThread     Whether we're on a worker thread or on an EMT.
    52935294 */
    5294 static int e1kXmitPending(PE1KSTATE pThis, bool fOnWorkerThread)
     5295static int e1kXmitPending(PPDMDEVINS pDevIns, PE1KSTATE pThis, bool fOnWorkerThread)
    52955296{
    52965297    int rc = VINF_SUCCESS;
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