26 lines
938 B
Diff
26 lines
938 B
Diff
From e1f53e60bdc368c81beba8b6173047ec8149f8e9 Mon Sep 17 00:00:00 2001
|
|
From: Michal Sekletar <msekleta@redhat.com>
|
|
Date: Tue, 21 Sep 2021 09:28:29 +0200
|
|
Subject: [PATCH] basic/time-util: introduce FORMAT_TIMESPAN
|
|
|
|
This is cherry-pick of the relevant part from the tree-wide change in
|
|
5291f26d4a6.
|
|
|
|
Related: #1977994
|
|
---
|
|
src/basic/time-util.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/basic/time-util.h b/src/basic/time-util.h
|
|
index 2bd947d6a8..8254913930 100644
|
|
--- a/src/basic/time-util.h
|
|
+++ b/src/basic/time-util.h
|
|
@@ -67,6 +67,7 @@ typedef enum TimestampStyle {
|
|
#define FORMAT_TIMESTAMP_WIDTH 28U /* when outputting, assume this width */
|
|
#define FORMAT_TIMESTAMP_RELATIVE_MAX 256U
|
|
#define FORMAT_TIMESPAN_MAX 64U
|
|
+#define FORMAT_TIMESPAN(t, accuracy) format_timespan((char[FORMAT_TIMESPAN_MAX]){}, FORMAT_TIMESPAN_MAX, t, accuracy)
|
|
|
|
#define TIME_T_MAX (time_t)((UINTMAX_C(1) << ((sizeof(time_t) << 3) - 1)) - 1)
|
|
|