source: rtems/testsuites/tmtests/tm08/system.h @ c7f748a

5
Last change on this file since c7f748a was c7f748a, checked in by Sebastian Huber <sebastian.huber@…>, on 02/15/20 at 11:07:28

config: Remove CONFIGURE_DISABLE_SMP_CONFIGURATION

The CONFIGURE_DISABLE_SMP_CONFIGURATION configuration option and
rtems_configuration_is_smp_enabled() were added during the SMP support
development cycle as a workaround to fix some testsuite failures in SMP
configurations. All use cases were replaced with tests for specific
conditions. The configuration option and test macro were undocumented.

Close #3876.

  • Property mode set to 100644
File size: 777 bytes
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 <tmacros.h>
15
16/* functions */
17
18rtems_task Init(
19  rtems_task_argument argument
20);
21
22#include <timesys.h>
23
24/* configuration information */
25
26#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
27#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
28
29#define CONFIGURE_MAXIMUM_TASKS              3
30#define CONFIGURE_TICKS_PER_TIMESLICE        0
31
32#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
33
34#include <rtems/confdefs.h>
35
36/* end of include file */
Note: See TracBrowser for help on using the repository browser.