1 | /* sptables.h |
---|
2 | * |
---|
3 | * This include file contains the executive's pre-initialized tables |
---|
4 | * used when in a single processor configuration. |
---|
5 | * |
---|
6 | * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994. |
---|
7 | * On-Line Applications Research Corporation (OAR). |
---|
8 | * All rights assigned to U.S. Government, 1994. |
---|
9 | * |
---|
10 | * This material may be reproduced by or for the U.S. Government pursuant |
---|
11 | * to the copyright license under the clause at DFARS 252.227-7013. This |
---|
12 | * notice must appear in all copies of this file and its derivatives. |
---|
13 | * |
---|
14 | * $Id$ |
---|
15 | */ |
---|
16 | |
---|
17 | #ifndef __RTEMS_SPTABLES_h |
---|
18 | #define __RTEMS_SPTABLES_h |
---|
19 | |
---|
20 | #ifdef __cplusplus |
---|
21 | extern "C" { |
---|
22 | #endif |
---|
23 | |
---|
24 | #include <rtems/config.h> |
---|
25 | |
---|
26 | /* |
---|
27 | * This is the default Multiprocessing Configuration Table. |
---|
28 | * It is used in single processor configurations. |
---|
29 | */ |
---|
30 | |
---|
31 | const rtems_multiprocessing_table |
---|
32 | _Configuration_Default_multiprocessing_table = { |
---|
33 | 1, /* local node number */ |
---|
34 | 1, /* maximum number nodes in system */ |
---|
35 | 0, /* maximum number global objects */ |
---|
36 | 0, /* maximum number proxies */ |
---|
37 | NULL, /* pointer to MPCI address table */ |
---|
38 | }; |
---|
39 | |
---|
40 | /* |
---|
41 | * This is the version string. |
---|
42 | */ |
---|
43 | |
---|
44 | const char _RTEMS_version[] = |
---|
45 | "RTEMS RELEASE V3.2.0 (" CPU_NAME "/" RTEMS_MODEL_NAME ")"; |
---|
46 | |
---|
47 | |
---|
48 | /* |
---|
49 | * This table is used by the single entry point code. |
---|
50 | */ |
---|
51 | |
---|
52 | const void * _Entry_points[ NUMBER_OF_ENTRY_POINTS + 1 ] = { |
---|
53 | (void *) rtems_initialize_executive, /* 0 */ |
---|
54 | (void *) rtems_initialize_executive_early, /* 1 */ |
---|
55 | (void *) rtems_initialize_executive_late, /* 2 */ |
---|
56 | (void *) rtems_shutdown_executive, /* 3 */ |
---|
57 | (void *) rtems_task_create, /* 4 */ |
---|
58 | (void *) rtems_task_ident, /* 5 */ |
---|
59 | (void *) rtems_task_start, /* 6 */ |
---|
60 | (void *) rtems_task_restart, /* 7 */ |
---|
61 | (void *) rtems_task_delete, /* 8 */ |
---|
62 | (void *) rtems_task_suspend, /* 9 */ |
---|
63 | (void *) rtems_task_resume, /* 10 */ |
---|
64 | (void *) rtems_task_set_priority, /* 11 */ |
---|
65 | (void *) rtems_task_mode, /* 12 */ |
---|
66 | (void *) rtems_task_get_note, /* 13 */ |
---|
67 | (void *) rtems_task_set_note, /* 14 */ |
---|
68 | (void *) rtems_task_wake_after, /* 15 */ |
---|
69 | (void *) rtems_task_wake_when, /* 16 */ |
---|
70 | (void *) rtems_interrupt_catch, /* 17 */ |
---|
71 | (void *) rtems_clock_set, /* 18 */ |
---|
72 | (void *) rtems_clock_get, /* 19 */ |
---|
73 | (void *) rtems_clock_tick, /* 20 */ |
---|
74 | (void *) rtems_extension_create, /* 21 */ |
---|
75 | (void *) rtems_extension_ident, /* 22 */ |
---|
76 | (void *) rtems_extension_delete, /* 23 */ |
---|
77 | (void *) rtems_timer_create, /* 24 */ |
---|
78 | (void *) rtems_timer_ident, /* 25 */ |
---|
79 | (void *) rtems_timer_cancel, /* 26 */ |
---|
80 | (void *) rtems_timer_delete, /* 27 */ |
---|
81 | (void *) rtems_timer_fire_after, /* 28 */ |
---|
82 | (void *) rtems_timer_fire_when, /* 29 */ |
---|
83 | (void *) rtems_timer_reset, /* 30 */ |
---|
84 | (void *) rtems_semaphore_create, /* 31 */ |
---|
85 | (void *) rtems_semaphore_ident, /* 32 */ |
---|
86 | (void *) rtems_semaphore_delete, /* 33 */ |
---|
87 | (void *) rtems_semaphore_obtain, /* 34 */ |
---|
88 | (void *) rtems_semaphore_release, /* 35 */ |
---|
89 | (void *) rtems_message_queue_create, /* 36 */ |
---|
90 | (void *) rtems_message_queue_ident, /* 37 */ |
---|
91 | (void *) rtems_message_queue_delete, /* 38 */ |
---|
92 | (void *) rtems_message_queue_send, /* 39 */ |
---|
93 | (void *) rtems_message_queue_urgent, /* 40 */ |
---|
94 | (void *) rtems_message_queue_broadcast, /* 41 */ |
---|
95 | (void *) rtems_message_queue_receive, /* 42 */ |
---|
96 | (void *) rtems_message_queue_flush, /* 43 */ |
---|
97 | (void *) rtems_event_send, /* 44 */ |
---|
98 | (void *) rtems_event_receive, /* 45 */ |
---|
99 | (void *) rtems_signal_catch, /* 46 */ |
---|
100 | (void *) rtems_signal_send, /* 47 */ |
---|
101 | (void *) rtems_partition_create, /* 48 */ |
---|
102 | (void *) rtems_partition_ident, /* 49 */ |
---|
103 | (void *) rtems_partition_delete, /* 50 */ |
---|
104 | (void *) rtems_partition_get_buffer, /* 51 */ |
---|
105 | (void *) rtems_partition_return_buffer, /* 52 */ |
---|
106 | (void *) rtems_region_create, /* 53 */ |
---|
107 | (void *) rtems_region_extend, /* 54 */ |
---|
108 | (void *) rtems_region_ident, /* 55 */ |
---|
109 | (void *) rtems_region_delete, /* 56 */ |
---|
110 | (void *) rtems_region_get_segment, /* 57 */ |
---|
111 | (void *) rtems_region_get_segment_size, /* 58 */ |
---|
112 | (void *) rtems_region_return_segment, /* 59 */ |
---|
113 | (void *) rtems_port_create, /* 60 */ |
---|
114 | (void *) rtems_port_ident, /* 61 */ |
---|
115 | (void *) rtems_port_delete, /* 62 */ |
---|
116 | (void *) rtems_port_external_to_internal, /* 63 */ |
---|
117 | (void *) rtems_port_internal_to_external, /* 64 */ |
---|
118 | (void *) rtems_io_initialize, /* 65 */ |
---|
119 | (void *) rtems_io_open, /* 66 */ |
---|
120 | (void *) rtems_io_close, /* 67 */ |
---|
121 | (void *) rtems_io_read, /* 68 */ |
---|
122 | (void *) rtems_io_write, /* 69 */ |
---|
123 | (void *) rtems_io_control, /* 70 */ |
---|
124 | (void *) rtems_fatal_error_occurred, /* 71 */ |
---|
125 | (void *) rtems_rate_monotonic_create, /* 72 */ |
---|
126 | (void *) rtems_rate_monotonic_ident, /* 73 */ |
---|
127 | (void *) rtems_rate_monotonic_delete, /* 74 */ |
---|
128 | (void *) rtems_rate_monotonic_cancel, /* 75 */ |
---|
129 | (void *) rtems_rate_monotonic_period, /* 76 */ |
---|
130 | (void *) rtems_multiprocessing_announce, /* 77 */ |
---|
131 | (void *) rtems_debug_enable, /* 78 */ |
---|
132 | (void *) rtems_debug_disable /* 79 */ |
---|
133 | }; |
---|
134 | |
---|
135 | #ifdef __cplusplus |
---|
136 | } |
---|
137 | #endif |
---|
138 | |
---|
139 | #endif |
---|
140 | /* end of include file */ |
---|