[rtems commit] sp13/system.h: Account for all message buffers

Joel Sherril joel at rtems.org
Thu Apr 23 17:48:24 UTC 2015


Module:    rtems
Branch:    master
Commit:    694f15558978753b07c09b94d385ba31b6f69d36
Changeset: http://git.rtems.org/rtems/commit/?id=694f15558978753b07c09b94d385ba31b6f69d36

Author:    Joel Sherrill <joel.sherrill at oarcorp.com>
Date:      Wed Apr 22 09:10:24 2015 -0500

sp13/system.h: Account for all message buffers

There may be a way to reduce the memory requirements but it
will require time to ensure the math is right and it passes
on all targets. At the current time, it fails on 22 BSPs which
run on simulators.

---

 testsuites/sptests/sp13/system.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testsuites/sptests/sp13/system.h b/testsuites/sptests/sp13/system.h
index f879096..20ecc2f 100644
--- a/testsuites/sptests/sp13/system.h
+++ b/testsuites/sptests/sp13/system.h
@@ -90,10 +90,10 @@ TEST_EXTERN rtems_name Queue_name[ 4 ];      /* array of queue names */
  */
 #define CONFIGURE_MESSAGE_BUFFER_MEMORY \
    /* Q1 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 100, MESSAGE_SIZE ) + \
-   /* Q2 */ /* CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 10, MESSAGE_SIZE ) + */ \
+   /* Q2 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 10, MESSAGE_SIZE ) + \
    /* Q3 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 100, MESSAGE_SIZE ) + \
    /* Q1 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 100, 20 ) + \
-   /* Q1 */ /* CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 2,  1030 ) */
+   /* Q1 */ CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 2,  1030 )
 
 #define CONFIGURE_EXTRA_TASK_STACKS         (3 * RTEMS_MINIMUM_STACK_SIZE)
 



More information about the vc mailing list