* [PATCH 1/2] time: expose _time_from_timespec in time-private.h
@ 2024-08-29 11:25 James Prestwood
2024-08-29 11:25 ` [PATCH 2/2] timeout: add l_timeout_remaining James Prestwood
2024-09-03 15:05 ` [PATCH 1/2] time: expose _time_from_timespec in time-private.h Denis Kenzior
0 siblings, 2 replies; 3+ messages in thread
From: James Prestwood @ 2024-08-29 11:25 UTC (permalink / raw)
To: ell; +Cc: James Prestwood
---
ell/time-private.h | 1 +
ell/time.c | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/ell/time-private.h b/ell/time-private.h
index 59c2421..2860943 100644
--- a/ell/time-private.h
+++ b/ell/time-private.h
@@ -12,3 +12,4 @@ uint64_t _time_fuzz_msecs(uint64_t ms);
uint64_t _time_fuzz_secs(uint32_t secs, uint32_t max_offset);
uint64_t _time_realtime_to_boottime(const struct timeval *ts);
uint64_t time_realtime_now(void);
+uint64_t _time_from_timespec(const struct timespec *ts);
diff --git a/ell/time.c b/ell/time.c
index de4e161..e124a91 100644
--- a/ell/time.c
+++ b/ell/time.c
@@ -18,7 +18,7 @@
#include "random.h"
#include "private.h"
-static uint64_t _time_from_timespec(const struct timespec *ts)
+uint64_t _time_from_timespec(const struct timespec *ts)
{
return ts->tv_sec * L_USEC_PER_SEC + ts->tv_nsec / L_NSEC_PER_USEC;
}
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] timeout: add l_timeout_remaining
2024-08-29 11:25 [PATCH 1/2] time: expose _time_from_timespec in time-private.h James Prestwood
@ 2024-08-29 11:25 ` James Prestwood
2024-09-03 15:05 ` [PATCH 1/2] time: expose _time_from_timespec in time-private.h Denis Kenzior
1 sibling, 0 replies; 3+ messages in thread
From: James Prestwood @ 2024-08-29 11:25 UTC (permalink / raw)
To: ell; +Cc: James Prestwood
Gets the remaining microseconds left on a timer. Microseconds were
chosen in order to be easily compatible with l_time APIs.
---
ell/ell.sym | 1 +
ell/timeout.c | 29 +++++++++++++++++++++++++++++
ell/timeout.h | 3 ++-
3 files changed, 32 insertions(+), 1 deletion(-)
v2:
* Use _time_from_timespec
* Changed name to l_timeout_remaining()
diff --git a/ell/ell.sym b/ell/ell.sym
index c7dc9e6..b04ad63 100644
--- a/ell/ell.sym
+++ b/ell/ell.sym
@@ -526,6 +526,7 @@ global:
l_timeout_create_ms;
l_timeout_modify;
l_timeout_modify_ms;
+ l_timeout_remaining;
l_timeout_remove;
l_timeout_set_callback;
/* tls */
diff --git a/ell/timeout.c b/ell/timeout.c
index 4fc21a0..541692e 100644
--- a/ell/timeout.c
+++ b/ell/timeout.c
@@ -23,6 +23,7 @@
#include "timeout.h"
#include "main-private.h"
#include "private.h"
+#include "time-private.h"
/**
* SECTION:timeout
@@ -298,3 +299,31 @@ LIB_EXPORT void l_timeout_set_callback(struct l_timeout *timeout,
timeout->user_data = user_data;
timeout->destroy = destroy;
}
+
+/**
+ * l_timeout_get_remaining:
+ *
+ * Get the remaining time for a timeout in microseconds
+ *
+ * @timeout: timeout object
+ * @remaining: microseconds remaining on timer
+ *
+ * Returns: True if successfully got remaining time
+ * False if failure to get remaining time
+ **/
+LIB_EXPORT bool l_timeout_remaining(struct l_timeout *timeout,
+ uint64_t *remaining)
+{
+ struct itimerspec current;
+
+ if (unlikely(!timeout))
+ return false;
+
+ if (timerfd_gettime(timeout->fd, ¤t) < 0)
+ return false;
+
+ if (remaining)
+ *remaining = _time_from_timespec(¤t.it_value);
+
+ return true;
+}
diff --git a/ell/timeout.h b/ell/timeout.h
index 2db78d8..c0d463c 100644
--- a/ell/timeout.h
+++ b/ell/timeout.h
@@ -34,7 +34,8 @@ void l_timeout_remove(struct l_timeout *timeout);
void l_timeout_set_callback(struct l_timeout *timeout,
l_timeout_notify_cb_t callback, void *user_data,
l_timeout_destroy_cb_t destroy);
-
+bool l_timeout_remaining(struct l_timeout *timeout,
+ uint64_t *remaining);
#ifdef __cplusplus
}
#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] time: expose _time_from_timespec in time-private.h
2024-08-29 11:25 [PATCH 1/2] time: expose _time_from_timespec in time-private.h James Prestwood
2024-08-29 11:25 ` [PATCH 2/2] timeout: add l_timeout_remaining James Prestwood
@ 2024-09-03 15:05 ` Denis Kenzior
1 sibling, 0 replies; 3+ messages in thread
From: Denis Kenzior @ 2024-09-03 15:05 UTC (permalink / raw)
To: James Prestwood, ell
Hi James,
On 8/29/24 6:25 AM, James Prestwood wrote:
> ---
> ell/time-private.h | 1 +
> ell/time.c | 2 +-
> 2 files changed, 2 insertions(+), 1 deletion(-)
all applied, thanks.
Regards,
-Denis
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-09-03 15:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-29 11:25 [PATCH 1/2] time: expose _time_from_timespec in time-private.h James Prestwood
2024-08-29 11:25 ` [PATCH 2/2] timeout: add l_timeout_remaining James Prestwood
2024-09-03 15:05 ` [PATCH 1/2] time: expose _time_from_timespec in time-private.h Denis Kenzior
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.