Changeset 81385 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Oct 20, 2019 12:09:26 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r81384 r81385 1310 1310 1311 1311 /* Forward declarations ******************************************************/ 1312 static int e1kXmitPending(P E1KSTATE pThis, bool fOnWorkerThread);1312 static int e1kXmitPending(PPDMDEVINS pDevIns, PE1KSTATE pThis, bool fOnWorkerThread); 1313 1313 1314 1314 /** … … 3365 3365 pThis->uStatMaxTxDelay = u64Elapsed; 3366 3366 # endif 3367 int rc = e1kXmitPending(p This, false /*fOnWorkerThread*/);3367 int rc = e1kXmitPending(pDevIns, pThis, false /*fOnWorkerThread*/); 3368 3368 AssertMsg(RT_SUCCESS(rc) || rc == VERR_TRY_AGAIN, ("%Rrc\n", rc)); 3369 3369 } … … 5289 5289 * @returns VBox status code. VERR_TRY_AGAIN is returned if we're busy. 5290 5290 * 5291 * @param pThis The E1000 state. 5291 * @param pDevIns The device instance. 5292 * @param pThis The E1000 state. 5292 5293 * @param fOnWorkerThread Whether we're on a worker thread or on an EMT. 5293 5294 */ 5294 static int e1kXmitPending(P E1KSTATE pThis, bool fOnWorkerThread)5295 static int e1kXmitPending(PPDMDEVINS pDevIns, PE1KSTATE pThis, bool fOnWorkerThread) 5295 5296 { 5296 5297 int rc = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.