summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-06-05 10:34:05 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-06-07 17:02:26 +0200
commitc398c6603a85633af04e314993ee085a033e0c58 (patch)
tree7d89791831489a6c38862d0b7a07dcd7c7380910
parentscore: Move thread dispatch content to new file (diff)
downloadrtems-c398c6603a85633af04e314993ee085a033e0c58.tar.bz2
score: Align _Objects_Get_isr_disable()
Align ISR disable/enable sequence in _Objects_Get_isr_disable() with thread dispatch disable/enable sequence in _Objects_Get().
-rw-r--r--cpukit/score/src/objectgetisr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/score/src/objectgetisr.c b/cpukit/score/src/objectgetisr.c
index 4a281c2b23..9eeee3cc71 100644
--- a/cpukit/score/src/objectgetisr.c
+++ b/cpukit/score/src/objectgetisr.c
@@ -43,8 +43,8 @@ Objects_Control *_Objects_Get_isr_disable(
index = id - information->minimum_id + 1;
- _ISR_Disable( level );
if ( information->maximum >= index ) {
+ _ISR_Disable( level );
if ( (the_object = information->local_table[ index ]) != NULL ) {
*location = OBJECTS_LOCAL;
*level_p = level;
@@ -54,7 +54,6 @@ Objects_Control *_Objects_Get_isr_disable(
*location = OBJECTS_ERROR;
return NULL;
}
- _ISR_Enable( level );
*location = OBJECTS_ERROR;
#if defined(RTEMS_MULTIPROCESSING)