summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-12-02 16:46:49 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-12-02 16:46:49 +0000
commita7d3e93bb4fabef92b29c247f07e1c9e9d7ac0dc (patch)
tree23d679a2b89b48f695465654a21e80ba09712c5d
parent2011-12-02 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-a7d3e93bb4fabef92b29c247f07e1c9e9d7ac0dc.tar.bz2
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.
-rw-r--r--cpukit/ChangeLog7
-rw-r--r--cpukit/score/src/rbtreeextract.c2
-rw-r--r--cpukit/score/src/rbtreeinsert.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 8ab4807d01..b5883ac8c1 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -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.
diff --git a/cpukit/score/src/rbtreeextract.c b/cpukit/score/src/rbtreeextract.c
index b54fc4f7af..ecbda18252 100644
--- a/cpukit/score/src/rbtreeextract.c
+++ b/cpukit/score/src/rbtreeextract.c
@@ -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
)
{
diff --git a/cpukit/score/src/rbtreeinsert.c b/cpukit/score/src/rbtreeinsert.c
index 1208a3c81a..798bd87015 100644
--- a/cpukit/score/src/rbtreeinsert.c
+++ b/cpukit/score/src/rbtreeinsert.c
@@ -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
)
{