source: rtems/testsuites/tmtests/tm22/system.h @ 183af89

4.115
Last change on this file since 183af89 was 55448eb, checked in by Joel Sherrill <joel.sherrill@…>, on 10/28/08 at 21:42:42

2008-10-28 Joel Sherrill <joel.sherrill@…>

  • tm22/system.h, tm22/task1.c: Account for message buffers used.
  • Property mode set to 100644
File size: 992 bytes
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.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15
16#include <coverhd.h>
17#include <tmacros.h>
18
19/* functions */
20
21rtems_task Init(
22  rtems_task_argument argument
23);
24
25#define MESSAGE_SIZE (sizeof(long) * 4)
26
27#include <timesys.h>
28
29/* configuration information */
30
31#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
32#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
33
34#define CONFIGURE_MAXIMUM_TASKS              4
35#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES     1
36#define CONFIGURE_TICKS_PER_TIMESLICE        0
37
38
39#define CONFIGURE_MESSAGE_BUFFER_MEMORY \
40  CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE(100, MESSAGE_SIZE )
41#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
42
43#include <rtems/confdefs.h>
44
45/* end of include file */
Note: See TracBrowser for help on using the repository browser.