Changeset 90445 in vbox for trunk/src/VBox/Devices/Parallel/DevParallel.cpp
- Timestamp:
- Jul 30, 2021 10:18:24 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Parallel/DevParallel.cpp
r90332 r90445 304 304 PPARALLELPORT pThis = PDMDEVINS_2_DATA(pDevIns, PPARALLELPORT); 305 305 306 PDMDevHlpCritSectEnter(pDevIns, pDevIns->pCritSectRoR3, VINF_SUCCESS); 306 int rc = PDMDevHlpCritSectEnter(pDevIns, pDevIns->pCritSectRoR3, VINF_SUCCESS); 307 AssertRCReturn(rc, rc); 308 307 309 parallelR3IrqSet(pDevIns, pThis); 310 308 311 PDMDevHlpCritSectLeave(pDevIns, pDevIns->pCritSectRoR3); 309 312
Note:
See TracChangeset
for help on using the changeset viewer.