summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/chain.inl
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-12-04 14:44:33 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-12-04 14:44:33 +0000
commit86aa7980165602457fbe7d860fc4cba61b52387f (patch)
tree51f3a277afbd4c394ef18df99450f202fd083ee8 /cpukit/score/inline/rtems/score/chain.inl
parent2006-12-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-86aa7980165602457fbe7d860fc4cba61b52387f.tar.bz2
More consts
Diffstat (limited to 'cpukit/score/inline/rtems/score/chain.inl')
-rw-r--r--cpukit/score/inline/rtems/score/chain.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/inline/rtems/score/chain.inl b/cpukit/score/inline/rtems/score/chain.inl
index c309c739e2..e47242bf70 100644
--- a/cpukit/score/inline/rtems/score/chain.inl
+++ b/cpukit/score/inline/rtems/score/chain.inl
@@ -40,8 +40,8 @@
* and FALSE otherwise.
*/
RTEMS_INLINE_ROUTINE boolean _Chain_Are_nodes_equal(
- Chain_Node *left,
- Chain_Node *right
+ const Chain_Node *left,
+ const Chain_Node *right
)
{
return left == right;
@@ -56,7 +56,7 @@ RTEMS_INLINE_ROUTINE boolean _Chain_Are_nodes_equal(
* @return This method returns TRUE if the_chain is NULL and FALSE otherwise.
*/
RTEMS_INLINE_ROUTINE boolean _Chain_Is_null(
- Chain_Control *the_chain
+ const Chain_Control *the_chain
)
{
return (the_chain == NULL);