summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/watchdoginsert.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-04-10 16:19:48 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-04-13 13:39:26 +0200
commit54cf0e34c5d6b8be0ce136eac7c4e11c1d487d7f (patch)
treefb6485f659b1fe4204893e9d442f7e5deda96db3 /cpukit/score/src/watchdoginsert.c
parentscore: Split _Watchdog_Adjust() (diff)
downloadrtems-54cf0e34c5d6b8be0ce136eac7c4e11c1d487d7f.tar.bz2
score: Add Watchdog_Header
This type is intended to encapsulate all state to manage a watchdog chain. Update #2307.
Diffstat (limited to 'cpukit/score/src/watchdoginsert.c')
-rw-r--r--cpukit/score/src/watchdoginsert.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/src/watchdoginsert.c b/cpukit/score/src/watchdoginsert.c
index 3169c80a37..272cac8db1 100644
--- a/cpukit/score/src/watchdoginsert.c
+++ b/cpukit/score/src/watchdoginsert.c
@@ -18,12 +18,12 @@
#include "config.h"
#endif
-#include <rtems/system.h>
-#include <rtems/score/isr.h>
#include <rtems/score/watchdogimpl.h>
+#include <rtems/score/isrlevel.h>
+#include <rtems/score/percpu.h>
void _Watchdog_Insert(
- Chain_Control *header,
+ Watchdog_Header *header,
Watchdog_Control *the_watchdog
)
{