summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/mpci.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-29 16:41:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-29 16:41:13 +0000
commitd6154c70dc048e21aae907fd053a1e7a1d155408 (patch)
tree9ecb1475f4432a19f423da0ff73fbec9a87536af /cpukit/score/include/rtems/score/mpci.h
parent2004-03-29 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-d6154c70dc048e21aae907fd053a1e7a1d155408.tar.bz2
2004-03-29 Ralf Corsepius <ralf_corsepius@rtems.org>
* score/include/rtems/debug.h, score/include/rtems/score/bitfield.h, score/include/rtems/score/chain.h, score/include/rtems/score/coremsg.h, score/include/rtems/score/coremutex.h, score/include/rtems/score/coresem.h, score/include/rtems/score/heap.h, score/include/rtems/score/interr.h, score/include/rtems/score/isr.h, score/include/rtems/score/mpci.h, score/include/rtems/score/mppkt.h, score/include/rtems/score/object.h, score/include/rtems/score/objectmp.h, score/include/rtems/score/priority.h, score/include/rtems/score/stack.h, score/include/rtems/score/states.h, score/include/rtems/score/thread.h, score/include/rtems/score/threadmp.h, score/include/rtems/score/threadq.h, score/include/rtems/score/tod.h, score/include/rtems/score/tqdata.h, score/include/rtems/score/userext.h, score/include/rtems/score/watchdog.h, score/include/rtems/score/wkspace.h, score/inline/rtems/score/address.inl, score/inline/rtems/score/coremsg.inl, score/inline/rtems/score/coresem.inl, score/inline/rtems/score/heap.inl, score/inline/rtems/score/isr.inl, score/inline/rtems/score/object.inl, score/inline/rtems/score/priority.inl, score/inline/rtems/score/stack.inl, score/inline/rtems/score/thread.inl, score/inline/rtems/score/tqdata.inl, score/inline/rtems/score/userext.inl, score/inline/rtems/score/wkspace.inl, score/macros/rtems/score/address.inl, score/macros/rtems/score/heap.inl, score/macros/rtems/score/object.inl, score/macros/rtems/score/priority.inl, score/macros/rtems/score/userext.inl: Convert to using c99 fixed size types.
Diffstat (limited to 'cpukit/score/include/rtems/score/mpci.h')
-rw-r--r--cpukit/score/include/rtems/score/mpci.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/cpukit/score/include/rtems/score/mpci.h b/cpukit/score/include/rtems/score/mpci.h
index aae0faebad..dae9345076 100644
--- a/cpukit/score/include/rtems/score/mpci.h
+++ b/cpukit/score/include/rtems/score/mpci.h
@@ -76,7 +76,7 @@ typedef MPCI_Entry ( *MPCI_return_packet_entry )(
);
typedef MPCI_Entry ( *MPCI_send_entry )(
- unsigned32,
+ uint32_t ,
MP_packet_Prefix *
);
@@ -85,8 +85,8 @@ typedef MPCI_Entry ( *MPCI_receive_entry )(
);
typedef struct {
- unsigned32 default_timeout; /* in ticks */
- unsigned32 maximum_packet_size;
+ uint32_t default_timeout; /* in ticks */
+ uint32_t maximum_packet_size;
MPCI_initialization_entry initialization;
MPCI_get_packet_entry get_packet;
MPCI_return_packet_entry return_packet;
@@ -118,8 +118,8 @@ typedef enum {
typedef struct {
MP_packet_Prefix Prefix;
MPCI_Internal_Remote_operations operation;
- unsigned32 maximum_nodes;
- unsigned32 maximum_global_objects;
+ uint32_t maximum_nodes;
+ uint32_t maximum_global_objects;
} MPCI_Internal_packet;
/*
@@ -165,7 +165,7 @@ SCORE_EXTERN MPCI_Packet_processor
void _MPCI_Handler_initialization(
MPCI_Control *users_mpci_table,
- unsigned32 timeout_status
+ uint32_t timeout_status
);
/*
@@ -238,7 +238,7 @@ void _MPCI_Return_packet (
*/
void _MPCI_Send_process_packet (
- unsigned32 destination,
+ uint32_t destination,
MP_packet_Prefix *the_packet
);
@@ -251,8 +251,8 @@ void _MPCI_Send_process_packet (
* MPCI send callout.
*/
-unsigned32 _MPCI_Send_request_packet (
- unsigned32 destination,
+uint32_t _MPCI_Send_request_packet (
+ uint32_t destination,
MP_packet_Prefix *the_packet,
States_Control extra_state
);
@@ -267,7 +267,7 @@ unsigned32 _MPCI_Send_request_packet (
*/
void _MPCI_Send_response_packet (
- unsigned32 destination,
+ uint32_t destination,
MP_packet_Prefix *the_packet
);
@@ -302,7 +302,7 @@ Thread_Control *_MPCI_Process_response (
*/
Thread _MPCI_Receive_server(
- unsigned32 ignored
+ uint32_t ignored
);
/*PAGE