Changeset 3a4ae6c in rtems for c/src/optman
- Timestamp:
- 09/11/95 19:35:39 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ced11f99
- Parents:
- 5072b07
- Location:
- c/src/optman
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/optman/rtems/no-dpmem.c
r5072b07 r3a4ae6c 14 14 15 15 #include <rtems/system.h> 16 #include <rtems/address.h> 17 #include <rtems/dpmem.h> 18 #include <rtems/object.h> 19 #include <rtems/thread.h> 16 #include <rtems/core/address.h> 17 #include <rtems/core/object.h> 18 #include <rtems/core/thread.h> 19 20 #include <rtems/rtems/status.h> 21 #include <rtems/rtems/types.h> 22 #include <rtems/rtems/dpmem.h> 20 23 21 24 void _Dual_ported_memory_Manager_initialization( … … 33 36 ) 34 37 { 35 return ( RTEMS_NOT_CONFIGURED );38 return RTEMS_NOT_CONFIGURED; 36 39 } 37 40 … … 41 44 ) 42 45 { 43 return ( RTEMS_NOT_CONFIGURED );46 return RTEMS_NOT_CONFIGURED; 44 47 } 45 48 … … 48 51 ) 49 52 { 50 return ( RTEMS_NOT_CONFIGURED );53 return RTEMS_NOT_CONFIGURED; 51 54 } 52 55 … … 57 60 ) 58 61 { 59 return ( RTEMS_NOT_CONFIGURED );62 return RTEMS_NOT_CONFIGURED; 60 63 } 61 64 … … 66 69 ) 67 70 { 68 return ( RTEMS_NOT_CONFIGURED );71 return RTEMS_NOT_CONFIGURED; 69 72 } -
c/src/optman/rtems/no-event.c
r5072b07 r3a4ae6c 14 14 15 15 #include <rtems/system.h> 16 #include <rtems/event.h> 17 #include <rtems/isr.h> 18 #include <rtems/object.h> 19 #include <rtems/options.h> 20 #include <rtems/states.h> 21 #include <rtems/thread.h> 16 #include <rtems/rtems/status.h> 17 #include <rtems/rtems/event.h> 18 #include <rtems/core/isr.h> 19 #include <rtems/core/object.h> 20 #include <rtems/rtems/options.h> 21 #include <rtems/core/states.h> 22 #include <rtems/core/thread.h> 22 23 23 24 rtems_status_code rtems_event_send( … … 26 27 ) 27 28 { 28 return ( RTEMS_NOT_CONFIGURED );29 return RTEMS_NOT_CONFIGURED; 29 30 } 30 31 … … 36 37 ) 37 38 { 38 return ( RTEMS_NOT_CONFIGURED );39 return RTEMS_NOT_CONFIGURED; 39 40 } 40 41 -
c/src/optman/rtems/no-mp.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/config.h> 18 #include <rtems/cpu.h> 19 #include <rtems/event.h> 20 #include <rtems/fatal.h> 21 #include <rtems/intthrd.h> 22 #include <rtems/message.h> 23 #include <rtems/mp.h> 24 #include <rtems/mpci.h> 25 #include <rtems/mppkt.h> 26 #include <rtems/part.h> 27 #include <rtems/sem.h> 28 #include <rtems/signal.h> 29 #include <rtems/states.h> 30 #include <rtems/tasks.h> 31 #include <rtems/thread.h> 32 #include <rtems/threadq.h> 33 #include <rtems/watchdog.h> 17 #include <rtems/rtems/status.h> 18 #include <rtems/rtems/mp.h> 19 #include <rtems/core/cpu.h> 20 #include <rtems/core/interr.h> 21 #include <rtems/core/mpci.h> 22 #include <rtems/core/mppkt.h> 23 #include <rtems/core/states.h> 24 #include <rtems/core/thread.h> 25 #include <rtems/core/threadq.h> 26 #include <rtems/core/tqdata.h> 27 #include <rtems/core/watchdog.h> 28 #include <rtems/sysstate.h> 34 29 35 30 void _Multiprocessing_Manager_initialization ( void ) … … 41 36 } 42 37 43 Thread _Multiprocessing_Receive_server ( 44 Thread_Argument ignored38 void _MPCI_Handler_initialization( 39 MPCI_Control *users_mpci_table 45 40 ) 46 {47 }48 49 void _MPCI_Handler_initialization ( void )50 41 { 51 42 } … … 55 46 } 56 47 57 rtems_packet_prefix *_MPCI_Get_packet ( void ) 48 void _MPCI_Register_packet_processor( 49 Objects_Classes the_class, 50 MPCI_Packet_processor the_packet_processor 51 52 ) 53 { 54 } 55 56 MP_packet_Prefix *_MPCI_Get_packet ( void ) 58 57 { 59 58 return NULL; … … 61 60 62 61 void _MPCI_Return_packet ( 63 rtems_packet_prefix *the_packet62 MP_packet_Prefix *the_packet 64 63 ) 65 64 { … … 68 67 void _MPCI_Send_process_packet ( 69 68 unsigned32 destination, 70 rtems_packet_prefix *the_packet69 MP_packet_Prefix *the_packet 71 70 ) 72 71 { 73 72 } 74 73 75 rtems_status_code_MPCI_Send_request_packet (74 unsigned32 _MPCI_Send_request_packet ( 76 75 unsigned32 destination, 77 rtems_packet_prefix *the_packet,76 MP_packet_Prefix *the_packet, 78 77 States_Control extra_state 79 78 ) 80 79 { 81 return ( RTEMS_NOT_CONFIGURED );80 return 0; 82 81 } 83 82 84 83 void _MPCI_Send_response_packet ( 85 84 unsigned32 destination, 86 rtems_packet_prefix *the_packet85 MP_packet_Prefix *the_packet 87 86 ) 88 87 { 89 88 } 90 89 91 rtems_packet_prefix *_MPCI_Receive_packet ( void )90 MP_packet_Prefix *_MPCI_Receive_packet ( void ) 92 91 { 93 92 return NULL; … … 95 94 96 95 Thread_Control *_MPCI_Process_response ( 97 rtems_packet_prefix *the_packet96 MP_packet_Prefix *the_packet 98 97 ) 99 98 { 100 99 return NULL; 101 100 } 101 102 void _MPCI_Receive_server( void ) 103 { 104 } 105 106 void _MPCI_Announce ( void ) 107 { 108 } 109 110 /* end of file */ -
c/src/optman/rtems/no-msg.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/attr.h> 18 #include <rtems/chain.h> 17 #include <rtems/rtems/status.h> 18 #include <rtems/rtems/attr.h> 19 #include <rtems/core/chain.h> 19 20 #include <rtems/config.h> 20 #include <rtems/ isr.h>21 #include <rtems/ message.h>22 #include <rtems/ object.h>23 #include <rtems/ options.h>24 #include <rtems/ states.h>25 #include <rtems/ thread.h>26 #include <rtems/ wkspace.h>21 #include <rtems/core/isr.h> 22 #include <rtems/rtems/message.h> 23 #include <rtems/core/object.h> 24 #include <rtems/rtems/options.h> 25 #include <rtems/core/states.h> 26 #include <rtems/core/thread.h> 27 #include <rtems/core/wkspace.h> 27 28 28 29 void _Message_queue_Manager_initialization( … … 40 41 ) 41 42 { 42 return ( RTEMS_NOT_CONFIGURED );43 return RTEMS_NOT_CONFIGURED; 43 44 } 44 45 … … 49 50 ) 50 51 { 51 return ( RTEMS_NOT_CONFIGURED );52 return RTEMS_NOT_CONFIGURED; 52 53 } 53 54 … … 56 57 ) 57 58 { 58 return ( RTEMS_NOT_CONFIGURED );59 return RTEMS_NOT_CONFIGURED; 59 60 } 60 61 … … 65 66 ) 66 67 { 67 return ( RTEMS_NOT_CONFIGURED );68 return RTEMS_NOT_CONFIGURED; 68 69 } 69 70 … … 74 75 ) 75 76 { 76 return ( RTEMS_NOT_CONFIGURED );77 return RTEMS_NOT_CONFIGURED; 77 78 } 78 79 … … 84 85 ) 85 86 { 86 return ( RTEMS_NOT_CONFIGURED );87 return RTEMS_NOT_CONFIGURED; 87 88 } 88 89 … … 95 96 ) 96 97 { 97 return ( RTEMS_NOT_CONFIGURED );98 return RTEMS_NOT_CONFIGURED; 98 99 } 99 100 … … 103 104 ) 104 105 { 105 return ( RTEMS_NOT_CONFIGURED );106 return RTEMS_NOT_CONFIGURED; 106 107 } 107 108 … … 131 132 ) 132 133 { 133 return ( RTEMS_NOT_CONFIGURED );134 return RTEMS_NOT_CONFIGURED; 134 135 } -
c/src/optman/rtems/no-part.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/address.h> 17 #include <rtems/rtems/status.h> 18 #include <rtems/core/address.h> 18 19 #include <rtems/config.h> 19 #include <rtems/ object.h>20 #include <rtems/ part.h>21 #include <rtems/ thread.h>20 #include <rtems/core/object.h> 21 #include <rtems/rtems/part.h> 22 #include <rtems/core/thread.h> 22 23 23 24 void _Partition_Manager_initialization( … … 36 37 ) 37 38 { 38 return ( RTEMS_NOT_CONFIGURED );39 return RTEMS_NOT_CONFIGURED; 39 40 } 40 41 … … 45 46 ) 46 47 { 47 return ( RTEMS_NOT_CONFIGURED );48 return RTEMS_NOT_CONFIGURED; 48 49 } 49 50 … … 52 53 ) 53 54 { 54 return ( RTEMS_NOT_CONFIGURED );55 return RTEMS_NOT_CONFIGURED; 55 56 } 56 57 … … 60 61 ) 61 62 { 62 return ( RTEMS_NOT_CONFIGURED );63 return RTEMS_NOT_CONFIGURED; 63 64 } 64 65 … … 68 69 ) 69 70 { 70 return ( RTEMS_NOT_CONFIGURED );71 return RTEMS_NOT_CONFIGURED; 71 72 } -
c/src/optman/rtems/no-region.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/rtems/status.h> 17 18 #include <rtems/config.h> 18 #include <rtems/ object.h>19 #include <rtems/ options.h>20 #include <rtems/r egion.h>21 #include <rtems/ states.h>22 #include <rtems/ thread.h>19 #include <rtems/core/object.h> 20 #include <rtems/rtems/options.h> 21 #include <rtems/rtems/region.h> 22 #include <rtems/core/states.h> 23 #include <rtems/core/thread.h> 23 24 24 25 void _Region_Manager_initialization( … … 37 38 ) 38 39 { 39 return ( RTEMS_NOT_CONFIGURED );40 return RTEMS_NOT_CONFIGURED; 40 41 } 41 42 … … 45 46 ) 46 47 { 47 return ( RTEMS_NOT_CONFIGURED );48 return RTEMS_NOT_CONFIGURED; 48 49 } 49 50 … … 52 53 ) 53 54 { 54 return ( RTEMS_NOT_CONFIGURED );55 return RTEMS_NOT_CONFIGURED; 55 56 } 56 57 … … 63 64 ) 64 65 { 65 return ( RTEMS_NOT_CONFIGURED );66 return RTEMS_NOT_CONFIGURED; 66 67 } 67 68 … … 72 73 ) 73 74 { 74 return ( RTEMS_NOT_CONFIGURED );75 return RTEMS_NOT_CONFIGURED; 75 76 } 76 77 … … 80 81 ) 81 82 { 82 return ( RTEMS_NOT_CONFIGURED );83 return RTEMS_NOT_CONFIGURED; 83 84 } -
c/src/optman/rtems/no-rtmon.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/isr.h> 18 #include <rtems/object.h> 19 #include <rtems/ratemon.h> 20 #include <rtems/thread.h> 17 #include <rtems/rtems/status.h> 18 #include <rtems/core/isr.h> 19 #include <rtems/core/object.h> 20 #include <rtems/core/thread.h> 21 22 #include <rtems/rtems/types.h> 23 #include <rtems/rtems/ratemon.h> 21 24 22 25 void _Rate_monotonic_Manager_initialization( … … 31 34 ) 32 35 { 33 return ( RTEMS_NOT_CONFIGURED );36 return RTEMS_NOT_CONFIGURED; 34 37 } 35 38 … … 39 42 ) 40 43 { 41 return ( RTEMS_NOT_CONFIGURED );44 return RTEMS_NOT_CONFIGURED; 42 45 } 43 46 … … 46 49 ) 47 50 { 48 return ( RTEMS_NOT_CONFIGURED );51 return RTEMS_NOT_CONFIGURED; 49 52 } 50 53 … … 53 56 ) 54 57 { 55 return ( RTEMS_NOT_CONFIGURED );58 return RTEMS_NOT_CONFIGURED; 56 59 } 57 60 … … 61 64 ) 62 65 { 63 return ( RTEMS_NOT_CONFIGURED );66 return RTEMS_NOT_CONFIGURED; 64 67 } 65 68 -
c/src/optman/rtems/no-sem.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/attr.h> 17 #include <rtems/rtems/status.h> 18 #include <rtems/rtems/attr.h> 18 19 #include <rtems/config.h> 19 #include <rtems/ isr.h>20 #include <rtems/ object.h>21 #include <rtems/ options.h>22 #include <rtems/ sem.h>23 #include <rtems/ states.h>24 #include <rtems/ thread.h>25 #include <rtems/ threadq.h>20 #include <rtems/core/isr.h> 21 #include <rtems/core/object.h> 22 #include <rtems/rtems/options.h> 23 #include <rtems/rtems/sem.h> 24 #include <rtems/core/states.h> 25 #include <rtems/core/thread.h> 26 #include <rtems/core/threadq.h> 26 27 27 28 void _Semaphore_Manager_initialization( … … 39 40 ) 40 41 { 41 return ( RTEMS_NOT_CONFIGURED );42 return RTEMS_NOT_CONFIGURED; 42 43 } 43 44 … … 48 49 ) 49 50 { 50 return ( RTEMS_NOT_CONFIGURED );51 return RTEMS_NOT_CONFIGURED; 51 52 } 52 53 … … 55 56 ) 56 57 { 57 return ( RTEMS_NOT_CONFIGURED );58 return RTEMS_NOT_CONFIGURED; 58 59 } 59 60 … … 64 65 ) 65 66 { 66 return ( RTEMS_NOT_CONFIGURED );67 return RTEMS_NOT_CONFIGURED; 67 68 } 68 69 … … 71 72 ) 72 73 { 73 return ( RTEMS_NOT_CONFIGURED );74 return RTEMS_NOT_CONFIGURED; 74 75 } 75 76 -
c/src/optman/rtems/no-signal.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/asr.h> 18 #include <rtems/isr.h> 19 #include <rtems/modes.h> 20 #include <rtems/signal.h> 21 #include <rtems/thread.h> 17 #include <rtems/rtems/status.h> 18 #include <rtems/core/isr.h> 19 #include <rtems/core/thread.h> 22 20 21 #include <rtems/rtems/asr.h> 22 #include <rtems/rtems/modes.h> 23 #include <rtems/rtems/signal.h> 24 25 void _Signal_Manager_initialization( void ) 26 { 27 } 28 23 29 rtems_status_code rtems_signal_catch( 24 30 rtems_asr_entry handler, … … 26 32 ) 27 33 { 28 return ( RTEMS_NOT_CONFIGURED );34 return RTEMS_NOT_CONFIGURED; 29 35 } 30 36 … … 34 40 ) 35 41 { 36 return ( RTEMS_NOT_CONFIGURED );42 return RTEMS_NOT_CONFIGURED; 37 43 } 44 45 /* end of file */ -
c/src/optman/rtems/no-timer.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/object.h> 18 #include <rtems/thread.h> 19 #include <rtems/timer.h> 20 #include <rtems/tod.h> 21 #include <rtems/watchdog.h> 17 #include <rtems/rtems/status.h> 18 #include <rtems/core/object.h> 19 #include <rtems/core/thread.h> 20 #include <rtems/core/tod.h> 21 #include <rtems/core/watchdog.h> 22 23 #include <rtems/rtems/types.h> 24 #include <rtems/rtems/timer.h> 22 25 23 26 void _Timer_Manager_initialization( … … 32 35 ) 33 36 { 34 return ( RTEMS_NOT_CONFIGURED );37 return RTEMS_NOT_CONFIGURED; 35 38 } 36 39 … … 40 43 ) 41 44 { 42 return ( RTEMS_NOT_CONFIGURED );45 return RTEMS_NOT_CONFIGURED; 43 46 } 44 47 … … 47 50 ) 48 51 { 49 return ( RTEMS_NOT_CONFIGURED );52 return RTEMS_NOT_CONFIGURED; 50 53 } 51 54 … … 54 57 ) 55 58 { 56 return ( RTEMS_NOT_CONFIGURED );59 return RTEMS_NOT_CONFIGURED; 57 60 } 58 61 59 62 rtems_status_code rtems_timer_fire_after( 60 Objects_Id id,61 rtems_interval ticks,62 Timer_Serviceroutine,63 void *user_data63 Objects_Id id, 64 rtems_interval ticks, 65 rtems_timer_service_routine_entry routine, 66 void *user_data 64 67 ) 65 68 { 66 return ( RTEMS_NOT_CONFIGURED );69 return RTEMS_NOT_CONFIGURED; 67 70 } 68 71 69 72 rtems_status_code rtems_timer_fire_when( 70 Objects_Id id,71 rtems_time_of_day *wall_time,72 Timer_Serviceroutine,73 void *user_data73 Objects_Id id, 74 rtems_time_of_day *wall_time, 75 rtems_timer_service_routine_entry routine, 76 void *user_data 74 77 ) 75 78 { 76 return ( RTEMS_NOT_CONFIGURED );79 return RTEMS_NOT_CONFIGURED; 77 80 } 78 81 … … 81 84 ) 82 85 { 83 return ( RTEMS_NOT_CONFIGURED );86 return RTEMS_NOT_CONFIGURED; 84 87 } -
c/src/optman/sapi/no-ext.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/object.h> 18 #include <rtems/thread.h> 17 #include <rtems/rtems/status.h> 18 #include <rtems/rtems/support.h> 19 #include <rtems/core/object.h> 20 #include <rtems/core/thread.h> 19 21 #include <rtems/extension.h> 20 22 … … 26 28 27 29 rtems_status_code rtems_extension_create( 28 rtems_name 30 rtems_name name, 29 31 rtems_extensions_table *extension_table, 30 Objects_Id 32 Objects_Id *id 31 33 ) 32 34 { 33 return ( RTEMS_NOT_CONFIGURED );35 return RTEMS_NOT_CONFIGURED; 34 36 } 35 37 … … 39 41 ) 40 42 { 41 return ( RTEMS_NOT_CONFIGURED );43 return RTEMS_NOT_CONFIGURED; 42 44 } 43 45 … … 46 48 ) 47 49 { 48 return ( RTEMS_NOT_CONFIGURED );50 return RTEMS_NOT_CONFIGURED; 49 51 } -
c/src/optman/sapi/no-io.c
r5072b07 r3a4ae6c 15 15 16 16 #include <rtems/system.h> 17 #include <rtems/rtems/status.h> 17 18 #include <rtems/config.h> 18 19 #include <rtems/io.h> 19 #include <rtems/ isr.h>20 #include <rtems/ thread.h>20 #include <rtems/core/isr.h> 21 #include <rtems/core/thread.h> 21 22 22 23 void _IO_Initialize_all_drivers( void ) … … 47 48 ) 48 49 { 49 return ( RTEMS_NOT_CONFIGURED );50 return RTEMS_NOT_CONFIGURED; 50 51 } 51 52 … … 56 57 ) 57 58 { 58 return ( RTEMS_NOT_CONFIGURED );59 return RTEMS_NOT_CONFIGURED; 59 60 } 60 61 … … 65 66 ) 66 67 { 67 return ( RTEMS_NOT_CONFIGURED );68 return RTEMS_NOT_CONFIGURED; 68 69 } 69 70 … … 74 75 ) 75 76 { 76 return ( RTEMS_NOT_CONFIGURED );77 return RTEMS_NOT_CONFIGURED; 77 78 } 78 79 … … 83 84 ) 84 85 { 85 return ( RTEMS_NOT_CONFIGURED );86 return RTEMS_NOT_CONFIGURED; 86 87 } 87 88 … … 92 93 ) 93 94 { 94 return ( RTEMS_NOT_CONFIGURED );95 return RTEMS_NOT_CONFIGURED; 95 96 }
Note: See TracChangeset
for help on using the changeset viewer.