source: rtems/testsuites/smptests/smp03/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.6 KB
Line 
1/*
2 *  COPYRIGHT (c) 1989-2011.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.org/license/LICENSE.
8 */
9
10#include "tmacros.h"
11#include "test_support.h"
12
13/* functions */
14
15rtems_task Init(
16  rtems_task_argument argument
17);
18
19rtems_task Test_task(
20  rtems_task_argument argument
21);
22
23/* configuration information */
24
25#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
26#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
27
28#define CONFIGURE_MAXIMUM_PROCESSORS   4
29
30#define CONFIGURE_MAXIMUM_TASKS            \
31    (1 + CONFIGURE_MAXIMUM_PROCESSORS)
32
33#define CONFIGURE_MAXIMUM_SEMAPHORES 1
34
35#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
36
37#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
38#define CONFIGURE_INIT_TASK_STACK_SIZE \
39    (3 * CONFIGURE_MINIMUM_TASK_STACK_SIZE)
40
41#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
42
43#define CONFIGURE_INIT_TASK_PRIORITY        5
44#define CONFIGURE_INIT_TASK_INITIAL_MODES   RTEMS_PREEMPT
45
46#include <rtems/confdefs.h>
47
48
49/* global variables */
50
51/*
52 *  Keep the names and IDs in global variables so another task can use them.
53 */
54
55TEST_EXTERN volatile bool TaskRan[ CONFIGURE_MAXIMUM_PROCESSORS + 1 ];
56
57/*
58 *  Keep the names and IDs in global variables so another task can use them.
59 */
60void Loop(void);
61void PrintTaskInfo(
62  const char *task_name
63);
64
65TEST_EXTERN volatile bool  TestFinished;
66
67/*
68 *  Handy macros and static inline functions
69 */
70
71/*
72 *  Macro to hide the ugliness of printing the time.
73 */
74
75/* end of include file */
Note: See TracBrowser for help on using the repository browser.