source: rtems/testsuites/sptests/sptask_err01/system.h @ d4edbdbc

4.115
Last change on this file since d4edbdbc was d4edbdbc, checked in by Sebastian Huber <sebastian.huber@…>, on 03/20/15 at 13:09:26

Replace www.rtems.com with www.rtems.org

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 *  This include file contains information that is included in every
3 *  function in the test set.
4 */
5
6/*
7 *  COPYRIGHT (c) 1989-2014.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.org/license/LICENSE.
13 */
14
15#include <tmacros.h>
16
17/* functions */
18
19rtems_task Init(
20  rtems_task_argument argument
21);
22
23rtems_task Task_2(
24  rtems_task_argument argument
25);
26
27/* configuration information */
28
29#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
30#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
31
32#define CONFIGURE_MAXIMUM_TASKS              10
33#define CONFIGURE_MAXIMUM_TIMERS              1
34#define CONFIGURE_MAXIMUM_SEMAPHORES          2
35#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES      1
36#define CONFIGURE_MAXIMUM_PERIODS             1
37#define CONFIGURE_MAXIMUM_USER_EXTENSIONS     0
38#define CONFIGURE_TICKS_PER_TIMESLICE       100
39
40#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
41
42#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
43
44#define CONFIGURE_EXTRA_TASK_STACKS         (20 * RTEMS_MINIMUM_STACK_SIZE)
45
46#include <rtems/confdefs.h>
47
48/* global variables */
49
50TEST_EXTERN rtems_id   Task_id[ 11 ];       /* array of task ids */
51TEST_EXTERN rtems_name Task_name[ 11 ];     /* array of task names */
52
53/* end of include file */
Note: See TracBrowser for help on using the repository browser.