summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/sysstate.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-12-08 08:43:41 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-12-08 08:43:41 +0100
commit9736283857a54008d1dcf63c8c892942e35824a6 (patch)
tree16f77efbe270c29ecd9eca78c1b78e6a2ad163a9 /cpukit/score/include/rtems/score/sysstate.h
parentscore: Delete unused API extensions (diff)
downloadrtems-9736283857a54008d1dcf63c8c892942e35824a6.tar.bz2
score: Statically initialize system state
Update #2408.
Diffstat (limited to 'cpukit/score/include/rtems/score/sysstate.h')
-rw-r--r--cpukit/score/include/rtems/score/sysstate.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/cpukit/score/include/rtems/score/sysstate.h b/cpukit/score/include/rtems/score/sysstate.h
index fbdeff95fa..02ac99584d 100644
--- a/cpukit/score/include/rtems/score/sysstate.h
+++ b/cpukit/score/include/rtems/score/sysstate.h
@@ -76,20 +76,6 @@ RTEMS_INLINE_ROUTINE void _System_state_Set (
_System_state_Current = state;
}
-RTEMS_INLINE_ROUTINE void _System_state_Handler_initialization (
-#if defined(RTEMS_MULTIPROCESSING)
- bool is_multiprocessing
-#else
- bool is_multiprocessing RTEMS_UNUSED
-#endif
-)
-{
- _System_state_Set( SYSTEM_STATE_BEFORE_INITIALIZATION );
-#if defined(RTEMS_MULTIPROCESSING)
- _System_state_Is_multiprocessing = is_multiprocessing;
-#endif
-}
-
RTEMS_INLINE_ROUTINE System_state_Codes _System_state_Get ( void )
{
return _System_state_Current;