summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-29 09:34:28 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-29 09:34:28 +0000
commit82a8addafba75fa759a2830d154fd5b2b1addf19 (patch)
tree461f7d7bfac871ca7fa2b5c020b3b191c8c8d096 /testsuites
parent2009-10-29 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-82a8addafba75fa759a2830d154fd5b2b1addf19.tar.bz2
2009-10-29 Ralf Corsépius <ralf.corsepius@rtems.org>
* sp37/init.c: Add local prototypes for rtems_interrupt_disable, rtems_interrupt_enable, rtems_interrupt_flash, rtems_interrupt_is_in_progress.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/sptests/ChangeLog3
-rw-r--r--testsuites/sptests/sp37/init.c4
2 files changed, 7 insertions, 0 deletions
diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog
index 48267bc159..6c090e7aba 100644
--- a/testsuites/sptests/ChangeLog
+++ b/testsuites/sptests/ChangeLog
@@ -1,5 +1,8 @@
2009-10-29 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * sp37/init.c: Add local prototypes for
+ rtems_interrupt_disable, rtems_interrupt_enable,
+ rtems_interrupt_flash, rtems_interrupt_is_in_progress.
* sp43/init.c: Add local prototypes for
rtems_object_api_minimum_class, rtems_object_api_maximum_class,
rtems_build_id, rtems_build_name, rtems_object_id_api_maximum,
diff --git a/testsuites/sptests/sp37/init.c b/testsuites/sptests/sp37/init.c
index 0575d88910..c3104200b5 100644
--- a/testsuites/sptests/sp37/init.c
+++ b/testsuites/sptests/sp37/init.c
@@ -83,9 +83,13 @@ void check_isr_in_progress_inline(void)
}
#undef rtems_interrupt_disable
+extern rtems_interrupt_level rtems_interrupt_disable(void);
#undef rtems_interrupt_enable
+extern void rtems_interrupt_enable(rtems_interrupt_level previous_level);
#undef rtems_interrupt_flash
+extern void rtems_interrupt_flash(rtems_interrupt_level previous_level);
#undef rtems_interrupt_is_in_progress
+extern bool rtems_interrupt_is_in_progress(void);
rtems_timer_service_routine test_isr_in_progress(
rtems_id timer,