summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectmp.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-28 17:19:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-28 17:19:01 +0000
commitdef9eef5f7fd8d82fcb194d77636cb7801d64394 (patch)
tree9169485a3638c511dd424a298183756b74fbd548 /cpukit/score/src/objectmp.c
parent2008-01-25 Jennifer Averett <jennifer.averett@OARcorp.com> (diff)
downloadrtems-def9eef5f7fd8d82fcb194d77636cb7801d64394.tar.bz2
2008-01-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* sapi/include/confdefs.h, score/src/mpci.c, score/src/objectmp.c, score/src/objectnametoid.c, score/src/objectnametoidstring.c: Multiprocessing compiles again and survives initialization. The recent object name and confdefs.h changes had broken it.
Diffstat (limited to 'cpukit/score/src/objectmp.c')
-rw-r--r--cpukit/score/src/objectmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/objectmp.c b/cpukit/score/src/objectmp.c
index dae942cb63..b9c05ee681 100644
--- a/cpukit/score/src/objectmp.c
+++ b/cpukit/score/src/objectmp.c
@@ -169,7 +169,7 @@ Objects_Name_or_id_lookup_errors _Objects_MP_Global_name_search (
Objects_MP_Control *the_object;
uint32_t name_to_use;
- name_to_use = (uint32_t)the_name; /* XXX only fixed length names */
+ name_to_use = the_name.name_u32; /* XXX only fixed length names */
if ( nodes_to_search > _Objects_Maximum_nodes )
return OBJECTS_INVALID_NODE;