From 3d76afea7c39d3fa6149d8746a0cd20feea4f612 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 8 Dec 2021 17:18:03 +0100 Subject: cpukit/include/rtems/rtems/intr.h --- cpukit/include/rtems/rtems/intr.h | 56 +++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/cpukit/include/rtems/rtems/intr.h b/cpukit/include/rtems/rtems/intr.h index b5b22bbbfe..a3c61edaa4 100644 --- a/cpukit/include/rtems/rtems/intr.h +++ b/cpukit/include/rtems/rtems/intr.h @@ -176,6 +176,34 @@ typedef struct rtems_interrupt_server_control { void ( *destroy )( struct rtems_interrupt_server_control * ); } rtems_interrupt_server_control; +/* Generated from spec:/rtems/intr/if/server-action */ + +/** + * @ingroup RTEMSAPIClassicIntr + * + * @brief This structure represents an interrupt server action. + * + * @par Notes + * This structure shall be treated as an opaque data type from the API point of + * view. Members shall not be accessed directly. + */ +typedef struct rtems_interrupt_server_action { + /** + * @brief This member is the reference to the next action or NULL. + */ + struct rtems_interrupt_server_action *next; + + /** + * @brief This member is the interrupt handler. + */ + rtems_interrupt_handler handler; + + /** + * @brief This member is the interrupt handler argument. + */ + void *arg; +} rtems_interrupt_server_action; + /* Generated from spec:/rtems/intr/if/vector-number */ /** @@ -2799,34 +2827,6 @@ rtems_status_code rtems_interrupt_server_handler_iterate( void *arg ); -/* Generated from spec:/rtems/intr/if/server-action */ - -/** - * @ingroup RTEMSAPIClassicIntr - * - * @brief This structure represents an interrupt server action. - * - * @par Notes - * This structure shall be treated as an opaque data type from the API point of - * view. Members shall not be accessed directly. - */ -typedef struct rtems_interrupt_server_action { - /** - * @brief This member is the reference to the next action or NULL. - */ - struct rtems_interrupt_server_action *next; - - /** - * @brief This member is the interrupt handler. - */ - rtems_interrupt_handler handler; - - /** - * @brief This member is the interrupt handler argument. - */ - void *arg; -} rtems_interrupt_server_action; - /* Generated from spec:/rtems/intr/if/server-entry */ /** -- cgit v1.2.3