Changeset 25893 in vbox for trunk/src/VBox/Devices/Serial
- Timestamp:
- Jan 18, 2010 2:08:39 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56705
- Location:
- trunk/src/VBox/Devices/Serial
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvChar.cpp
r23745 r25893 304 304 /** 305 305 * Construct a char driver instance. 306 * 306 * 307 307 * @copydoc FNPDMDRVCONSTRUCT 308 308 */ … … 343 343 return PDMDrvHlpVMSetError(pDrvIns, VERR_PDM_MISSING_INTERFACE_BELOW, RT_SRC_POS, N_("Char#%d has no stream interface below"), pDrvIns->iInstance); 344 344 345 /* 345 /* 346 346 * Don't start the receive thread if the driver doesn't support reading 347 347 */ … … 414 414 /* szDriverName */ 415 415 "Char", 416 /* szRCMod */ 417 "", 418 /* szR0Mod */ 419 "", 416 420 /* pszDescription */ 417 421 "Generic char driver.", … … 428 432 /* pfnDestruct */ 429 433 drvCharDestruct, 434 /* pfnRelocate */ 435 NULL, 430 436 /* pfnIOCtl */ 431 437 NULL, … … 441 447 NULL, 442 448 /* pfnDetach */ 443 NULL, 449 NULL, 444 450 /* pfnPowerOff */ 445 NULL, 451 NULL, 446 452 /* pfnSoftReset */ 447 453 NULL, -
trunk/src/VBox/Devices/Serial/DrvHostSerial.cpp
r25823 r25893 1468 1468 /* szDriverName */ 1469 1469 "Host Serial", 1470 /* pszDescription */ 1470 /* szRCMod */ 1471 "", 1472 /* szR0Mod */ 1473 "", 1474 /* pszDescription */ 1471 1475 "Host serial driver.", 1472 1476 /* fFlags */ … … 1482 1486 /* pfnDestruct */ 1483 1487 drvHostSerialDestruct, 1488 /* pfnRelocate */ 1489 NULL, 1484 1490 /* pfnIOCtl */ 1485 1491 NULL, -
trunk/src/VBox/Devices/Serial/DrvNamedPipe.cpp
r22277 r25893 617 617 /* szDriverName */ 618 618 "NamedPipe", 619 /* szRCMod */ 620 "", 621 /* szR0Mod */ 622 "", 619 623 /* pszDescription */ 620 624 "Named Pipe stream driver.", … … 631 635 /* pfnDestruct */ 632 636 drvNamedPipeDestruct, 637 /* pfnRelocate */ 638 NULL, 633 639 /* pfnIOCtl */ 634 640 NULL, -
trunk/src/VBox/Devices/Serial/DrvRawFile.cpp
r24382 r25893 219 219 /* szDriverName */ 220 220 "RawFile", 221 /* szRCMod */ 222 "", 223 /* szR0Mod */ 224 "", 221 225 /* pszDescription */ 222 226 "RawFile stream driver.", … … 233 237 /* pfnDestruct */ 234 238 drvRawFileDestruct, 239 /* pfnRelocate */ 240 NULL, 235 241 /* pfnIOCtl */ 236 242 NULL,
Note:
See TracChangeset
for help on using the changeset viewer.