summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp37
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-06-05 14:23:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-06-05 14:23:57 +0000
commit86db88d2700722d9235ccf88d14f893ae37a7ac4 (patch)
tree280e4b1613f97845e88be9d75fa658dec6c68fc0 /testsuites/sptests/sp37
parent2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-86db88d2700722d9235ccf88d14f893ae37a7ac4.tar.bz2
2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp28/init.c: Corrections to configuration. * sp37/init.c: Correctly invoke rtems_interrupt_disable() body. * spsize/size.c: _ISR_Vector_table only exists on architectures which use the Simple Vectored Interrupt Model.
Diffstat (limited to 'testsuites/sptests/sp37')
-rw-r--r--testsuites/sptests/sp37/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/sp37/init.c b/testsuites/sptests/sp37/init.c
index 2d068095e6..3817afcdc0 100644
--- a/testsuites/sptests/sp37/init.c
+++ b/testsuites/sptests/sp37/init.c
@@ -240,10 +240,10 @@ rtems_task Init(
}
puts( "interrupt disable (use body)" );
- rtems_interrupt_disable( level );
+ level = rtems_interrupt_disable();
puts( "interrupt disable (use body)" );
- rtems_interrupt_disable( level );
+ level = rtems_interrupt_disable();
puts( "interrupt flash (use body)" );
rtems_interrupt_flash( level );