SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause brief: | Submits the interrupt server request 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: | ${server-entry-submit:/name}( &${.:/params[0]/name}->entry ); params: - ${server-request:/name} *${.:/params[0]/name} return: void variants: [] description: | The directive appends the interrupt server entry of the request 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 - role: interface-ingroup uid: group - role: constraint uid: /constraint/directive-not-pre-qualified - 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-request-initialized - role: constraint uid: ../constraint/server-request-not-while-set-vector name: rtems_interrupt_server_request_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 request may be destroyed by ${server-request-destroy:/name}. params: - description: | is the interrupt server request to submit. dir: inout name: request return: null type: interface