Changeset 69896 in vbox
- Timestamp:
- Nov 30, 2017 11:27:24 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119365
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/serialport-posix.cpp
r69894 r69896 262 262 static int rtSerialPortCfg2Termios(PCRTSERIALPORTCFG pCfg, struct termios *pTermios, PRTERRINFO pErrInfo) 263 263 { 264 RT_NOREF(pErrInfo); /** @todo :Make use of the error info. */264 RT_NOREF(pErrInfo); /** @todo Make use of the error info. */ 265 265 speed_t enmSpeed = rtSerialPortGetTermiosSpeedFromBaudrate(pCfg->uBaudRate); 266 266 if (enmSpeed != B0) … … 343 343 344 344 #ifdef RT_OS_LINUX 345 /** @todo :Handle custom baudrates supported by Linux. */345 /** @todo Handle custom baudrates supported by Linux. */ 346 346 #endif 347 347 … … 471 471 rcPsx = ioctl(pThis->iFd, TIOCMIWAIT, fStsLinesChk); 472 472 if (!rcPsx) 473 { /** @todo :Notify any event waiter. */ }473 { /** @todo Notify any event waiter. */ } 474 474 else if (rcPsx == -1 && errno != EINTR) 475 475 fPoll = true; … … 486 486 if (((fStsLines ^ fStsLinesOld) & fStsLinesChk)) 487 487 { 488 /** @todo :Notify any event waiter. */488 /** @todo Notify any event waiter. */ 489 489 fStsLinesOld = fStsLines; 490 490 } … … 499 499 */ 500 500 if (cStsLineGetErrors++ >= 10) 501 { /** @todo :Send error notification */ }501 { /** @todo Send error notification */ } 502 502 503 503 RTThreadSleep(100 /*ms*/); … … 846 846 } 847 847 848 849 850
Note:
See TracChangeset
for help on using the changeset viewer.