source: rtems/testsuites/mptests/mp11/system.h @ 6f6091b3

5
Last change on this file since 6f6091b3 was f30dd1f, checked in by Sebastian Huber <sebastian.huber@…>, on 12/12/19 at 08:36:16

mptests: Fix configuration

Update #3818.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*  system.h
2 *
3 *  This include file contains information that is included in every
4 *  function in the test set.
5 *
6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.org/license/LICENSE.
12 */
13
14#include <tmacros.h>
15
16/* functions */
17
18rtems_task Init(
19  rtems_task_argument argument
20);
21
22/* configuration information */
23
24#define CONFIGURE_MP_APPLICATION
25
26#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
27#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
28
29#define CONFIGURE_MP_MAXIMUM_GLOBAL_OBJECTS     0
30#define CONFIGURE_MP_MAXIMUM_PROXIES            0
31
32#define CONFIGURE_MAXIMUM_TASKS               1
33#if ( CONFIGURE_MP_NODE_NUMBER == 1 )
34#define CONFIGURE_MAXIMUM_SEMAPHORES          1
35#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES      1
36#define CONFIGURE_MESSAGE_BUFFER_MEMORY \
37  CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( 3, 16 )
38#define CONFIGURE_MAXIMUM_PARTITIONS          1
39#endif
40
41#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
42
43#include <rtems/confdefs.h>
44
45/* variables */
46
47TEST_EXTERN rtems_id   Task_id[ 4 ];     /* array of task ids */
48TEST_EXTERN rtems_name Task_name[ 4 ];   /* array of task names */
49
50TEST_EXTERN rtems_id   Queue_id[ 2 ];       /* array of message queue ids */
51TEST_EXTERN rtems_name Queue_name[ 2 ];     /* array of message queue names */
52
53TEST_EXTERN rtems_id   Semaphore_id[ 2 ];   /* array of semaphore ids */
54TEST_EXTERN rtems_name Semaphore_name[ 2 ]; /* array of semaphore names */
55
56/* end of include file */
Note: See TracBrowser for help on using the repository browser.