summaryrefslogtreecommitdiffstats
path: root/spec/rtems/intr/if/server-entry-submit.yml
blob: 83ec005ee5ebc90c8f3ed3eeb3053f611d90ecc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
- 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-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: null
type: interface