summaryrefslogtreecommitdiff
path: root/libddekit/include/ddekit/interrupt.h
diff options
context:
space:
mode:
Diffstat (limited to 'libddekit/include/ddekit/interrupt.h')
-rw-r--r--libddekit/include/ddekit/interrupt.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/libddekit/include/ddekit/interrupt.h b/libddekit/include/ddekit/interrupt.h
deleted file mode 100644
index 3f789210..00000000
--- a/libddekit/include/ddekit/interrupt.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * \brief Hardware-interrupt subsystem
- * \author Thomas Friebel <tf13@os.inf.tu-dresden.de>
- * \author Christian Helmuth <ch12@os.inf.tu-dresden.de>
- * \date 2007-01-26
- *
- * DDEKit supports registration of one handler function per interrupt. If any
- * specific DDE implementation needs to register more than one handler,
- * multiplexing has to be implemented there!
- */
-
-#ifndef _ddekit_interrupt_h
-#define _ddekit_interrupt_h
-
-#include "ddekit/thread.h"
-
-#define DDEKIT_IRQ_PRIO 2
-
-/**
- * Attach to hardware interrupt
- *
- * \param irq IRQ number to attach to
- * \param shared set to 1 if interrupt sharing is supported; set to 0
- * otherwise
- * \param thread_init called just after DDEKit internal init and before any
- * other function
- * \param handler IRQ handler for interrupt irq
- * \param priv private token (argument for thread_init and handler)
- *
- * \return pointer to interrupt thread created
- */
-ddekit_thread_t *ddekit_interrupt_attach(int irq, int shared,
- void(*thread_init)(void *),
- void(*handler)(void *), void *priv);
-
-/**
- * Detach from a previously attached interrupt.
- *
- * \param irq IRQ number
- */
-void ddekit_interrupt_detach(int irq);
-
-/**
- * Block interrupt.
- *
- * \param irq IRQ number to block
- */
-void ddekit_interrupt_disable(int irq);
-
-/**
- * Enable interrupt.
- *
- * \param irq IRQ number to block
- */
-void ddekit_interrupt_enable(int irq);
-
-#endif