We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d4b6c3 commit 705e4d4Copy full SHA for 705e4d4
src/main.cpp
@@ -3,24 +3,28 @@
3
#include <mutex>
4
#include <chrono>
5
6
+using namespace std::chrono_literals;
7
+
8
+thread_local auto delay = 1000ms;
9
10
void test()
11
{
12
std::once_flag flg;
13
std::jthread jt([&](std::stop_token st)
14
- do std::call_once(flg, []{});
15
+ do std::call_once(flg, []{ delay = 1ms; });
16
while (!st.stop_requested());
17
});
18
}
19
20
int main()
21
- using namespace std::chrono_literals;
22
device::Led led;
23
+ delay = 100ms;
24
for (;;)
25
26
test();
- std::this_thread::sleep_for(100ms);
27
+ std::this_thread::sleep_for(delay);
28
std::thread([&]{ led.tick(); }).detach();
29
30
0 commit comments