Ticket #143: termios.patch

File termios.patch, 858 bytes (added by Ralf Corsepius, on 12/03/06 at 13:31:13)

termios.patch

  • new file changes-termios

    - +  
     12001-03-20      Joel Sherrill <joel@OARcorp.com>
     2
     3        * PR143
     4        * lib/include/rtems/termiostypes.h: Removed unneeded volatile on
     5        "theBuf" since no byte is read more than once anyway.
     6
  • include/rtems/termiostypes.h

    RCS file: /usr1/CVS/rtems/c/src/lib/include/rtems/termiostypes.h,v
    retrieving revision 1.2
    diff -u -r1.2 termiostypes.h
     
    3333 * Variables associated with the character buffer
    3434 */
    3535struct rtems_termios_rawbuf {
    36   volatile char         *theBuf;
     36  char *theBuf;
    3737  volatile unsigned int Head;
    3838  volatile unsigned int Tail;
    3939  volatile unsigned int Size;