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.c53
1 files changed, 0 insertions, 53 deletions
diff --git a/cpukit/itron/src/def_cyc.c b/cpukit/itron/src/def_cyc.c
deleted file mode 100644
index ceaa1b91c9..0000000000
--- a/cpukit/itron/src/def_cyc.c
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * 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 __attribute__((unused)),
- 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;
- _Watchdog_Initialize(
- object,
- pk_dcyc->cychdr,
- cycno,
- pk_dcyc->exinf
- );
-#endif
- _Watchdog_Deactivate(object);
-
- return E_OK;
-}