summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spsignal_err01/isr.c
diff options
context:
space:
mode:
authorBjorn Larsson <bjornlarsson@oarcorp.com>2014-03-25 09:58:04 -0500
committerJennifer Averett <jennifer.averett@oarcorp.com>2014-03-28 12:32:29 -0500
commit34244b7a7469a42d768e459c9c46bcee2fbe89c6 (patch)
tree7e9196d935cc895dd5cf0c3c6887b00d03e130b7 /testsuites/sptests/spsignal_err01/isr.c
parentspintr_err01: New test split from sp09. (diff)
downloadrtems-34244b7a7469a42d768e459c9c46bcee2fbe89c6.tar.bz2
spsignal_err01: New test split from sp09.
This test moves rtems_signal_send error testing from sp09 screen 9 into its own test.
Diffstat (limited to 'testsuites/sptests/spsignal_err01/isr.c')
-rw-r--r--testsuites/sptests/spsignal_err01/isr.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/testsuites/sptests/spsignal_err01/isr.c b/testsuites/sptests/spsignal_err01/isr.c
new file mode 100644
index 0000000000..31c7ab42b2
--- /dev/null
+++ b/testsuites/sptests/spsignal_err01/isr.c
@@ -0,0 +1,28 @@
+/* Service_routine
+ *
+ * This routine is used as the timer routine for Interrupt Manager tests.
+ *
+ * Input parameters:
+ * ignored - this parameter is ignored
+ *
+ * Output parameters: NONE
+ *
+ * COPYRIGHT (c) 1989-1999.
+ * 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "system.h"
+
+rtems_isr Service_routine(
+ rtems_vector_number ignored
+)
+{
+}