Changeset 1758 in vbox
- Timestamp:
- Mar 28, 2007 10:10:33 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19926
- Location:
- trunk/src/VBox/Devices/Serial
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvChar.cpp
r1754 r1758 180 180 else 181 181 { 182 Log (("Write failed with %Vrc; skipping\n", rc));182 LogFlow(("Write failed with %Vrc; skipping\n", rc)); 183 183 break; 184 184 } -
trunk/src/VBox/Devices/Serial/DrvNamedPipe.cpp
r1756 r1758 147 147 { 148 148 Log(("drvNamedPipeRead: RTFileRead returned %Vrc\n", rc)); 149 if ( rc == VERR_EOF 150 || rc == VERR_BROKEN_PIPE) 149 if ( !pData->fShutdown 150 && ( rc == VERR_EOF 151 || rc == VERR_BROKEN_PIPE 152 ) 153 ) 154 151 155 { 152 156 RTFILE tmp = pData->NamedPipe; … … 539 543 PDRVNAMEDPIPE pData = PDMINS2DATA(pDrvIns, PDRVNAMEDPIPE); 540 544 LogFlow(("%s: %s\n", __FUNCTION__, pData->pszLocation)); 545 546 pData->fShutdown = true; 541 547 542 548 #ifdef __WIN__
Note:
See TracChangeset
for help on using the changeset viewer.