summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/timercreate.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-12-22 10:35:47 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-02-02 15:01:20 +0100
commit3a4e044e6461a6f03edbae94ca6efd91d4c206de (patch)
treedbd5b256298abf7df1343aca622bb856ac811d00 /cpukit/rtems/src/timercreate.c
parentscore: Optimize watchdog tickle (diff)
downloadrtems-3a4e044e6461a6f03edbae94ca6efd91d4c206de.tar.bz2
score: Rename _Watchdog_Realtime_from_*()
Rename _Watchdog_Realtime_from_*() to _Watchdog_Ticks_from_*(). Update #3264.
Diffstat (limited to 'cpukit/rtems/src/timercreate.c')
-rw-r--r--cpukit/rtems/src/timercreate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/src/timercreate.c b/cpukit/rtems/src/timercreate.c
index 42492c2f67..444b07cfa5 100644
--- a/cpukit/rtems/src/timercreate.c
+++ b/cpukit/rtems/src/timercreate.c
@@ -80,7 +80,7 @@ rtems_status_code _Timer_Fire(
_Watchdog_Insert(
&cpu->Watchdog.Header[ PER_CPU_WATCHDOG_REALTIME ],
&the_timer->Ticker,
- _Watchdog_Realtime_from_seconds( interval )
+ _Watchdog_Ticks_from_seconds( interval )
);
}