Changeset 35e6bf7f in rtems
- Timestamp:
- 05/26/03 15:57:04 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 78bea14
- Parents:
- 9c8530f7
- Location:
- cpukit/libcsupport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libcsupport/ChangeLog
r9c8530f7 r35e6bf7f 1 2003-04-17 Thomas Doerfler <Thomas.Doerfler@imd-systems.de> 2 3 PR 399/rtems_misc 4 * src/termios.c: In canonical mode, when input is present in the 5 input buffer that contains an EOL character and some following 6 characters, a read call read data behind the EOL character, although 7 it should stop reading with the EOL character. 8 1 9 2003-04-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
cpukit/libcsupport/src/termios.c
r9c8530f7 r35e6bf7f 1064 1064 /* continue processing new character */ 1065 1065 if (tty->termios.c_lflag & ICANON) { 1066 if (siproc (c, tty)) 1066 if (siproc (c, tty)) { 1067 1067 wait = 0; 1068 break; /* done */ 1069 } 1068 1070 } 1069 1071 else { … … 1511 1513 } 1512 1514 } 1515
Note: See TracChangeset
for help on using the changeset viewer.