Changeset f5674938 in rtems for c/src/libchip
- Timestamp:
- 04/22/96 16:49:25 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 34f3d17
- Parents:
- 8faca06
- Location:
- c/src/libchip/shmdr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libchip/shmdr/init.c
r8faca06 rf5674938 25 25 26 26 #include <string.h> /* memset() */ 27 #include <stdlib.h> /* malloc() */ 28 #include <assert.h> 27 29 28 30 /* … … 54 56 Shm_Get_configuration( Shm_Local_node, &Shm_Configuration ); 55 57 58 Shm_Interrupt_table = (Shm_Interrupt_information *) malloc( 59 sizeof(Shm_Interrupt_information) * (Shm_Maximum_nodes + 1) 60 ); 61 62 assert( Shm_Interrupt_table ); 63 64 56 65 Shm_Receive_message_count = 0; 57 66 Shm_Null_message_count = 0; -
c/src/libchip/shmdr/shm_driver.h
r8faca06 rf5674938 431 431 432 432 SHM_EXTERN shm_config_table *Shm_Configuration; 433 SHM_EXTERN Shm_Interrupt_information Shm_Interrupt_table[16];433 SHM_EXTERN Shm_Interrupt_information *Shm_Interrupt_table; 434 434 SHM_EXTERN Shm_Node_status_control *Shm_Node_statuses; 435 435 SHM_EXTERN Shm_Locked_queue_Control *Shm_Locked_queues;
Note: See TracChangeset
for help on using the changeset viewer.