summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/shared/irq/irq.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-19 20:09:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-19 20:09:59 +0000
commit8b2ee37c3806d5340cb3457bfce0b80730468e59 (patch)
tree01288b2cd0a7b89f286c5390e9d71e66a847b238 /c/src/lib/libbsp/i386/shared/irq/irq.c
parentFixed obsolete reference to BSDINSTALL. (diff)
downloadrtems-8b2ee37c3806d5340cb3457bfce0b80730468e59.tar.bz2
Patch from Eric Valette <valette@crf.canon.fr>:
- Use the "hlt" instruction for the Idle thread, - Optimise interrupt PATH leadding to thread wakeup, - Preparation for Intel exception management that should come before the end of the week...
Diffstat (limited to 'c/src/lib/libbsp/i386/shared/irq/irq.c')
-rw-r--r--c/src/lib/libbsp/i386/shared/irq/irq.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/i386/shared/irq/irq.c b/c/src/lib/libbsp/i386/shared/irq/irq.c
index 026f4953d7..356112076f 100644
--- a/c/src/lib/libbsp/i386/shared/irq/irq.c
+++ b/c/src/lib/libbsp/i386/shared/irq/irq.c
@@ -356,3 +356,15 @@ int pc386_rtems_irq_mngt_get(rtems_irq_global_settings** config)
*config = internal_config;
return 0;
}
+
+void _ThreadProcessSignalsFromIrq (CPU_Exception_frame* ctx)
+{
+ /*
+ * If I understand the _Thread_Dispatch routine correctly
+ * I do not see how this routine can be called given the
+ * actual code. I plan to use this so far unused feature
+ * to implement remote debugger ptrace("attach", ...)
+ * command.
+ */
+ printk(" _ThreadProcessSignalsFromIrq called! mail valette@crf.canon.fr\n");
+}