2006-11-17 Joel Sherrill <joel@OARcorp.com>

* score/src/coresemseize.c: Add missing ISR enable.
This commit is contained in:
Joel Sherrill
2006-11-17 22:58:21 +00:00
parent 1d4747f226
commit b5779dc1a3
2 changed files with 5 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2006-11-17 Joel Sherrill <joel@OARcorp.com>
* score/src/coresemseize.c: Add missing ISR enable.
2006-11-17 Joel Sherrill <joel@OARcorp.com>
* score/src/heapwalk.c: Use printk not printf.

View File

@@ -75,6 +75,7 @@ void _CORE_semaphore_Seize(
executing->Wait.return_code = CORE_SEMAPHORE_STATUS_UNSATISFIED_NOWAIT;
return;
case CORE_SEMAPHORE_BAD_TIMEOUT:
_ISR_Enable( level );
executing->Wait.return_code = CORE_SEMAPHORE_BAD_TIMEOUT_VALUE;
return;
case CORE_SEMAPHORE_BLOCK_FOREVER: