source: rtems/testsuites/mptests/mp14/system.h @ 3c48599

4.104.114.84.95
Last change on this file since 3c48599 was d7a0857, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:53:31

2003-09-04 Joel Sherrill <joel@…>

  • mp01/init.c, mp01/system.h, mp01/task1.c, mp01/node1/mp01.doc, mp01/node2/mp01.doc, mp02/init.c, mp02/system.h, mp02/task1.c, mp02/node1/mp02.doc, mp02/node2/mp02.doc, mp03/delay.c, mp03/init.c, mp03/system.h, mp03/task1.c, mp03/node1/mp03.doc, mp03/node2/mp03.doc, mp04/init.c, mp04/system.h, mp04/task1.c, mp04/node1/mp04.doc, mp04/node2/mp04.doc, mp05/asr.c, mp05/init.c, mp05/system.h, mp05/task1.c, mp05/node1/mp05.doc, mp05/node2/mp05.doc, mp06/init.c, mp06/system.h, mp06/task1.c, mp06/node1/mp06.doc, mp06/node2/mp06.doc, mp07/init.c, mp07/system.h, mp07/task1.c, mp07/node1/mp07.doc, mp07/node2/mp07.doc, mp08/init.c, mp08/system.h, mp08/task1.c, mp08/node1/mp08.doc, mp08/node2/mp08.doc, mp09/init.c, mp09/recvmsg.c, mp09/sendmsg.c, mp09/system.h, mp09/task1.c, mp09/node1/mp09.doc, mp09/node2/mp09.doc, mp10/init.c, mp10/system.h, mp10/task1.c, mp10/task2.c, mp10/task3.c, mp10/node1/mp10.doc, mp10/node2/mp10.doc, mp11/init.c, mp11/system.h, mp11/node1/mp11.doc, mp11/node2/mp11.doc, mp12/init.c, mp12/system.h, mp12/node1/mp12.doc, mp12/node2/mp12.doc, mp13/init.c, mp13/system.h, mp13/task1.c, mp13/task2.c, mp13/node1/mp13.doc, mp13/node2/mp13.doc, mp14/delay.c, mp14/evtask1.c, mp14/evtmtask.c, mp14/exit.c, mp14/init.c, mp14/msgtask1.c, mp14/pttask1.c, mp14/smtask1.c, mp14/system.h, mp14/node1/mp14.doc, mp14/node2/mp14.doc: URL for license changed.
  • Property mode set to 100644
File size: 3.3 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-1999.
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.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#include <tmacros.h>
17
18/* functions */
19
20rtems_timer_service_routine Delayed_send_event(
21  rtems_id  timer_id,
22  void     *ignored_address
23);
24
25rtems_task Init(
26  rtems_task_argument argument
27);
28
29rtems_task Test_task(
30  rtems_task_argument argument
31);
32
33rtems_task Delayed_events_task(
34  rtems_task_argument argument
35);
36
37rtems_task Message_queue_task(
38  rtems_task_argument index
39);
40
41rtems_task Partition_task(
42  rtems_task_argument argument
43);
44
45rtems_task Semaphore_task(
46  rtems_task_argument argument
47);
48
49void Exit_test( void );
50
51/* configuration information */
52 
53#define CONFIGURE_MP_APPLICATION
54 
55#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
56#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
57 
58#define CONFIGURE_TICKS_PER_TIMESLICE   1
59#define CONFIGURE_MICROSECONDS_PER_TICK RTEMS_MILLISECONDS_TO_MICROSECONDS(1)
60
61#define CONFIGURE_MAXIMUM_TASKS               5
62#if ( NODE_NUMBER == 1 )
63#define CONFIGURE_MAXIMUM_TIMERS              12
64#define CONFIGURE_MAXIMUM_SEMAPHORES          1
65#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES      1
66#define CONFIGURE_MAXIMUM_PARTITIONS          1
67#elif ( NODE_NUMBER == 2 )
68#define CONFIGURE_MAXIMUM_TIMERS              2
69#endif
70
71#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
72
73#define CONFIGURE_EXTRA_TASK_STACKS         (1 * RTEMS_MINIMUM_STACK_SIZE)
74
75#include <confdefs.h>
76
77/* variables */
78
79TEST_EXTERN rtems_id   Event_task_id[ 2 ];       /* event task ids */
80
81TEST_EXTERN rtems_id   Semaphore_task_id[ 2 ];   /* semaphore task ids */
82TEST_EXTERN rtems_name Semaphore_task_name[ 2 ]; /* semaphore task names */
83
84TEST_EXTERN rtems_id   Queue_task_id[ 3 ];       /* message queue task ids */
85TEST_EXTERN rtems_name Queue_task_name[ 3 ];     /* message queue task names */
86
87TEST_EXTERN rtems_id   Partition_task_id[ 4 ];   /* partition task ids */
88TEST_EXTERN rtems_name Partition_task_name[ 4 ]; /* partition task names */
89
90TEST_EXTERN rtems_id   Partition_id[ 3 ];    /* partition ids */
91TEST_EXTERN rtems_name Partition_name[ 3 ];  /* partition names */
92
93TEST_EXTERN rtems_id   Semaphore_id[ 3 ];    /* semaphore ids */
94TEST_EXTERN rtems_name Semaphore_name[ 3 ];  /* semaphore names */
95
96TEST_EXTERN rtems_id   Queue_id[ 3 ];        /* message queue ids */
97TEST_EXTERN rtems_name Queue_name[ 3 ];      /* message queue names */
98
99TEST_EXTERN rtems_id   Task_id[ 4 ];         /* remote event task ids */
100TEST_EXTERN rtems_name Task_name[ 4 ];       /* remote event task names */
101
102TEST_EXTERN rtems_id   Timer_id[ 4 ];         /* event timer ids */
103TEST_EXTERN rtems_name Timer_name[ 4 ];       /* event timer names */
104
105TEST_EXTERN rtems_unsigned32 Msg_buffer[ 4 ][ 4 ];
106
107extern rtems_multiprocessing_table Multiprocessing_configuration;
108
109TEST_EXTERN volatile rtems_boolean Stop_Test;
110TEST_EXTERN rtems_id timer_id;
111
112#define EVENT_TASK_DOT_COUNT        100
113#define EVENT_SEND_DOT_COUNT        100
114#define DELAYED_EVENT_DOT_COUNT     1000
115#define MESSAGE_DOT_COUNT           200
116#define PARTITION_DOT_COUNT         200
117#define SEMAPHORE_DOT_COUNT         200
118
119/* end of include file */
Note: See TracBrowser for help on using the repository browser.