source: rtems/testsuites/mptests/mp14/system.h @ 08311cc3

4.104.114.84.95
Last change on this file since 08311cc3 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 3.3 KB
RevLine 
[ac7d5ef0]1/*  system.h
2 *
3 *  This include file contains information that is included in every
4 *  function in the test set.
5 *
[08311cc3]6 *  COPYRIGHT (c) 1989-1999.
[ac7d5ef0]7 *  On-Line Applications Research Corporation (OAR).
8 *
[98e4ebf5]9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[03f2154e]11 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]12 *
[3235ad9]13 *  $Id$
[ac7d5ef0]14 */
15
[4b374f36]16#include <tmacros.h>
[ac7d5ef0]17
[3a4ae6c]18/* functions */
[ac7d5ef0]19
[3a4ae6c]20rtems_timer_service_routine Delayed_send_event(
21  rtems_id  timer_id,
22  void     *ignored_address
23);
[ac7d5ef0]24
[3a4ae6c]25rtems_task Init(
26  rtems_task_argument argument
27);
[ac7d5ef0]28
[3a4ae6c]29rtems_task Test_task(
30  rtems_task_argument argument
31);
[ac7d5ef0]32
[3a4ae6c]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_MPTEST
54 
55#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
56#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
57 
58#define CONFIGURE_TICKS_PER_TIMESLICE   1
59#define CONFIGURE_MICROSECONDS_PER_TICK RTEMS_MILLISECONDS_TO_MICROSECONDS(1)
60
61#if ( NODE_NUMBER == 1 )
62#define CONFIGURE_MAXIMUM_TIMERS              12
63#define CONFIGURE_MAXIMUM_SEMAPHORES          1
64#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES      1
65#define CONFIGURE_MAXIMUM_PARTITIONS          1
66#elif ( NODE_NUMBER == 2 )
67#define CONFIGURE_MAXIMUM_TIMERS              2
68#endif
69
[be1c11ed]70#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
71
[9a993ed5]72#define CONFIGURE_EXTRA_TASK_STACKS         (1 * RTEMS_MINIMUM_STACK_SIZE)
73
[3a4ae6c]74#include <confdefs.h>
75
76/* variables */
77
78TEST_EXTERN rtems_id   Event_task_id[ 2 ];       /* event task ids */
79
80TEST_EXTERN rtems_id   Semaphore_task_id[ 2 ];   /* semaphore task ids */
81TEST_EXTERN rtems_name Semaphore_task_name[ 2 ]; /* semaphore task names */
82
83TEST_EXTERN rtems_id   Queue_task_id[ 3 ];       /* message queue task ids */
84TEST_EXTERN rtems_name Queue_task_name[ 3 ];     /* message queue task names */
85
86TEST_EXTERN rtems_id   Partition_task_id[ 4 ];   /* partition task ids */
87TEST_EXTERN rtems_name Partition_task_name[ 4 ]; /* partition task names */
88
89TEST_EXTERN rtems_id   Partition_id[ 3 ];    /* partition ids */
90TEST_EXTERN rtems_name Partition_name[ 3 ];  /* partition names */
91
92TEST_EXTERN rtems_id   Semaphore_id[ 3 ];    /* semaphore ids */
93TEST_EXTERN rtems_name Semaphore_name[ 3 ];  /* semaphore names */
94
95TEST_EXTERN rtems_id   Queue_id[ 3 ];        /* message queue ids */
96TEST_EXTERN rtems_name Queue_name[ 3 ];      /* message queue names */
97
98TEST_EXTERN rtems_id   Task_id[ 4 ];         /* remote event task ids */
99TEST_EXTERN rtems_name Task_name[ 4 ];       /* remote event task names */
100
101TEST_EXTERN rtems_id   Timer_id[ 4 ];         /* event timer ids */
102TEST_EXTERN rtems_name Timer_name[ 4 ];       /* event timer names */
103
104TEST_EXTERN rtems_unsigned32 Msg_buffer[ 4 ][ 4 ];
105
106extern rtems_multiprocessing_table Multiprocessing_configuration;
107
108TEST_EXTERN volatile rtems_boolean Stop_Test;
109TEST_EXTERN rtems_id timer_id;
110
111#define EVENT_TASK_DOT_COUNT        100
112#define EVENT_SEND_DOT_COUNT        100
113#define DELAYED_EVENT_DOT_COUNT     1000
114#define MESSAGE_DOT_COUNT           200
115#define PARTITION_DOT_COUNT         200
116#define SEMAPHORE_DOT_COUNT         200
[ac7d5ef0]117
118/* end of include file */
Note: See TracBrowser for help on using the repository browser.