summaryrefslogtreecommitdiffstats
path: root/spec/rtems/timer/if/fire-after.yml
blob: 636478979fa5224d1b1583f405dd6adf4d3d9719 (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
59
60
61
62
63
64
65
66
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
brief: |
  Fires the timer after the interval.
copyrights:
- Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
- Copyright (C) 1988, 2008 On-Line Applications Research Corporation (OAR)
definition:
  default:
    attributes: null
    body: null
    params:
    - ${../../type/if/id:/name} ${.:/params[0]/name}
    - ${../../type/if/interval:/name} ${.:/params[1]/name}
    - ${service-routine-entry:/name} ${.:/params[2]/name}
    - void *${.:/params[3]/name}
    return: ${../../status/if/code:/name}
  variants: []
description: |
  This directive initiates the timer specified by ${.:/params[0]/name}.  If the
  timer is running, it is automatically canceled before being initiated.  The
  timer is scheduled to fire after an interval of clock ticks has passed
  specified by ${.:/params[1]/name}.  When the timer fires, the timer service
  routine ${.:/params[2]/name} will be invoked with the argument
  ${.:/params[3]/name} in the context of the clock tick ${/glossary/isr:/term}.
enabled-by: true
index-entries:
- fire a timer after an interval
interface-type: function
links:
- role: interface-placement
  uid: header
- role: interface-ingroup
  uid: group
name: rtems_timer_fire_after
notes: |
  This directive will not cause the running task to be preempted.
params:
- description: is the timer identifier.
  dir: null
  name: id
- description: is the interval until the routine is fired in clock ticks.
  dir: null
  name: ticks
- description: is the routine to schedule.
  dir: null
  name: routine
- description: is the argument passed to the routine when it is fired.
  dir: null
  name: user_data
return:
  return: null
  return-values:
  - description: |
      The requested operation was successful.
    value: ${../../status/if/successful:/name}
  - description: |
      The ${.:/params[1]/name} parameter was 0.
    value: ${../../status/if/invalid-number:/name}
  - description: |
      The ${.:/params[2]/name} parameter was ${/c/if/null:/name}.
    value: ${../../status/if/invalid-address:/name}
  - description: |
      There was no timer associated with the identifier specified by
      ${.:/params[0]/name}.
    value: ${../../status/if/invalid-id:/name}
type: interface