summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/include/rtems/system.h2
-rw-r--r--cpukit/score/src/coremsg.c14
2 files changed, 8 insertions, 8 deletions
diff --git a/cpukit/score/include/rtems/system.h b/cpukit/score/include/rtems/system.h
index c2fbf7694b..90501dd3d3 100644
--- a/cpukit/score/include/rtems/system.h
+++ b/cpukit/score/include/rtems/system.h
@@ -27,7 +27,7 @@ extern "C" {
*/
#define __RTEMS_MAJOR__ 4
#define __RTEMS_MINOR__ 6
-#define __RTEMS_REVISION__ 0
+#define __RTEMS_REVISION__ 99
/*
* The cpu options include file defines all cpu dependent
diff --git a/cpukit/score/src/coremsg.c b/cpukit/score/src/coremsg.c
index 120e03e360..94098e0b96 100644
--- a/cpukit/score/src/coremsg.c
+++ b/cpukit/score/src/coremsg.c
@@ -51,12 +51,12 @@
boolean _CORE_message_queue_Initialize(
CORE_message_queue_Control *the_message_queue,
CORE_message_queue_Attributes *the_message_queue_attributes,
- unsigned32 maximum_pending_messages,
- unsigned32 maximum_message_size
+ uint32_t maximum_pending_messages,
+ uint32_t maximum_message_size
)
{
- unsigned32 message_buffering_required;
- unsigned32 allocated_message_size;
+ uint32_t message_buffering_required;
+ uint32_t allocated_message_size;
the_message_queue->maximum_pending_messages = maximum_pending_messages;
the_message_queue->number_of_pending_messages = 0;
@@ -69,9 +69,9 @@ boolean _CORE_message_queue_Initialize(
*/
allocated_message_size = maximum_message_size;
- if (allocated_message_size & (sizeof(unsigned32) - 1)) {
- allocated_message_size += sizeof(unsigned32);
- allocated_message_size &= ~(sizeof(unsigned32) - 1);
+ if (allocated_message_size & (sizeof(uint32_t) - 1)) {
+ allocated_message_size += sizeof(uint32_t);
+ allocated_message_size &= ~(sizeof(uint32_t) - 1);
}
if (allocated_message_size < maximum_message_size)