summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/watchdogimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-20 08:43:15 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-24 09:37:28 +0200
commit7ed377bc69e8cf96b989018322dc43bc0f2d2e36 (patch)
tree135e4735f7bbf8ccf96543803753de1bebcbf9c6 /cpukit/score/include/rtems/score/watchdogimpl.h
parentscore: Add _Watchdog_Is_valid_interval_timespec() (diff)
downloadrtems-7ed377bc69e8cf96b989018322dc43bc0f2d2e36.tar.bz2
score: _Watchdog_Is_far_future_monotonic_timespec
Update #3117. Update #3182.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/watchdogimpl.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpukit/score/include/rtems/score/watchdogimpl.h b/cpukit/score/include/rtems/score/watchdogimpl.h
index 9fc1f05837..31b44f1d0b 100644
--- a/cpukit/score/include/rtems/score/watchdogimpl.h
+++ b/cpukit/score/include/rtems/score/watchdogimpl.h
@@ -319,6 +319,13 @@ RTEMS_INLINE_ROUTINE bool _Watchdog_Is_valid_interval_timespec(
return _Watchdog_Is_valid_timespec( ts ) && ts->tv_sec >= 0;
}
+RTEMS_INLINE_ROUTINE bool _Watchdog_Is_far_future_monotonic_timespec(
+ const struct timespec *ts
+)
+{
+ return ts->tv_sec >= _Watchdog_Monotonic_max_seconds;
+}
+
RTEMS_INLINE_ROUTINE bool _Watchdog_Is_far_future_realtime_timespec(
const struct timespec *ts
)