summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-12-08 17:18:03 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-12-08 17:29:00 +0100
commit3d76afea7c39d3fa6149d8746a0cd20feea4f612 (patch)
tree116b86cf7ab8c04983fd755afcbc3ce54146f6b8
parent77927d6eaf859a92b1e62a25c4ac45f16d817785 (diff)
cpukit/include/rtems/rtems/intr.hqual-51
-rw-r--r--cpukit/include/rtems/rtems/intr.h56
1 files 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 */
/**