summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/sparc64/shared/interrupts/installisrentries.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-17 16:16:25 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-17 16:16:25 +0000
commitc56982c86e6bd8d84fb98987998f108cb753379c (patch)
tree453e721631ea8992803aeb92d8ef9a5c0e2da5af /c/src/lib/libcpu/sparc64/shared/interrupts/installisrentries.c
parentRemove (Abandoned) (diff)
downloadrtems-c56982c86e6bd8d84fb98987998f108cb753379c.tar.bz2
2010-06-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* .cvsignore, ChangeLog, Makefile.am, configure.ac, preinstall.am, shared/cache/cache.c, shared/cache/cache_.h, shared/interrupts/installisrentries.c, shared/score/cpu.c, shared/score/interrupt.S, shared/syscall/sparc64-syscall.S, shared/syscall/sparc64-syscall.h: New files.
Diffstat (limited to 'c/src/lib/libcpu/sparc64/shared/interrupts/installisrentries.c')
-rw-r--r--c/src/lib/libcpu/sparc64/shared/interrupts/installisrentries.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/c/src/lib/libcpu/sparc64/shared/interrupts/installisrentries.c b/c/src/lib/libcpu/sparc64/shared/interrupts/installisrentries.c
new file mode 100644
index 0000000000..973dc725d0
--- /dev/null
+++ b/c/src/lib/libcpu/sparc64/shared/interrupts/installisrentries.c
@@ -0,0 +1,23 @@
+/*
+ * Install trap handlers for handling software interrupts.
+ * This file is deprecated, as the trap handlers are needed before this
+ * function is called. We still use this as for debugging purposes.
+ *
+ * Copyright 2010 Gedare Bloom.
+ *
+ * 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$
+ */
+
+#include <rtems.h>
+#include <rtems/asm.h>
+#include <rtems/score/sparc64.h>
+#include <rtems/bspIo.h>
+
+void sparc64_install_isr_entries( void )
+{
+ return;
+}