Changeset 16217 in vbox
- Timestamp:
- Jan 26, 2009 10:03:46 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42007
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvHostSerial.cpp
r15836 r16217 758 758 if (RT_FAILURE(rc)) 759 759 { 760 LogRel(("HostSerial#%d: Read failed with %Rrc, terminating the worker thread.\n", pDrvIns->iInstance, rc));760 LogRel(("HostSerial#%d: (1) Read failed with %Rrc, terminating the worker thread.\n", pDrvIns->iInstance, rc)); 761 761 rcThread = rc; 762 762 break; … … 796 796 if (RT_FAILURE(rc)) 797 797 { 798 LogRel(("HostSerial#%d: Read failed with %Rrc, terminating the worker thread.\n", pDrvIns->iInstance, rc)); 798 /* don't terminate worker thread when data unavailable */ 799 if (rc == VERR_TRY_AGAIN) 800 continue; 801 802 LogRel(("HostSerial#%d: (2) Read failed with %Rrc, terminating the worker thread.\n", pDrvIns->iInstance, rc)); 799 803 rcThread = rc; 800 804 break;
Note:
See TracChangeset
for help on using the changeset viewer.