summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/eventmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/src/eventmp.c')
-rw-r--r--cpukit/rtems/src/eventmp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpukit/rtems/src/eventmp.c b/cpukit/rtems/src/eventmp.c
index e2e43fcd0d..dd208406e2 100644
--- a/cpukit/rtems/src/eventmp.c
+++ b/cpukit/rtems/src/eventmp.c
@@ -113,7 +113,6 @@ void _Event_MP_Process_packet (
)
{
Event_MP_Packet *the_packet;
- Thread_Control *the_thread;
the_packet = (Event_MP_Packet *) the_packet_prefix;
@@ -132,13 +131,15 @@ void _Event_MP_Process_packet (
);
break;
- case EVENT_MP_SEND_RESPONSE:
+ case EVENT_MP_SEND_RESPONSE: {
+ Thread_Control *the_thread;
the_thread = _MPCI_Process_response( the_packet_prefix );
_MPCI_Return_packet( the_packet_prefix );
break;
+ }
}
}