summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectmp.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-24 15:40:48 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-29 13:21:31 +0200
commit3feca902a2e2dac8e07637be6f5a68524a76f85a (patch)
tree6c1fc701bd5923cf8c8886a7891bbd8e305b6979 /cpukit/score/src/objectmp.c
parentscore: Fix MPCI receive server workspace size (diff)
downloadrtems-3feca902a2e2dac8e07637be6f5a68524a76f85a.tar.bz2
score: Fix _Objects_MP_Is_remote()
Bug introduced by be8897644043e4378db7add02c3c9e1ac7fde563. Update #2555.
Diffstat (limited to 'cpukit/score/src/objectmp.c')
-rw-r--r--cpukit/score/src/objectmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/objectmp.c b/cpukit/score/src/objectmp.c
index be55fa780b..c8f431fa85 100644
--- a/cpukit/score/src/objectmp.c
+++ b/cpukit/score/src/objectmp.c
@@ -269,7 +269,7 @@ void _Objects_MP_Is_remote (
the_global_object = (Objects_MP_Control *) the_node;
if ( _Objects_Are_ids_equal( the_global_object->Object.id, the_id ) ) {
- _Thread_Unnest_dispatch();
+ _Objects_Allocator_unlock();
*location = OBJECTS_REMOTE;
*the_object = (Objects_Control *) the_global_object;
return;