changed call to _ISR_Enable() to _ISR_Set_level() in _Thread_Handler.

_ISR_Enable() takes the magic cookie expected by the cpu's status register
instead of a simple isr level.
This commit is contained in:
Joel Sherrill
1996-05-28 13:24:58 +00:00
parent e6d4b1d086
commit cb9637246a
2 changed files with 2 additions and 2 deletions

View File

@@ -1032,7 +1032,7 @@ void _Thread_Handler( void )
*/ */
level = executing->Start.isr_level; level = executing->Start.isr_level;
_ISR_Enable(level); _ISR_Set_level(level);
/* /*
* Take care that 'begin' extensions get to complete before * Take care that 'begin' extensions get to complete before

View File

@@ -1032,7 +1032,7 @@ void _Thread_Handler( void )
*/ */
level = executing->Start.isr_level; level = executing->Start.isr_level;
_ISR_Enable(level); _ISR_Set_level(level);
/* /*
* Take care that 'begin' extensions get to complete before * Take care that 'begin' extensions get to complete before