[PATCH 09/16] score: Add _Watchdog_Is_valid_interval_timespec()

Sebastian Huber sebastian.huber at embedded-brains.de
Mon Oct 23 13:53:40 UTC 2017


Update #3117.
Update #3182.
---
 cpukit/score/include/rtems/score/watchdogimpl.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/cpukit/score/include/rtems/score/watchdogimpl.h b/cpukit/score/include/rtems/score/watchdogimpl.h
index d9dfa36b56..9fc1f05837 100644
--- a/cpukit/score/include/rtems/score/watchdogimpl.h
+++ b/cpukit/score/include/rtems/score/watchdogimpl.h
@@ -312,6 +312,13 @@ RTEMS_INLINE_ROUTINE bool _Watchdog_Is_valid_timespec(
     && (unsigned long) ts->tv_nsec < WATCHDOG_NANOSECONDS_PER_SECOND;
 }
 
+RTEMS_INLINE_ROUTINE bool _Watchdog_Is_valid_interval_timespec(
+  const struct timespec *ts
+)
+{
+  return _Watchdog_Is_valid_timespec( ts ) && ts->tv_sec >= 0;
+}
+
 RTEMS_INLINE_ROUTINE bool _Watchdog_Is_far_future_realtime_timespec(
   const struct timespec *ts
 )
-- 
2.12.3



More information about the devel mailing list