Skip to content

Commit

Permalink
Add <thread> library (#85)
Browse files Browse the repository at this point in the history
Signed-off-by: Jesus Perez <jesusperez@eprosima.com>
  • Loading branch information
jepemi authored Nov 22, 2023
1 parent 104c5d7 commit 2b24f99
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions cpp_utils/include/cpp_utils/event/impl/SignalManager.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#pragma once

#include <algorithm>
#include <thread>

#include <cpp_utils/exception/InconsistencyException.hpp>
#include <cpp_utils/Log.hpp>
Expand Down
2 changes: 2 additions & 0 deletions cpp_utils/src/cpp/event/PeriodicEventHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
*
*/

#include <thread>

#include <cpp_utils/Log.hpp>
#include <cpp_utils/event/PeriodicEventHandler.hpp>
#include <cpp_utils/exception/InitializationException.hpp>
Expand Down
2 changes: 2 additions & 0 deletions cpp_utils/src/cpp/event/StdinEventHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include <thread>

#include <cpp_utils/Log.hpp>
#include <cpp_utils/event/StdinEventHandler.hpp>
#include <cpp_utils/exception/InitializationException.hpp>
Expand Down
1 change: 1 addition & 0 deletions cpp_utils/test/unittest/wait/DBQueueWaitHandlerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

#include <cpp_utils/testing/gtest_aux.hpp>
#include <gtest/gtest.h>
#include <thread>

#include <cpp_utils/wait/DBQueueWaitHandler.hpp>
#include <cpp_utils/exception/DisabledException.hpp>
Expand Down

0 comments on commit 2b24f99

Please sign in to comment.