summaryrefslogtreecommitdiffstats
path: root/spec/rtems/intr/if/server-entry-submit.yml
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-06-10 18:01:15 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-12 14:53:01 +0200
commita615014cfb188ef151ba4e11bcc808f4d6d2aefd (patch)
treed7f1de0f1c9600b794edf00882e9cd8a03d13ffb /spec/rtems/intr/if/server-entry-submit.yml
parentspecview.py: Do not print N/A states (diff)
downloadrtems-central-a615014cfb188ef151ba4e11bcc808f4d6d2aefd.tar.bz2
spec: Add interrupt manager extension
Diffstat (limited to 'spec/rtems/intr/if/server-entry-submit.yml')
-rw-r--r--spec/rtems/intr/if/server-entry-submit.yml58
1 files changed, 58 insertions, 0 deletions
diff --git a/spec/rtems/intr/if/server-entry-submit.yml b/spec/rtems/intr/if/server-entry-submit.yml
new file mode 100644
index 00000000..88b61f1d
--- /dev/null
+++ b/spec/rtems/intr/if/server-entry-submit.yml
@@ -0,0 +1,58 @@
+SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
+brief: |
+ Submits the interrupt server entry to be serviced by the interrupt server.
+copyrights:
+- Copyright (C) 2017, 2021 embedded brains GmbH (http://www.embedded-brains.de)
+definition:
+ default:
+ attributes: null
+ body: null
+ params:
+ - ${server-entry:/name} *${.:/params[0]/name}
+ return: void
+ variants: []
+description: |
+ The directive appends the entry to the pending entries of the interrupt
+ server. The interrupt server is notified that a new entry is pending. Once
+ the interrupt server is scheduled it services the actions of all pending
+ entries.
+enabled-by: true
+index-entries: []
+interface-type: function
+links:
+- role: interface-placement
+ uid: header-2
+- role: interface-ingroup
+ uid: group
+- role: constraint
+ uid: /constraint/directive-ctx-isr
+- role: constraint
+ uid: /constraint/directive-ctx-devinit
+- role: constraint
+ uid: /constraint/directive-ctx-task
+- role: constraint
+ uid: /constraint/unblock-may-preempt
+- role: constraint
+ uid: ../constraint/server-entry-initialized
+- role: constraint
+ uid: ../constraint/server-entry-not-while-action-prepend
+- role: constraint
+ uid: ../constraint/server-entry-not-while-move
+name: rtems_interrupt_server_entry_submit
+notes: |
+ This directive may be used to do a two-step interrupt processing. The first
+ step is done from within interrupt context by a call to this directive. The
+ second step is then done from within the context of the interrupt server.
+
+ No error checking is performed by the directive.
+
+ A submitted entry may be destroyed by ${server-entry-destroy:/name}.
+params:
+- description: |
+ is the interrupt server entry to submit.
+ dir: null
+ name: entry
+return:
+ return: null
+ return-values: []
+type: interface