2002-04-03 Alexander Kukuta <kam@oktet.ru>

* include/rtems/bdbuf.h: Address PR168 by changing bdbuf_buffer.avl.bal
	and bdbuf_buffer.avl.cache to signed char instead of char.
This commit is contained in:
Joel Sherrill
2002-04-03 13:56:34 +00:00
parent 6a3732946a
commit 7b559c4170
6 changed files with 21 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
2002-04-03 Alexander Kukuta <kam@oktet.ru>
* include/rtems/bdbuf.h: Address PR168 by changing bdbuf_buffer.avl.bal
and bdbuf_buffer.avl.cache to signed char instead of char.
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:

View File

@@ -38,12 +38,12 @@ typedef struct bdbuf_buffer {
Chain_Node link; /* Link in the lru, mod or free chains */
struct bdbuf_avl_node {
char cache; /* Cache */
signed char cache; /* Cache */
struct bdbuf_buffer* left; /* Left Child */
struct bdbuf_buffer* right; /* Right Child */
char bal; /* The balance of the sub-tree */
signed char bal; /* The balance of the sub-tree */
} avl;
dev_t dev; /* device number */

View File

@@ -1,3 +1,8 @@
2002-04-03 Alexander Kukuta <kam@oktet.ru>
* include/rtems/bdbuf.h: Address PR168 by changing bdbuf_buffer.avl.bal
and bdbuf_buffer.avl.cache to signed char instead of char.
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:

View File

@@ -38,12 +38,12 @@ typedef struct bdbuf_buffer {
Chain_Node link; /* Link in the lru, mod or free chains */
struct bdbuf_avl_node {
char cache; /* Cache */
signed char cache; /* Cache */
struct bdbuf_buffer* left; /* Left Child */
struct bdbuf_buffer* right; /* Right Child */
char bal; /* The balance of the sub-tree */
signed char bal; /* The balance of the sub-tree */
} avl;
dev_t dev; /* device number */

View File

@@ -1,3 +1,8 @@
2002-04-03 Alexander Kukuta <kam@oktet.ru>
* include/rtems/bdbuf.h: Address PR168 by changing bdbuf_buffer.avl.bal
and bdbuf_buffer.avl.cache to signed char instead of char.
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:

View File

@@ -38,12 +38,12 @@ typedef struct bdbuf_buffer {
Chain_Node link; /* Link in the lru, mod or free chains */
struct bdbuf_avl_node {
char cache; /* Cache */
signed char cache; /* Cache */
struct bdbuf_buffer* left; /* Left Child */
struct bdbuf_buffer* right; /* Right Child */
char bal; /* The balance of the sub-tree */
signed char bal; /* The balance of the sub-tree */
} avl;
dev_t dev; /* device number */