summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-16 17:50:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-16 17:50:26 +0000
commit16d7b65331f469935c6f630edc0f3a0be74dedb3 (patch)
treece86edbbbae009498ed4cadfb0d7e50471413f81 /cpukit
parent2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-16d7b65331f469935c6f630edc0f3a0be74dedb3.tar.bz2
2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/src/objectnametoid.c, score/src/objectnametoidstring.c: Remove useless variable pointed out by clang. * score/src/threadstackallocate.c: Remove useless variable initialization pointed out by clang.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog7
-rw-r--r--cpukit/score/src/objectnametoid.c6
-rw-r--r--cpukit/score/src/objectnametoidstring.c5
-rw-r--r--cpukit/score/src/threadstackallocate.c7
4 files changed, 12 insertions, 13 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 5cbf60b945..b7d8775ea5 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,12 @@
2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * score/src/objectnametoid.c, score/src/objectnametoidstring.c:
+ Remove useless variable pointed out by clang.
+ * score/src/threadstackallocate.c: Remove useless variable
+ initialization pointed out by clang.
+
+2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* rtems/src/ratemonreportstatistics.c, rtems/src/ratemonresetall.c:
Remove unchecked return status pointed out by clang.
diff --git a/cpukit/score/src/objectnametoid.c b/cpukit/score/src/objectnametoid.c
index d015cc3cf2..9cd75a274c 100644
--- a/cpukit/score/src/objectnametoid.c
+++ b/cpukit/score/src/objectnametoid.c
@@ -1,8 +1,7 @@
/*
* Object Handler
*
- *
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -57,7 +56,6 @@ Objects_Name_or_id_lookup_errors _Objects_Name_to_id_u32(
bool search_local_node;
Objects_Control *the_object;
uint32_t index;
- uint32_t name_length;
#if defined(RTEMS_MULTIPROCESSING)
Objects_Name name_for_mp;
#endif
@@ -80,8 +78,6 @@ Objects_Name_or_id_lookup_errors _Objects_Name_to_id_u32(
search_local_node = true;
if ( search_local_node ) {
- name_length = information->name_length;
-
for ( index = 1; index <= information->maximum; index++ ) {
the_object = information->local_table[ index ];
if ( !the_object )
diff --git a/cpukit/score/src/objectnametoidstring.c b/cpukit/score/src/objectnametoidstring.c
index 71c7cc853f..17b43d725d 100644
--- a/cpukit/score/src/objectnametoidstring.c
+++ b/cpukit/score/src/objectnametoidstring.c
@@ -1,8 +1,7 @@
/*
* Object Handler - Object ID to Name (String)
*
- *
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -57,7 +56,6 @@ Objects_Name_or_id_lookup_errors _Objects_Name_to_id_string(
{
Objects_Control *the_object;
uint32_t index;
- uint32_t name_length;
/* ASSERT: information->is_string == true */
@@ -68,7 +66,6 @@ Objects_Name_or_id_lookup_errors _Objects_Name_to_id_string(
return OBJECTS_INVALID_NAME;
if ( information->maximum != 0 ) {
- name_length = information->name_length;
for ( index = 1; index <= information->maximum; index++ ) {
the_object = information->local_table[ index ];
diff --git a/cpukit/score/src/threadstackallocate.c b/cpukit/score/src/threadstackallocate.c
index 35c08ec1df..6f427e6e8c 100644
--- a/cpukit/score/src/threadstackallocate.c
+++ b/cpukit/score/src/threadstackallocate.c
@@ -1,8 +1,7 @@
/*
- * Thread Handler
+ * Thread Handler - Stack Allocate Helper
*
- *
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -47,7 +46,7 @@ size_t _Thread_Stack_Allocate(
)
{
void *stack_addr = 0;
- size_t the_stack_size = stack_size;
+ size_t the_stack_size;
the_stack_size = _Stack_Ensure_minimum( stack_size );