From fafeddaf3527b2ee8d9a2433b1bc76e44a831fde Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 5 Feb 2025 10:18:09 +0100 Subject: [PATCH] chore(userspace,unit_tests): include thread.h where needed. Signed-off-by: Federico Di Pierro --- unit_tests/falco/test_atomic_signal_handler.cpp | 1 + userspace/falco/falco_outputs.h | 1 + 2 files changed, 2 insertions(+) diff --git a/unit_tests/falco/test_atomic_signal_handler.cpp b/unit_tests/falco/test_atomic_signal_handler.cpp index 2bc7afe4..d1e7aecb 100644 --- a/unit_tests/falco/test_atomic_signal_handler.cpp +++ b/unit_tests/falco/test_atomic_signal_handler.cpp @@ -24,6 +24,7 @@ limitations under the License. #include #include #include +#include TEST(AtomicSignalHandler, lock_free_implementation) { ASSERT_TRUE(falco::atomic_signal_handler().is_lock_free()); diff --git a/userspace/falco/falco_outputs.h b/userspace/falco/falco_outputs.h index 860ffbdb..e6561b5f 100644 --- a/userspace/falco/falco_outputs.h +++ b/userspace/falco/falco_outputs.h @@ -19,6 +19,7 @@ limitations under the License. #include #include +#include #include "falco_common.h" #include "falco_engine.h"