Changeset 3a4ae6c in rtems for c/src/lib/libbsp/shmdr
- 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/lib/libbsp/shmdr
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/shmdr/init.c
r5072b07 r3a4ae6c 4 4 * driver initialization routine. 5 5 * 6 * Input parameters: 7 * configuration - address of configuration table 6 * Input parameters: NONE 8 7 * 9 8 * Output parameters: NONE … … 34 33 rtems_extensions_table MPCI_Shm_extensions; 35 34 36 rtems_mpci_entry Shm_Initialization( 37 rtems_configuration_table *configuration, 38 rtems_cpu_table *cpu_configuration, 39 rtems_multiprocessing_table *mp_configuration 40 41 ) 35 rtems_mpci_entry Shm_Initialization( void ) 36 42 37 { 43 38 rtems_unsigned32 i, all_initialized; … … 47 42 rtems_unsigned32 extension_id; /* for installation of MPCI_Fatal */ 48 43 rtems_unsigned32 remaining_memory; 44 /* XXX these should use "public" methods to set their values.... */ 45 rtems_configuration_table *configuration = _Configuration_Table; 46 rtems_multiprocessing_table *mp_configuration = _Configuration_MP_table; 49 47 50 48 Shm_RTEMS_Configuration = configuration; -
c/src/lib/libbsp/shmdr/mpci.h
r5072b07 r3a4ae6c 16 16 */ 17 17 18 #ifndef __ MPCI_h19 #define __ MPCI_h18 #ifndef __SHM_MPCI_h 19 #define __SHM_MPCI_h 20 20 21 21 #ifdef __cplusplus -
c/src/lib/libbsp/shmdr/shm.h
r5072b07 r3a4ae6c 494 494 ); 495 495 496 rtems_mpci_entry Shm_Initialization( 497 rtems_configuration_table *configuration, 498 rtems_cpu_table *cpu_configuration, 499 rtems_multiprocessing_table *mp_configuration 500 ); 496 rtems_mpci_entry Shm_Initialization( void ); 501 497 502 498 rtems_mpci_entry Shm_Receive_packet( -
c/src/lib/libbsp/shmdr/shm_driver.h
r5072b07 r3a4ae6c 494 494 ); 495 495 496 rtems_mpci_entry Shm_Initialization( 497 rtems_configuration_table *configuration, 498 rtems_cpu_table *cpu_configuration, 499 rtems_multiprocessing_table *mp_configuration 500 ); 496 rtems_mpci_entry Shm_Initialization( void ); 501 497 502 498 rtems_mpci_entry Shm_Receive_packet(
Note: See TracChangeset
for help on using the changeset viewer.