source: rtems/testsuites/sptests/sp39/system.h @ 6c0301d

4.115
Last change on this file since 6c0301d was 6c0301d, checked in by Sebastian Huber <sebastian.huber@…>, on 03/25/14 at 07:06:21

tests/sptests: Use <rtems/test.h>

  • Property mode set to 100644
File size: 897 bytes
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-2007.
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_APPLICATION_NEEDS_CONSOLE_DRIVER
25#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
26
27#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
28
29#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
30
31#define CONFIGURE_MICROSECONDS_PER_TICK   1000
32
33#define CONFIGURE_MAXIMUM_TASKS             2
34#define CONFIGURE_MAXIMUM_TIMERS            1
35
36#include <rtems/confdefs.h>
37
38/* end of include file */
Note: See TracBrowser for help on using the repository browser.