Changeset f692d7e0 in rtems
- Timestamp:
- 01/08/01 18:12:27 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- f8b891d
- Parents:
- b03f4f2
- Location:
- c/src/librtems++
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/librtems++/ChangeLog
rb03f4f2 rf692d7e0 1 2001-01-08 Joel Sherrill <joel@OARcorp.com> 2 3 * src/rtemsInterrupt.cc: Allocated interrupt_table since since 4 cannot be determined without CPU model information. 5 1 6 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
c/src/librtems++/src/rtemsInterrupt.cc
rb03f4f2 rf692d7e0 28 28 */ 29 29 30 static rtemsInterrupt * interrupt_table[CPU_INTERRUPT_NUMBER_OF_VECTORS];30 static rtemsInterrupt **interrupt_table; 31 31 32 32 // has the table been initialised … … 36 36 rtemsInterrupt 37 37 */ 38 39 #include <stdlib.h> /* for malloc */ 38 40 39 41 rtemsInterrupt::rtemsInterrupt() … … 45 47 if (!initialised) 46 48 { 49 interrupt_table = (rtemsInterrupt **) 50 malloc(sizeof(rtemsInterrupt *) * CPU_INTERRUPT_NUMBER_OF_VECTORS); 47 51 for (rtems_vector_number vec = 0; 48 52 vec < CPU_INTERRUPT_NUMBER_OF_VECTORS;
Note: See TracChangeset
for help on using the changeset viewer.