We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f96129a commit 137bbd8Copy full SHA for 137bbd8
include/boost/capy/ex/detail/timer_service.hpp
@@ -29,7 +29,7 @@ namespace detail {
29
30
/* Shared timer thread for an execution_context.
31
32
- One background std::jthread per execution_context. All timeouts
+ One background std::thread per execution_context. All timeouts
33
scheduled through this context share the same thread, which sleeps
34
on a condition variable until the next deadline.
35
@@ -113,7 +113,7 @@ class BOOST_CAPY_DECL
113
timer_id next_id_ = 0;
114
timer_id executing_id_ = 0;
115
bool stopped_ = false;
116
- std::jthread thread_;
+ std::thread thread_;
117
#ifdef _MSC_VER
118
# pragma warning(pop)
119
#endif
0 commit comments