OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [tests/] [mptests/] [mp14/] [system.h] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  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.OARcorp.com/rtems/license.html.
12
 *
13
 *  $Id: system.h,v 1.2 2001-09-27 12:02:23 chris Exp $
14
 */
15
 
16
#include <tmacros.h>
17
 
18
/* functions */
19
 
20
rtems_timer_service_routine Delayed_send_event(
21
  rtems_id  timer_id,
22
  void     *ignored_address
23
);
24
 
25
rtems_task Init(
26
  rtems_task_argument argument
27
);
28
 
29
rtems_task Test_task(
30
  rtems_task_argument argument
31
);
32
 
33
rtems_task Delayed_events_task(
34
  rtems_task_argument argument
35
);
36
 
37
rtems_task Message_queue_task(
38
  rtems_task_argument index
39
);
40
 
41
rtems_task Partition_task(
42
  rtems_task_argument argument
43
);
44
 
45
rtems_task Semaphore_task(
46
  rtems_task_argument argument
47
);
48
 
49
void 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
 
79
TEST_EXTERN rtems_id   Event_task_id[ 2 ];       /* event task ids */
80
 
81
TEST_EXTERN rtems_id   Semaphore_task_id[ 2 ];   /* semaphore task ids */
82
TEST_EXTERN rtems_name Semaphore_task_name[ 2 ]; /* semaphore task names */
83
 
84
TEST_EXTERN rtems_id   Queue_task_id[ 3 ];       /* message queue task ids */
85
TEST_EXTERN rtems_name Queue_task_name[ 3 ];     /* message queue task names */
86
 
87
TEST_EXTERN rtems_id   Partition_task_id[ 4 ];   /* partition task ids */
88
TEST_EXTERN rtems_name Partition_task_name[ 4 ]; /* partition task names */
89
 
90
TEST_EXTERN rtems_id   Partition_id[ 3 ];    /* partition ids */
91
TEST_EXTERN rtems_name Partition_name[ 3 ];  /* partition names */
92
 
93
TEST_EXTERN rtems_id   Semaphore_id[ 3 ];    /* semaphore ids */
94
TEST_EXTERN rtems_name Semaphore_name[ 3 ];  /* semaphore names */
95
 
96
TEST_EXTERN rtems_id   Queue_id[ 3 ];        /* message queue ids */
97
TEST_EXTERN rtems_name Queue_name[ 3 ];      /* message queue names */
98
 
99
TEST_EXTERN rtems_id   Task_id[ 4 ];         /* remote event task ids */
100
TEST_EXTERN rtems_name Task_name[ 4 ];       /* remote event task names */
101
 
102
TEST_EXTERN rtems_id   Timer_id[ 4 ];         /* event timer ids */
103
TEST_EXTERN rtems_name Timer_name[ 4 ];       /* event timer names */
104
 
105
TEST_EXTERN rtems_unsigned32 Msg_buffer[ 4 ][ 4 ];
106
 
107
extern rtems_multiprocessing_table Multiprocessing_configuration;
108
 
109
TEST_EXTERN volatile rtems_boolean Stop_Test;
110
TEST_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 */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.