source: rtems-central/spec/if/rtems/event/system-receive.yml @ 51eded1

Last change on this file since 51eded1 was 51eded1, checked in by Sebastian Huber <sebastian.huber@…>, on 07/23/20 at 14:13:01

spec: Add event manager documentation

  • Property mode set to 100644
File size: 1.5 KB
Line 
1SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
2brief: |
3  Receives or gets a system event set.
4copyrights:
5- Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
6- Copyright (C) 1988, 2008 On-Line Applications Research Corporation (OAR)
7definition:
8  default:
9    body: null
10    params:
11    - ${set:/name} ${.:/params[0]/name}
12    - ${../options/option:/name} ${.:/params[1]/name}
13    - ${../types/interval:/name} ${.:/params[2]/name}
14    - ${set:/name} *${.:/params[3]/name}
15    return: ${../status/code:/name}
16  variants: []
17description: |
18  This directive performs the same actions as the ${receive:/name} directive
19  except that it operates with a different set of events for each task.
20enabled-by: true
21interface-type: function
22links:
23- role: interface-placement
24  uid: header
25name: rtems_event_system_receive
26notes: null
27params:
28- description: |
29    is the event set of interest.  Use ${pending-events:/name} to get the
30    pending events.
31  dir: null
32  name: event_in
33- description: is the option set.
34  dir: null
35  name: option_set
36- description: |
37    is the timeout in clock ticks if the ${../options/wait:/name} option was
38    set.  Use ${../types/no-timeout:/name} to wait potentially forever.
39  dir: null
40  name: ticks
41- description: |
42    is the pointer to an event set.  The received or pending events are stored
43    in the referenced event set if the operation was successful.
44  dir: null
45  name: event_out
46return:
47  return: null
48  return-values: []
49type: interface
Note: See TracBrowser for help on using the repository browser.