summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/def_alm.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/def_alm.c')
-rw-r--r--cpukit/itron/src/def_alm.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/cpukit/itron/src/def_alm.c b/cpukit/itron/src/def_alm.c
deleted file mode 100644
index a2e0e1606f..0000000000
--- a/cpukit/itron/src/def_alm.c
+++ /dev/null
@@ -1,48 +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_alm - Define Alarm Handler
- */
-
-ER def_alm(
- HNO almno __attribute__((unused)),
- T_DALM *pk_dalm __attribute__((unused))
-)
-{
-#if 0
- Objects_Control *objectAlrm;
- Watchdog_Interval timeInterval;
-
- timeInterval = pk_dalm->almtim / 1000;
- (void) _Watchdog_Remove(&objectAlrm);
- _Watchdog_Initialize(
- objectAlrm,
- pk_dalm->almhdr,
- almno,
- pk_dalm->exinf);
- _Watchdong_Insert_seconds(objectAlrm,timeInterval);
- _Thread_Enable_dispatch();
-#endif
-
- return E_OK;
-}