source: rtems/testsuites/sptests/spfatal/system.h @ dde827b

4.104.114.84.95
Last change on this file since dde827b was df49c60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 15:00:15

Merged from 4.5.0-beta3a

  • Property mode set to 100644
File size: 1.8 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.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#include <tmacros.h>
17
18/* functions */
19
20rtems_task Init(
21  rtems_task_argument argument
22);
23 
24void put_error(
25  rtems_unsigned32  error,
26  rtems_status_code expected
27);
28 
29rtems_extension Fatal_extension(
30  rtems_unsigned32 source,
31  boolean          is_internal,
32  rtems_unsigned32 error
33);
34 
35rtems_task Task_1(
36  rtems_task_argument argument
37);
38
39/* configuration information */
40
41extern rtems_extensions_table initial_extensions;
42
43#define CONFIGURE_INITIAL_EXTENSIONS \
44  { \
45    NULL,                    /* create  */ \
46    NULL,                    /* start   */ \
47    NULL,                    /* restart */ \
48    NULL,                    /* delete  */ \
49    NULL,                    /* switch  */ \
50    NULL,                    /* begin   */ \
51    NULL,                    /* exitted */ \
52    Fatal_extension          /* fatal   */ \
53  }
54
55#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
56#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
57
58#define CONFIGURE_MICROSECONDS_PER_TICK RTEMS_MILLISECONDS_TO_MICROSECONDS(0)
59#define CONFIGURE_TICKS_PER_TIMESLICE   0
60
61#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
62
63#include <confdefs.h>
64
65/* global variables */
66
67TEST_EXTERN rtems_id   Task_id[ 4 ];         /* array of task ids */
68TEST_EXTERN rtems_name Task_name[ 4 ];       /* array of task names */
69
70TEST_EXTERN rtems_configuration_table        New_Configuration;
71
72extern rtems_extensions_table           Extensions;
73
74/* end of include file */
Note: See TracBrowser for help on using the repository browser.