summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/rtems/message/req/construct-errors.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/spec/rtems/message/req/construct-errors.yml b/spec/rtems/message/req/construct-errors.yml
index c4c5d754..19e7b40e 100644
--- a/spec/rtems/message/req/construct-errors.yml
+++ b/spec/rtems/message/req/construct-errors.yml
@@ -148,7 +148,18 @@ pre-conditions:
states:
- name: Valid
test-code: |
- ctx->config.maximum_message_size = MAX_MESSAGE_SIZE;
+ if ( ctx->config.maximum_pending_messages == UINT32_MAX ) {
+ /*
+ * At least on 64-bit systems we need a bit of help to ensure that we
+ * meet the Big state of the MaxPending pre-condition. The following
+ * message size is valid with respect to calculations involving only
+ * the message size.
+ */
+ ctx->config.maximum_message_size = SIZE_MAX - sizeof( uintptr_t ) +
+ 1 - sizeof( CORE_message_queue_Buffer );
+ } else {
+ ctx->config.maximum_message_size = MAX_MESSAGE_SIZE;
+ }
text: |
The maximum message size of the message queue configuration shall be
valid.