This is an automated email from the ASF dual-hosted git repository.
pnoltes pushed a commit to branch feature/celix_err
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/feature/celix_err by this push:
new 958540d6 Add missing signal header include to ThreadsTestSuite
958540d6 is described below
commit 958540d6b5c04af684ea28fb26e29dc284cbb580
Author: Pepijn Noltes <[email protected]>
AuthorDate: Tue May 2 20:15:24 2023 +0200
Add missing signal header include to ThreadsTestSuite
---
libs/utils/gtest/src/ThreadsTestSuite.cc | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libs/utils/gtest/src/ThreadsTestSuite.cc
b/libs/utils/gtest/src/ThreadsTestSuite.cc
index fced5f19..999415a5 100644
--- a/libs/utils/gtest/src/ThreadsTestSuite.cc
+++ b/libs/utils/gtest/src/ThreadsTestSuite.cc
@@ -19,6 +19,8 @@
#include <gtest/gtest.h>
+#include <csignal>
+
#include "celix_threads.h"
class ThreadsTestSuite : public ::testing::Test {