summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectmp.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-29 12:51:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-29 12:51:43 +0000
commit3127180e745334723b33045e712dd3ab90bcf9d5 (patch)
treefa0e0cf96764cf8cc6b104cb9c50585ebffdc814 /cpukit/score/src/objectmp.c
parent2004-03-29 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-3127180e745334723b33045e712dd3ab90bcf9d5.tar.bz2
2004-04-29 Ralf Corsepius <ralf_corsepius@rtems.org>
* score/src/Unlimited.txt, score/src/chain.c, score/src/coremsg.c, score/src/coremsgbroadcast.c, score/src/coremsgclose.c, score/src/coremsgflush.c, score/src/coremsgflushsupp.c, score/src/coremsgseize.c, score/src/coremsgsubmit.c, score/src/coremutex.c, score/src/coremutexflush.c, score/src/coresem.c, score/src/coresemflush.c, score/src/coretod.c, score/src/coretodtickle.c, score/src/coretodtoseconds.c, score/src/coretodvalidate.c, score/src/heap.c, score/src/heapallocate.c, score/src/heapextend.c, score/src/heapfree.c, score/src/heapsizeofuserarea.c, score/src/interr.c, score/src/iterateoverthreads.c, score/src/mpci.c, score/src/object.c, score/src/objectallocate.c, score/src/objectallocatebyindex.c, score/src/objectclearname.c, score/src/objectcomparenameraw.c, score/src/objectcomparenamestring.c, score/src/objectcopynameraw.c, score/src/objectcopynamestring.c, score/src/objectextendinformation.c, score/src/objectfree.c, score/src/objectget.c, score/src/objectgetbyindex.c, score/src/objectgetisr.c, score/src/objectgetnoprotection.c, score/src/objectidtoname.c, score/src/objectinitializeinformation.c, score/src/objectmp.c, score/src/objectnametoid.c, score/src/objectshrinkinformation.c, score/src/thread.c, score/src/threadcreateidle.c, score/src/threadget.c, score/src/threadidlebody.c, score/src/threadinitialize.c, score/src/threadmp.c, score/src/threadq.c, score/src/threadqdequeuepriority.c, score/src/threadqenqueuepriority.c, score/src/threadqfirstpriority.c, score/src/threadqflush.c, score/src/threadreset.c, score/src/threadrestart.c, score/src/threadsettransient.c, score/src/threadstackallocate.c, score/src/threadstart.c, score/src/userext.c, score/src/watchdoginsert.c, score/src/wkspace.c: Convert to using c99 fixed size types.
Diffstat (limited to 'cpukit/score/src/objectmp.c')
-rw-r--r--cpukit/score/src/objectmp.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/cpukit/score/src/objectmp.c b/cpukit/score/src/objectmp.c
index ba4b0d6870..fb663543aa 100644
--- a/cpukit/score/src/objectmp.c
+++ b/cpukit/score/src/objectmp.c
@@ -25,9 +25,9 @@
*/
void _Objects_MP_Handler_initialization (
- unsigned32 node,
- unsigned32 maximum_nodes,
- unsigned32 maximum_global_objects
+ uint32_t node,
+ uint32_t maximum_nodes,
+ uint32_t maximum_global_objects
)
{
_Objects_MP_Maximum_global_objects = maximum_global_objects;
@@ -57,7 +57,7 @@ void _Objects_MP_Handler_initialization (
void _Objects_MP_Open (
Objects_Information *information,
Objects_MP_Control *the_global_object,
- unsigned32 the_name, /* XXX -- wrong for variable */
+ uint32_t the_name, /* XXX -- wrong for variable */
Objects_Id the_id
)
{
@@ -79,7 +79,7 @@ void _Objects_MP_Open (
boolean _Objects_MP_Allocate_and_open (
Objects_Information *information,
- unsigned32 the_name, /* XXX -- wrong for variable */
+ uint32_t the_name, /* XXX -- wrong for variable */
Objects_Id the_id,
boolean is_fatal_error
)
@@ -153,19 +153,19 @@ void _Objects_MP_Close (
Objects_Name_or_id_lookup_errors _Objects_MP_Global_name_search (
Objects_Information *information,
Objects_Name the_name,
- unsigned32 nodes_to_search,
+ uint32_t nodes_to_search,
Objects_Id *the_id
)
{
- unsigned32 low_node;
- unsigned32 high_node;
- unsigned32 node_index;
+ uint32_t low_node;
+ uint32_t high_node;
+ uint32_t node_index;
Chain_Control *the_chain;
Chain_Node *the_node;
Objects_MP_Control *the_object;
- unsigned32 name_to_use;
+ uint32_t name_to_use;
- name_to_use = *(unsigned32 *)the_name; /* XXX only fixed length names */
+ name_to_use = *(uint32_t *)the_name; /* XXX only fixed length names */
if ( nodes_to_search > _Objects_Maximum_nodes )
return OBJECTS_INVALID_NODE;
@@ -226,7 +226,7 @@ void _Objects_MP_Is_remote (
Objects_Control **the_object
)
{
- unsigned32 node;
+ uint32_t node;
Chain_Control *the_chain;
Chain_Node *the_node;
Objects_MP_Control *the_global_object;