source: rtems/testsuites/tmtests/tmoverhd/system.h @ c4b8b147

5
Last change on this file since c4b8b147 was c4b8b147, checked in by Sebastian Huber <sebastian.huber@…>, on 11/03/17 at 07:35:38

tests: Use simple console driver

Update #3170.
Update #3199.

  • Property mode set to 100644
File size: 1.1 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
23rtems_timer_service_routine Timer_handler(
24  rtems_id argument
25);
26
27rtems_asr Isr_handler(
28  rtems_signal_set signals
29);
30
31rtems_asr Asr_handler(
32  rtems_signal_set signals
33);
34
35extern rtems_task task_func(void);
36
37extern void null_func(void);
38
39extern rtems_status_code Empty_directive(void);
40
41#include <timesys.h>
42
43/* configuration information */
44
45#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
46#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
47
48#define CONFIGURE_MAXIMUM_TASKS              2
49#define CONFIGURE_TICKS_PER_TIMESLICE        0
50
51#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
52
53#include <rtems/confdefs.h>
54
55/* end of include file */
Note: See TracBrowser for help on using the repository browser.