From 9928d0887de24d848a248798edaabc8c2586b7a4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 13 Dec 2000 22:13:32 +0000 Subject: 2000-12-13 Joel Sherrill * include/rtems/score/isr.h, src/isr.c: Allocate it from the workspace rather than explicitly declaring it. This allows the size to be a non-constant from the perspective of score/cpu. --- c/src/exec/score/src/isr.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'c/src/exec/score/src/isr.c') diff --git a/c/src/exec/score/src/isr.c b/c/src/exec/score/src/isr.c index b187fda581..16b73861cf 100644 --- a/c/src/exec/score/src/isr.c +++ b/c/src/exec/score/src/isr.c @@ -42,6 +42,10 @@ void _ISR_Handler_initialization( void ) INTERNAL_ERROR_INTERRUPT_STACK_TOO_SMALL ); + _ISR_Vector_table = _Workspace_Allocate_or_fatal_error( + sizeof(ISR_Handler_entry) * ISR_NUMBER_OF_VECTORS + ); + _CPU_Interrupt_stack_low = _Workspace_Allocate_or_fatal_error( _CPU_Table.interrupt_stack_size ); -- cgit v1.2.3