summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/watchdog.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-06-13 14:49:23 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-06-13 14:49:23 +0200
commit258d580c42a0bc89c2028fb1ff6a4a97792bdcaa (patch)
treee8ef515f92f2e62898df5e5dd99d139e06cb543d /cpukit/score/include/rtems/score/watchdog.h
parentsptests/sptasknopreempt01: New test (diff)
downloadrtems-258d580c42a0bc89c2028fb1ff6a4a97792bdcaa.tar.bz2
score: Delete unused state WATCHDOG_REMOVE_IT
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/watchdog.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/cpukit/score/include/rtems/score/watchdog.h b/cpukit/score/include/rtems/score/watchdog.h
index ff6c8233a7..bad7269051 100644
--- a/cpukit/score/include/rtems/score/watchdog.h
+++ b/cpukit/score/include/rtems/score/watchdog.h
@@ -86,11 +86,7 @@ typedef enum {
*/
WATCHDOG_BEING_INSERTED,
/** This is the state when the watchdog is on a chain, and allowed to fire. */
- WATCHDOG_ACTIVE,
- /** This is the state when the watchdog is on a chain, but we should
- * remove without firing if it expires.
- */
- WATCHDOG_REMOVE_IT
+ WATCHDOG_ACTIVE
} Watchdog_States;
/**