source: rtems/testsuites/samples/capture/system.h @ 3a9d9e1

4.115
Last change on this file since 3a9d9e1 was 3a6530f9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/24/09 at 05:50:35

Remove test*().
Add setup_tasks_to_watch().

  • Property mode set to 100644
File size: 2.2 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-1997.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may in
10 *  the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#include <rtems.h>
17
18/* functions */
19
20rtems_task Init(
21  rtems_task_argument argument
22);
23
24rtems_task test_task(
25  rtems_task_argument my_number
26);
27
28void
29destory_all_tasks(
30  const char *who
31);
32
33bool status_code_bad(
34  rtems_status_code status_code
35);
36
37extern void setup_tasks_to_watch(void);
38
39/* configuration information */
40
41#include <bsp.h> /* for device driver prototypes */
42
43#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
44#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
45
46#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
47
48#define TASK_ALLOCATION_SIZE     (5)
49#define CONFIGURE_MAXIMUM_TASKS  rtems_resource_unlimited(TASK_ALLOCATION_SIZE)
50#define CONFIGURE_EXTRA_TASK_STACKS (75 * RTEMS_MINIMUM_STACK_SIZE)
51
52#define CONFIGURE_MAXIMUM_USER_EXTENSIONS (5)
53
54#include <rtems/confdefs.h>
55
56/*
57 * Keep track of the task id's created, use a large array.
58 */
59
60#define MAX_TASKS         (1000)
61#define TASK_INDEX_OFFSET (1)
62
63extern rtems_id task_id[MAX_TASKS];
64
65/*
66 * Increment the task name.
67 */
68
69#define NEXT_TASK_NAME(c1, c2, c3, c4)  \
70                 if (c4 == '9') {       \
71                   if (c3 == '9') {     \
72                     if (c2 == 'z') {   \
73                       if (c1 == 'z') { \
74                         printf("not enough task letters for names !!!\n"); \
75                         exit( 1 );     \
76                       } else           \
77                         c1++;          \
78                       c2 = 'a';        \
79                     } else             \
80                      c2++;             \
81                     c3 = '0';          \
82                   } else               \
83                     c3++;              \
84                   c4 = '0';            \
85                 }                      \
86                 else                   \
87                   c4++                 \
88
89
90/* end of include file */
Note: See TracBrowser for help on using the repository browser.