2011-12-03 Ralf Corsépius <ralf.corsepius@rtems.org>

* libcsupport/src/termios.c: Make FL_* defines unsigned.
This commit is contained in:
Ralf Corsepius
2011-12-03 05:45:58 +00:00
parent a10bf3725d
commit bbc0615e09
2 changed files with 9 additions and 8 deletions
+1
View File
@@ -1,5 +1,6 @@
2011-12-03 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/termios.c: Make FL_* defines unsigned.
* score/inline/rtems/score/coremsg.inl (_CORE_message_queue_Send,
_CORE_message_queue_Urgent):
Pass through api_message_queue_mp_support parameter.
+8 -8
View File
@@ -45,16 +45,16 @@
#define RAW_OUTPUT_BUFFER_SIZE (rtems_termios_raw_output_size)
/* fields for "flow_ctrl" status */
#define FL_IREQXOF 1 /* input queue requests stop of incoming data */
#define FL_ISNTXOF 2 /* XOFF has been sent to other side of line */
#define FL_IRTSOFF 4 /* RTS has been turned off for other side.. */
#define FL_IREQXOF 1U /* input queue requests stop of incoming data */
#define FL_ISNTXOF 2U /* XOFF has been sent to other side of line */
#define FL_IRTSOFF 4U /* RTS has been turned off for other side.. */
#define FL_ORCVXOF 0x10 /* XOFF has been received */
#define FL_OSTOP 0x20 /* output has been stopped due to XOFF */
#define FL_ORCVXOF 0x10U /* XOFF has been received */
#define FL_OSTOP 0x20U /* output has been stopped due to XOFF */
#define FL_MDRTS 0x100 /* input controlled with RTS/CTS handshake */
#define FL_MDXON 0x200 /* input controlled with XON/XOFF protocol */
#define FL_MDXOF 0x400 /* output controlled with XON/XOFF protocol */
#define FL_MDRTS 0x100U /* input controlled with RTS/CTS handshake */
#define FL_MDXON 0x200U /* input controlled with XON/XOFF protocol */
#define FL_MDXOF 0x400U /* output controlled with XON/XOFF protocol */
#define NODISC(n) \
{ NULL, NULL, NULL, NULL, \