Skip to content

Commit 705e4d4

Browse files
author
rajszym
committed
updated example file
1 parent 6d4b6c3 commit 705e4d4

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/main.cpp

+7-3
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,28 @@
33
#include <mutex>
44
#include <chrono>
55

6+
using namespace std::chrono_literals;
7+
8+
thread_local auto delay = 1000ms;
9+
610
void test()
711
{
812
std::once_flag flg;
913
std::jthread jt([&](std::stop_token st)
1014
{
11-
do std::call_once(flg, []{});
15+
do std::call_once(flg, []{ delay = 1ms; });
1216
while (!st.stop_requested());
1317
});
1418
}
1519

1620
int main()
1721
{
18-
using namespace std::chrono_literals;
1922
device::Led led;
23+
delay = 100ms;
2024
for (;;)
2125
{
2226
test();
23-
std::this_thread::sleep_for(100ms);
27+
std::this_thread::sleep_for(delay);
2428
std::thread([&]{ led.tick(); }).detach();
2529
}
2630
}

0 commit comments

Comments
 (0)