source: rtems/testsuites/tmtests/tm21/system.h @ 316ba97

4.115
Last change on this file since 316ba97 was 316ba97, checked in by Sebastian Huber <sebastian.huber@…>, on 04/07/14 at 13:36:55

tmtests/tm21: Fix configuration

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*  system.h
2 *
3 *  This include file is used by all tests in the Time Suite.
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.org/license/LICENSE.
11 */
12
13
14#include <coverhd.h>
15#include <tmacros.h>
16
17/* functions */
18
19rtems_task Init(
20  rtems_task_argument argument
21);
22
23#include <timesys.h>
24
25/* configuration information */
26
27#define MESSAGE_SIZE (sizeof(long) * 4)
28
29#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
30#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
31
32#define CONFIGURE_MAXIMUM_TASKS              (2 + OPERATION_COUNT)
33#define CONFIGURE_MAXIMUM_TIMERS             OPERATION_COUNT
34#define CONFIGURE_MAXIMUM_SEMAPHORES         OPERATION_COUNT
35#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES     OPERATION_COUNT
36#define CONFIGURE_MESSAGE_BUFFER_MEMORY \
37  CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE(OPERATION_COUNT, MESSAGE_SIZE)
38#define CONFIGURE_MAXIMUM_PARTITIONS         OPERATION_COUNT
39#define CONFIGURE_MAXIMUM_REGIONS            OPERATION_COUNT
40#define CONFIGURE_MAXIMUM_PORTS              OPERATION_COUNT
41#define CONFIGURE_MAXIMUM_PERIODS            OPERATION_COUNT
42
43#define CONFIGURE_TICKS_PER_TIMESLICE        0
44
45#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
46
47#include <rtems/confdefs.h>
48
49/* end of include file */
Note: See TracBrowser for help on using the repository browser.