[rtems-central commit] spec: Rename interrupt handler in dispatch table

Sebastian Huber sebh at rtems.org
Tue Jan 3 14:51:54 UTC 2023


Module:    rtems-central
Branch:    master
Commit:    074e2875870451499839078e279f59ba540298ee
Changeset: http://git.rtems.org/rtems-central/commit/?id=074e2875870451499839078e279f59ba540298ee

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Tue Jan  3 15:49:40 2023 +0100

spec: Rename interrupt handler in dispatch table

Update #4769.

---

 spec/bsp/req/interrupt-spurious.yml     | 4 ++--
 spec/rtems/intr/req/entry-install.yml   | 4 ++--
 spec/rtems/intr/req/entry-remove.yml    | 8 ++++----
 spec/rtems/intr/req/handler-iterate.yml | 4 ++--
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/spec/bsp/req/interrupt-spurious.yml b/spec/bsp/req/interrupt-spurious.yml
index 08fe6ab5..31ed7dd7 100644
--- a/spec/bsp/req/interrupt-spurious.yml
+++ b/spec/bsp/req/interrupt-spurious.yml
@@ -184,8 +184,8 @@ test-setup:
     ctx->first = NULL;
     ctx->test_vector = CallWithinISRGetVector();
     T_assert_lt_u32( ctx->test_vector, BSP_INTERRUPT_VECTOR_COUNT );
-    ctx->first = &bsp_interrupt_handler_table[
-      bsp_interrupt_handler_index( ctx->test_vector )
+    ctx->first = &bsp_interrupt_dispatch_table[
+      bsp_interrupt_dispatch_index( ctx->test_vector )
     ];
     ctx->entry_to_restore = *ctx->first;
 
diff --git a/spec/rtems/intr/req/entry-install.yml b/spec/rtems/intr/req/entry-install.yml
index 81d6fc2f..6c7260ba 100644
--- a/spec/rtems/intr/req/entry-install.yml
+++ b/spec/rtems/intr/req/entry-install.yml
@@ -694,7 +694,7 @@ test-support: |
     T_rsc_success( sc );
 
     bsp_interrupt_set_handler_unique(
-      BSP_INTERRUPT_HANDLER_TABLE_SIZE,
+      BSP_INTERRUPT_DISPATCH_TABLE_SIZE,
       ctx->initialized
     );
 
@@ -705,7 +705,7 @@ test-support: |
     );
 
     bsp_interrupt_set_handler_unique(
-      BSP_INTERRUPT_HANDLER_TABLE_SIZE,
+      BSP_INTERRUPT_DISPATCH_TABLE_SIZE,
       ctx->initialized_during_setup
     );
 
diff --git a/spec/rtems/intr/req/entry-remove.yml b/spec/rtems/intr/req/entry-remove.yml
index ed4f7970..a57803b3 100644
--- a/spec/rtems/intr/req/entry-remove.yml
+++ b/spec/rtems/intr/req/entry-remove.yml
@@ -115,8 +115,8 @@ post-conditions:
       } else {
         rtems_interrupt_entry *first;
 
-        first = bsp_interrupt_handler_table[
-          bsp_interrupt_handler_index( ctx->test_vector )
+        first = bsp_interrupt_dispatch_table[
+          bsp_interrupt_dispatch_index( ctx->test_vector )
         ];
         T_null( first );
       }
@@ -640,14 +640,14 @@ test-support: |
     T_rsc_success( sc );
 
     bsp_interrupt_set_handler_unique(
-      BSP_INTERRUPT_HANDLER_TABLE_SIZE,
+      BSP_INTERRUPT_DISPATCH_TABLE_SIZE,
       ctx->initialized
     );
 
     ctx->status = rtems_interrupt_entry_remove( ctx->vector, ctx->entry );
 
     bsp_interrupt_set_handler_unique(
-      BSP_INTERRUPT_HANDLER_TABLE_SIZE,
+      BSP_INTERRUPT_DISPATCH_TABLE_SIZE,
       ctx->initialized_during_setup
     );
 
diff --git a/spec/rtems/intr/req/handler-iterate.yml b/spec/rtems/intr/req/handler-iterate.yml
index 7d26a546..b04a0c1b 100644
--- a/spec/rtems/intr/req/handler-iterate.yml
+++ b/spec/rtems/intr/req/handler-iterate.yml
@@ -277,7 +277,7 @@ test-support: |
     ctx->visited_entries = 0;
 
     bsp_interrupt_set_handler_unique(
-      BSP_INTERRUPT_HANDLER_TABLE_SIZE,
+      BSP_INTERRUPT_DISPATCH_TABLE_SIZE,
       ctx->initialized
     );
 
@@ -288,7 +288,7 @@ test-support: |
     );
 
     bsp_interrupt_set_handler_unique(
-      BSP_INTERRUPT_HANDLER_TABLE_SIZE,
+      BSP_INTERRUPT_DISPATCH_TABLE_SIZE,
       ctx->initialized_during_setup
     );
   }



More information about the vc mailing list