Changeset 23973 in vbox for trunk/src/VBox/Devices/Parallel
- Timestamp:
- Oct 22, 2009 12:34:22 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53801
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Parallel/DrvHostParallel.cpp
r22277 r23973 260 260 /** 261 261 * Construct a host parallel driver instance. 262 * 262 * 263 263 * @copydoc FNPDMDRVCONSTRUCT 264 264 */ … … 303 303 * Open the device 304 304 */ 305 rc = RTFileOpen(&pThis->FileDevice, pThis->pszDevicePath, RTFILE_O_ OPEN | RTFILE_O_READWRITE);305 rc = RTFileOpen(&pThis->FileDevice, pThis->pszDevicePath, RTFILE_O_READWRITE | RTFILE_O_OPEN | RTFILE_O_DENY_NONE); 306 306 if (RT_FAILURE(rc)) 307 307 return PDMDrvHlpVMSetError(pDrvIns, rc, RT_SRC_POS, N_("Parallel#%d could not open '%s'"), … … 433 433 NULL, 434 434 /* pfnDetach */ 435 NULL, 435 NULL, 436 436 /* pfnPowerOff */ 437 NULL, 437 NULL, 438 438 /* pfnSoftReset */ 439 439 NULL,
Note:
See TracChangeset
for help on using the changeset viewer.