source: rtems/testsuites/sptests/sp04/system.h @ 13097181

5
Last change on this file since 13097181 was 13097181, checked in by Sebastian Huber <sebastian.huber@…>, on 05/11/17 at 09:03:00

confdefs.h: CONFIGURE_DISABLE_SMP_CONFIGURATION

Enable the SMP configuration by default in case SMP is enabled. Add
configuration option CONFIGURE_DISABLE_SMP_CONFIGURATION to disable it
explicitly.

Add CONFIGURE_DISABLE_SMP_CONFIGURATION to all test which would fail
otherwise.

Update #3001.

  • 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-2009.
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 Task_1(
23  rtems_task_argument argument
24);
25
26rtems_task Task_2(
27  rtems_task_argument argument
28);
29
30rtems_task Task_3(
31  rtems_task_argument argument
32);
33
34void Task_switch(
35  rtems_tcb *unused,
36  rtems_tcb *heir
37);
38
39/* configuration information */
40
41#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
42#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
43
44#define CONFIGURE_MAXIMUM_USER_EXTENSIONS     1
45#define CONFIGURE_TICKS_PER_TIMESLICE       100
46
47#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
48
49#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
50
51#define CONFIGURE_EXTRA_TASK_STACKS         (3 * RTEMS_MINIMUM_STACK_SIZE)
52#define CONFIGURE_MAXIMUM_TASKS             4
53#define CONFIGURE_MAXIMUM_TIMERS            1
54
55#define CONFIGURE_DISABLE_SMP_CONFIGURATION
56
57#include <rtems/confdefs.h>
58
59/* global variables */
60
61TEST_EXTERN rtems_id   Task_id[ 4 ];         /* array of task ids */
62TEST_EXTERN rtems_name Task_name[ 4 ];       /* array of task names */
63
64TEST_EXTERN rtems_id   Extension_id[ 4 ];
65TEST_EXTERN rtems_name Extension_name[ 4 ];  /* array of task names */
66
67/* array of task run counts */
68TEST_EXTERN volatile uint32_t   Run_count[ 4 ];
69
70/*
71 * Keep track of task switches
72 */
73
74struct taskSwitchLog {
75  unsigned int      taskIndex;
76  rtems_time_of_day when;
77};
78
79extern struct taskSwitchLog taskSwitchLog[];
80extern unsigned int taskSwitchLogIndex;
81extern volatile int testsFinished;
82
83
84/* end of include file */
Note: See TracBrowser for help on using the repository browser.