2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org>

* sp09/screen09.c: Eliminate unused var warning.
This commit is contained in:
Ralf Corsepius
2009-10-26 08:07:50 +00:00
parent 6e1e1ebef5
commit e8dc3d32c4
2 changed files with 8 additions and 4 deletions
+4
View File
@@ -1,3 +1,7 @@
2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org>
* sp09/screen09.c: Eliminate unused var warning.
2009-10-24 Ralf Corsépius <ralf.corsepius@rtems.org>
* sp27/init.c, spsize/init.c: Fix prototypes.
+4 -4
View File
@@ -22,9 +22,8 @@ void Screen9()
{
void *converted;
rtems_status_code status;
rtems_isr_entry old_service_routine;
#if ((CPU_SIMPLE_VECTORED_INTERRUPTS == FALSE) || \
#if ((CPU_SIMPLE_VECTORED_INTERRUPTS == FALSE) || \
defined(_C3x) || defined(_C4x))
puts(
"TA1 - rtems_interrupt_catch - "
@@ -33,7 +32,8 @@ void Screen9()
puts(
"TA1 - rtems_interrupt_catch - "
"old isr RTEMS_INVALID_ADDRESS - SKIPPED" );
#else
#else
rtems_isr_entry old_service_routine;
status = rtems_interrupt_catch(
Service_routine,
ISR_INTERRUPT_MAXIMUM_VECTOR_NUMBER + 10,
@@ -61,7 +61,7 @@ void Screen9()
"rtems_interrupt_catch with invalid old isr pointer"
);
puts( "TA1 - rtems_interrupt_catch - old isr RTEMS_INVALID_ADDRESS" );
#endif
#endif
/* send invalid id */
status = rtems_signal_send( 100, RTEMS_SIGNAL_1 );