summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>2008-01-25 20:14:45 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>2008-01-25 20:14:45 +0000
commit81f595760d1a5b85c7650c53957fc01fe17582c6 (patch)
treef1859c79870cc9a1aa9045dadbb584c6e57a743d /cpukit/score/inline
parent2008-01-25 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-81f595760d1a5b85c7650c53957fc01fe17582c6.tar.bz2
2008-01-25 Jennifer Averett <jennifer.averett@OARcorp.com>
* sapi/include/rtems/fatal.h, score/include/rtems/score/coremutex.h, score/include/rtems/score/interr.h, score/inline/rtems/score/thread.inl, score/src/coremutexseize.c: Modifications to aid in full path testing.
Diffstat (limited to 'cpukit/score/inline')
-rw-r--r--cpukit/score/inline/rtems/score/thread.inl10
1 files changed, 9 insertions, 1 deletions
diff --git a/cpukit/score/inline/rtems/score/thread.inl b/cpukit/score/inline/rtems/score/thread.inl
index 6f58652a2c..9ce734c773 100644
--- a/cpukit/score/inline/rtems/score/thread.inl
+++ b/cpukit/score/inline/rtems/score/thread.inl
@@ -19,6 +19,8 @@
#ifndef _RTEMS_SCORE_THREAD_INL
#define _RTEMS_SCORE_THREAD_INL
+#include <rtems/score/sysstate.h>
+
/**
* @addtogroup ScoreThread
* @{
@@ -32,7 +34,13 @@
RTEMS_INLINE_ROUTINE void _Thread_Stop_multitasking( void )
{
- _Context_Switch( &_Thread_Executing->Registers, &_Thread_BSP_context );
+ Context_Control context_area;
+ Context_Control *context_p = &context_area;
+
+ if ( _System_state_Is_up(_System_state_Get ()) )
+ context_p = &_Thread_Executing->Registers;
+
+ _Context_Switch( context_p, &_Thread_BSP_context );
}
/**