2001-03-20 Joel Sherrill <joel@OARcorp.com>

* PR143
	* lib/include/rtems/termiostypes.h: Removed unneeded volatile on
	"theBuf" since no byte is read more than once anyway.
This commit is contained in:
Joel Sherrill
2002-03-20 17:59:12 +00:00
parent fabacfedb8
commit eaeb467139
4 changed files with 9 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ struct ttywakeup {
* Variables associated with the character buffer
*/
struct rtems_termios_rawbuf {
volatile char *theBuf;
char *theBuf;
volatile unsigned int Head;
volatile unsigned int Tail;
volatile unsigned int Size;