Changeset 69892 in vbox
- Timestamp:
- Nov 30, 2017 10:34:01 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r69813 r69892 3104 3104 /** @} */ 3105 3105 3106 3107 /** @name RTSerialPort status codes 3108 * @{ */ 3109 /** A break was detected until all requested data could be received. */ 3110 #define VERR_SERIALPORT_BREAK_DETECTED (-25500) 3111 /** The chosen baudrate is invalid or not supported by the given serial port. */ 3112 #define VERR_SERIALPORT_INVALID_BAUDRATE (-25501) 3113 3114 /** @} */ 3115 3106 3116 /* SED-END */ 3107 3117 -
trunk/include/iprt/mangling.h
r69855 r69892 1805 1805 # define RTSemXRoadsNSEnter RT_MANGLER(RTSemXRoadsNSEnter) 1806 1806 # define RTSemXRoadsNSLeave RT_MANGLER(RTSemXRoadsNSLeave) 1807 # define RTSerialPortOpen RT_MANGLER(RTSerialPortOpen) 1808 # define RTSerialPortClose RT_MANGLER(RTSerialPortClose) 1809 # define RTSerialPortToNative RT_MANGLER(RTSerialPortToNative) 1810 # define RTSerialPortRead RT_MANGLER(RTSerialPortRead) 1811 # define RTSerialPortReadNB RT_MANGLER(RTSerialPortReadNB) 1812 # define RTSerialPortWrite RT_MANGLER(RTSerialPortWrite) 1813 # define RTSerialPortWriteNB RT_MANGLER(RTSerialPortWriteNB) 1814 # define RTSerialPortCfgQueryCurrent RT_MANGLER(RTSerialPortCfgQueryCurrent) 1815 # define RTSerialPortCfgSet RT_MANGLER(RTSerialPortCfgSet) 1816 # define RTSerialPortEvtPoll RT_MANGLER(RTSerialPortEvtPoll) 1817 # define RTSerialPortEvtPollInterrupt RT_MANGLER(RTSerialPortEvtPollInterrupt) 1818 # define RTSerialPortChgBreakCondition RT_MANGLER(RTSerialPortChgBreakCondition) 1819 # define RTSerialPortChgStatusLines RT_MANGLER(RTSerialPortChgStatusLines) 1820 # define RTSerialPortQueryStatusLines RT_MANGLER(RTSerialPortQueryStatusLines) 1807 1821 # define RTSgBufAdvance RT_MANGLER(RTSgBufAdvance) 1808 1822 # define RTSgBufClone RT_MANGLER(RTSgBufClone) -
trunk/src/VBox/Runtime/Makefile.kmk
r69885 r69892 946 946 r3/posix/rand-posix.cpp \ 947 947 r3/posix/semrw-posix.cpp \ 948 r3/posix/serialport-posix.cpp \ 948 949 r3/posix/symlink-posix.cpp \ 949 950 r3/posix/thread-posix.cpp \ … … 1127 1128 r3/posix/semeventmulti-posix.cpp \ 1128 1129 r3/posix/semmutex-posix.cpp \ 1130 r3/posix/serialport-posix.cpp \ 1129 1131 r3/posix/symlink-posix.cpp \ 1130 1132 r3/posix/thread-posix.cpp \ … … 1207 1209 r3/posix/semmutex-posix.cpp \ 1208 1210 r3/posix/semrw-posix.cpp \ 1211 r3/posix/serialport-posix.cpp \ 1209 1212 r3/posix/symlink-posix.cpp \ 1210 1213 r3/posix/thread-posix.cpp \ … … 1281 1284 r3/posix/semmutex-posix.cpp \ 1282 1285 r3/posix/semrw-posix.cpp \ 1286 r3/posix/serialport-posix.cpp \ 1283 1287 r3/posix/symlink-posix.cpp \ 1284 1288 r3/posix/thread-posix.cpp \ … … 1349 1353 r3/posix/semmutex-posix.cpp \ 1350 1354 r3/posix/semrw-posix.cpp \ 1355 r3/posix/serialport-posix.cpp \ 1351 1356 r3/posix/symlink-posix.cpp \ 1352 1357 r3/posix/thread-posix.cpp \ … … 1438 1443 r3/posix/semeventmulti-posix.cpp \ 1439 1444 r3/posix/semmutex-posix.cpp \ 1445 r3/posix/serialport-posix.cpp \ 1440 1446 r3/posix/symlink-posix.cpp \ 1441 1447 r3/posix/thread-posix.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.