summaryrefslogtreecommitdiffstats
path: root/cpukit/score
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 /cpukit/score
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.
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/src/rbtreeextract.c2
-rw-r--r--cpukit/score/src/rbtreeinsert.c2
2 files changed, 2 insertions, 2 deletions
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
)
{