Changeset 9928d08 in rtems
- Timestamp:
- 12/13/00 22:13:32 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7a677fd7
- Parents:
- 797d88ba
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/ChangeLog
r797d88ba r9928d08 1 2 2000-12-13 Joel Sherrill <joel@OARcorp.com> 3 4 * include/rtems/score/isr.h, src/isr.c: Allocate it from the 5 workspace rather than explicitly declaring it. This allows 6 the size to be a non-constant from the perspective of score/cpu. 1 7 2 8 2000-12-01 Joel Sherrill <joel@OARcorp.com> -
c/src/exec/score/include/rtems/score/isr.h
r797d88ba r9928d08 89 89 */ 90 90 91 SCORE_EXTERN ISR_Handler_entry _ISR_Vector_table[ ISR_NUMBER_OF_VECTORS ];91 SCORE_EXTERN ISR_Handler_entry *_ISR_Vector_table; 92 92 93 93 /* -
c/src/exec/score/src/isr.c
r797d88ba r9928d08 43 43 ); 44 44 45 _ISR_Vector_table = _Workspace_Allocate_or_fatal_error( 46 sizeof(ISR_Handler_entry) * ISR_NUMBER_OF_VECTORS 47 ); 48 45 49 _CPU_Interrupt_stack_low = 46 50 _Workspace_Allocate_or_fatal_error( _CPU_Table.interrupt_stack_size ); -
cpukit/score/ChangeLog
r797d88ba r9928d08 1 2 2000-12-13 Joel Sherrill <joel@OARcorp.com> 3 4 * include/rtems/score/isr.h, src/isr.c: Allocate it from the 5 workspace rather than explicitly declaring it. This allows 6 the size to be a non-constant from the perspective of score/cpu. 1 7 2 8 2000-12-01 Joel Sherrill <joel@OARcorp.com> -
cpukit/score/include/rtems/score/isr.h
r797d88ba r9928d08 89 89 */ 90 90 91 SCORE_EXTERN ISR_Handler_entry _ISR_Vector_table[ ISR_NUMBER_OF_VECTORS ];91 SCORE_EXTERN ISR_Handler_entry *_ISR_Vector_table; 92 92 93 93 /* -
cpukit/score/src/isr.c
r797d88ba r9928d08 43 43 ); 44 44 45 _ISR_Vector_table = _Workspace_Allocate_or_fatal_error( 46 sizeof(ISR_Handler_entry) * ISR_NUMBER_OF_VECTORS 47 ); 48 45 49 _CPU_Interrupt_stack_low = 46 50 _Workspace_Allocate_or_fatal_error( _CPU_Table.interrupt_stack_size );
Note: See TracChangeset
for help on using the changeset viewer.