summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/sysstate.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-01 14:55:03 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-05 13:45:36 +0200
commit2bca05f7d72ae5f7bfd6c62db6c313fb0693a158 (patch)
tree6579c7a28284fda0e7b5ecf9e0c5171d9b69b1bf /cpukit/score/include/rtems/score/sysstate.h
parentsptests/spfreechain01: Fix Makefile.am (diff)
downloadrtems-2bca05f7d72ae5f7bfd6c62db6c313fb0693a158.tar.bz2
score: Delete SYSTEM_STATE_BEGIN_MULTITASKING
Nothing happened between the SYSTEM_STATE_BEGIN_MULTITASKING to SYSTEM_STATE_UP transition.
Diffstat (limited to 'cpukit/score/include/rtems/score/sysstate.h')
-rw-r--r--cpukit/score/include/rtems/score/sysstate.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/cpukit/score/include/rtems/score/sysstate.h b/cpukit/score/include/rtems/score/sysstate.h
index 6599dff4f1..304b9529c3 100644
--- a/cpukit/score/include/rtems/score/sysstate.h
+++ b/cpukit/score/include/rtems/score/sysstate.h
@@ -49,11 +49,6 @@ typedef enum {
SYSTEM_STATE_BEFORE_MULTITASKING,
/**
- * @brief The system is attempting to initiate multitasking.
- */
- SYSTEM_STATE_BEGIN_MULTITASKING,
-
- /**
* @brief The system is up and operating normally.
*/
SYSTEM_STATE_UP,
@@ -119,13 +114,6 @@ RTEMS_INLINE_ROUTINE bool _System_state_Is_before_multitasking (
return (state == SYSTEM_STATE_BEFORE_MULTITASKING);
}
-RTEMS_INLINE_ROUTINE bool _System_state_Is_begin_multitasking (
- System_state_Codes state
-)
-{
- return (state == SYSTEM_STATE_BEGIN_MULTITASKING);
-}
-
RTEMS_INLINE_ROUTINE bool _System_state_Is_shutdown (
System_state_Codes state
)