source: rtems/testsuites/sptests/sp19/system.h @ e1462e1

4.115
Last change on this file since e1462e1 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: 1.4 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
22rtems_task First_FP_task(
23  rtems_task_argument argument
24);
25
26rtems_task FP_task(
27  rtems_task_argument argument
28);
29
30rtems_task Task_1(
31  rtems_task_argument argument
32);
33
34/* configuration information */
35
36#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
37
38#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
39#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
40
41#define CONFIGURE_MAXIMUM_TASKS             7
42
43#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
44
45#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
46
47#define CONFIGURE_EXTRA_TASK_STACKS         (24 * RTEMS_MINIMUM_STACK_SIZE)
48
49#include <rtems/confdefs.h>
50
51/* global variables */
52
53TEST_EXTERN rtems_id   Task_id[ 7 ];     /* array of task ids */
54TEST_EXTERN rtems_name Task_name[ 7 ];   /* array of task names */
55
56TEST_EXTERN double FP_factors[ 10 ];  /* FP "uniqueness" factors */
57
58TEST_EXTERN uint32_t   INTEGER_factors[ 10 ];  /* INT "uniqueness" factors */
59/* end of include file */
Note: See TracBrowser for help on using the repository browser.