Changeset eaeb467 in rtems
- Timestamp:
- 03/20/02 17:59:12 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 25d3d4d
- Parents:
- fabacfe
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/include/rtems/termiostypes.h
rfabacfe reaeb467 34 34 */ 35 35 struct rtems_termios_rawbuf { 36 volatile char*theBuf;36 char *theBuf; 37 37 volatile unsigned int Head; 38 38 volatile unsigned int Tail; -
c/src/lib/ChangeLog
rfabacfe reaeb467 1 2001-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 1 7 2002-03-01 Eric Norum <eric.norum@usask.ca> 2 8 -
c/src/lib/include/rtems/termiostypes.h
rfabacfe reaeb467 34 34 */ 35 35 struct rtems_termios_rawbuf { 36 volatile char*theBuf;36 char *theBuf; 37 37 volatile unsigned int Head; 38 38 volatile unsigned int Tail; -
cpukit/libcsupport/include/rtems/termiostypes.h
rfabacfe reaeb467 34 34 */ 35 35 struct rtems_termios_rawbuf { 36 volatile char*theBuf;36 char *theBuf; 37 37 volatile unsigned int Head; 38 38 volatile unsigned int Tail;
Note: See TracChangeset
for help on using the changeset viewer.