* [PATCH v1] cyclictest: Fix BUILD failure for GCC_VER < 14
@ 2026-09-01 9:46 Suneeth D
2026-09-01 10:42 ` Sebastian Andrzej Siewior
0 siblings, 1 reply; 2+ messages in thread
From: Suneeth D @ 2026-09-01 9:46 UTC (permalink / raw)
To: linux-rt-users; +Cc: williams, jkacur, bigeasy, Suneeth D
timerthread() uses bool, which fails to compile under -Werror
when stdbool.h is not included.
Fixes: 98fcd661ac59 (cyclictest: Acquire a lock before invoking pthread_cond_signal())
Closes: https://lore.kernel.org/linux-rt-users/4ce24139-5f7e-4180-a290-bcc15fb4f559@amd.com/
Signed-off-by: Suneeth D <Suneeth.D@amd.com>
---
Based on: fd45df830803dd7f26d2ca8bdcf05fd7e0d62ae8 (rt-tests/main)
src/cyclictest/cyclictest.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
index 99194378f946..58b56bcede0f 100644
--- a/src/cyclictest/cyclictest.c
+++ b/src/cyclictest/cyclictest.c
@@ -15,6 +15,7 @@
#include <stdlib.h>
#include <stdint.h>
#include <stdarg.h>
+#include <stdbool.h>
#include <unistd.h>
#include <fcntl.h>
#include <getopt.h>
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-01 10:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-01 9:46 [PATCH v1] cyclictest: Fix BUILD failure for GCC_VER < 14 Suneeth D
2026-09-01 10:42 ` Sebastian Andrzej Siewior
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.