source: rtems/testsuites/sptests/spintrcritical21/system.h @ 4984ee4

4.115
Last change on this file since 4984ee4 was 4984ee4, checked in by Sebastian Huber <sebastian.huber@…>, on 09/09/14 at 15:13:51

sptests/sp39: Convert to sptests/spintrcritical21

Use interrupt critical section test support. Do not print end of test
message in case of failure.

  • Property mode set to 100644
File size: 943 bytes
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-2007.
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
22/* configuration information */
23
24#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
25#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
26
27#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
28
29#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
30
31#define CONFIGURE_MICROSECONDS_PER_TICK   1000
32
33#define CONFIGURE_MAXIMUM_TASKS             2
34#define CONFIGURE_MAXIMUM_TIMERS            1
35#define CONFIGURE_MAXIMUM_USER_EXTENSIONS   1
36
37#include <rtems/confdefs.h>
38
39/* end of include file */
Note: See TracBrowser for help on using the repository browser.