2011-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>

* score/src/rbtreeextract.c:
	Make _RBTree_Extract_validate_unprotected static.
	* score/src/rbtreeinsert.c:
	Make _RBTree_Validate_insert_unprotected static.
This commit is contained in:
Ralf Corsepius
2011-12-02 16:46:49 +00:00
parent 0a962fb946
commit a7d3e93bb4
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
2011-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* score/src/rbtreeextract.c:
Make _RBTree_Extract_validate_unprotected static.
* score/src/rbtreeinsert.c:
Make _RBTree_Validate_insert_unprotected static.
2011-12-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/include/sys/termios.h: Add _POSIX_VDISABLE.

View File

@@ -25,7 +25,7 @@
* @note It does NOT disable interrupts to ensure the atomicity
* of the extract operation.
*/
void _RBTree_Extract_validate_unprotected(
static void _RBTree_Extract_validate_unprotected(
RBTree_Node *the_node
)
{

View File

@@ -25,7 +25,7 @@
* @note It does NOT disable interrupts to ensure the atomicity of the
* append operation.
*/
void _RBTree_Validate_insert_unprotected(
static void _RBTree_Validate_insert_unprotected(
RBTree_Node *the_node
)
{