From 5250299424370c42bf270a307fae248d348720cf Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 5 Apr 2006 20:08:59 +0000 Subject: 2006-04-05 Joel Sherrill Victor V. Vengerov * score/include/rtems/score/mpci.h, score/include/rtems/score/threadmp.h, score/inline/rtems/score/threadmp.inl, score/macros/rtems/score/threadmp.inl, score/src/threadmp.c, score/src/threadqenqueue.c: Victor spotted the problem that _MPCI_Receive_server_tcb and _Thread_MP_Receive were duplicate variables and needed to be set to the same value. I took that idea and just removed _Thread_MP_Receive. All uses are now _MPCI_Receive_server_tcb. --- cpukit/score/inline/rtems/score/threadmp.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/inline/rtems/score/threadmp.inl') diff --git a/cpukit/score/inline/rtems/score/threadmp.inl b/cpukit/score/inline/rtems/score/threadmp.inl index 40c911fe29..8299ce82cb 100644 --- a/cpukit/score/inline/rtems/score/threadmp.inl +++ b/cpukit/score/inline/rtems/score/threadmp.inl @@ -33,7 +33,7 @@ RTEMS_INLINE_ROUTINE boolean _Thread_MP_Is_receive ( Thread_Control *the_thread ) { - return the_thread == _Thread_MP_Receive; + return the_thread == _MPCI_Receive_server_tcb; } /** -- cgit v1.2.3