summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-12-01 19:27:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-12-01 19:27:40 +0000
commiteedbfd94e0e37135041c8adf51cabc7e81aa4ea6 (patch)
tree691818b8013bdd9bafc538170850c83ba7344422 /cpukit/score/include
parenttypos fixed (diff)
downloadrtems-eedbfd94e0e37135041c8adf51cabc7e81aa4ea6.tar.bz2
Corrected use of the state WATCHDOG_REINSERT and renamed it
WATCHDOG_BEING_INSERTED.
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/score/watchdog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/include/rtems/score/watchdog.h b/cpukit/score/include/rtems/score/watchdog.h
index 4fc2849343..de2f332e22 100644
--- a/cpukit/score/include/rtems/score/watchdog.h
+++ b/cpukit/score/include/rtems/score/watchdog.h
@@ -66,10 +66,10 @@ typedef enum {
*/
typedef enum {
- WATCHDOG_INACTIVE, /* off all chains */
- WATCHDOG_ACTIVE, /* on chain, allowed to fire */
- WATCHDOG_REINSERT, /* on chain, reset without firing if expires */
- WATCHDOG_REMOVE_IT /* on chain, remove without firing if expires */
+ WATCHDOG_INACTIVE, /* off all chains */
+ WATCHDOG_BEING_INSERTED, /* off all chains, searching for insertion point */
+ WATCHDOG_ACTIVE, /* on chain, allowed to fire */
+ WATCHDOG_REMOVE_IT /* on chain, remove without firing if expires */
} Watchdog_States;
/*