summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/def_cyc.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/def_cyc.c')
-rw-r--r--cpukit/itron/src/def_cyc.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/cpukit/itron/src/def_cyc.c b/cpukit/itron/src/def_cyc.c
new file mode 100644
index 0000000000..131ae785ee
--- /dev/null
+++ b/cpukit/itron/src/def_cyc.c
@@ -0,0 +1,52 @@
+/*
+ * COPYRIGHT (c) 1989-2007.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rtems/itron.h>
+
+#include <rtems/score/thread.h>
+#include <rtems/score/tod.h>
+
+#include <rtems/itron/time.h>
+
+/*
+ * def_cyc - Define Cyclic Handler
+ */
+
+ER def_cyc(
+ HNO cycno,
+ T_DCYC *pk_dcyc
+)
+{
+ Watchdog_Control *object;
+#if 0
+ Watchdog_Interval timeInterval;
+#endif
+
+/* XXX */ object = 0;
+ if ( pk_dcyc->cycatr != TA_HLNG)
+ return E_RSATR;
+#if 0
+ timeInterval = pk_dcyc->cyctim / 1000;
+ object->delta_interval = timeInterval;
+#endif
+ _Watchdog_Initialize(
+ object,
+ pk_dcyc->cychdr,
+ cycno,
+ pk_dcyc->exinf);
+ _Watchdog_Deactivate(object);
+
+ return E_OK;
+}