summaryrefslogtreecommitdiff
path: root/testsuites/ada/mptests/mp13/mptest.ads
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/ada/mptests/mp13/mptest.ads')
-rw-r--r--testsuites/ada/mptests/mp13/mptest.ads13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuites/ada/mptests/mp13/mptest.ads b/testsuites/ada/mptests/mp13/mptest.ads
index 8caa2347c9..14246b6aef 100644
--- a/testsuites/ada/mptests/mp13/mptest.ads
+++ b/testsuites/ada/mptests/mp13/mptest.ads
@@ -24,6 +24,19 @@ with RTEMS.TASKS;
package MPTEST is
--
+-- Buffer Record similar to that used by RTEMS 3.2.1. Using this
+-- avoids changes to the test.
+--
+
+ type BUFFER is
+ record
+ FIELD1 : RTEMS.NAME; -- TEMPORARY UNTIL VARIABLE LENGTH
+ FIELD2 : RTEMS.NAME;
+ FIELD3 : RTEMS.NAME;
+ FIELD4 : RTEMS.NAME;
+ end record;
+
+--
-- These arrays contain the IDs and NAMEs of all RTEMS tasks created
-- by this test.
--