pkarashchenko commented on code in PR #8786:
URL: https://github.com/apache/nuttx/pull/8786#discussion_r1132089181
##########
sched/signal/sig_timedwait.c:
##########
@@ -319,7 +323,7 @@ int nxsig_timedwait(FAR const sigset_t *set, FAR struct
siginfo *info,
* time in nanoseconds.
*/
-#ifdef CONFIG_HAVE_LONG_LONG
+#ifdef CONFIG_SYSTEM_TIME64
uint64_t waitticks64 = ((uint64_t)timeout->tv_sec * NSEC_PER_SEC +
(uint64_t)timeout->tv_nsec +
NSEC_PER_TICK - 1) /
Review Comment:
Most probably `waitticks64` now is not needed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]