你如何使用 std::jthread::get_stop_token()?
How do you use std::jthread::get_stop_token()?
我对 std::jthread::get_stop_token
的工作原理感到困惑,因为它似乎具有固有的竞争条件。
也就是说,正在执行的线程不能简单地对自身调用 std::jthread
(如 this example),因为它不能保证 std::jthread
对象实际上是在此时构造的它开始执行。在我看来,一个线程要使用它自己的 get_stop_token
,它需要(至少)一个额外的事件(比如 std::latch
)来同步它自己的构造。
但是,我没有在网上看到任何关于此问题的示例或提及,因此在我看来这可能不是预期的用途。它确实看起来相当笨重且容易出错,并且可能效率低下,因为它需要工作线程在继续之前阻塞在主线程上。
那么 get_stop_token
应该如何使用?
是否有 std::jthread::get_stop_token()
的正确预期用法的简单示例?
从 here 的示例来看,get_stop_token
实际上并不打算由客户端代码使用。它由 std::jthread
在幕后调用并传递给 std::jthread
调用的函数。看来这是必须完成的方式
#include <thread>
#include <iostream>
void f(std::stop_token stop_token, int value)
{
while (!stop_token.stop_requested()) {
}
}
int main()
{
std::jthread thread(f, 5);
}
我对 std::jthread::get_stop_token
的工作原理感到困惑,因为它似乎具有固有的竞争条件。
也就是说,正在执行的线程不能简单地对自身调用 std::jthread
(如 this example),因为它不能保证 std::jthread
对象实际上是在此时构造的它开始执行。在我看来,一个线程要使用它自己的 get_stop_token
,它需要(至少)一个额外的事件(比如 std::latch
)来同步它自己的构造。
但是,我没有在网上看到任何关于此问题的示例或提及,因此在我看来这可能不是预期的用途。它确实看起来相当笨重且容易出错,并且可能效率低下,因为它需要工作线程在继续之前阻塞在主线程上。
那么 get_stop_token
应该如何使用?
是否有 std::jthread::get_stop_token()
的正确预期用法的简单示例?
从 here 的示例来看,get_stop_token
实际上并不打算由客户端代码使用。它由 std::jthread
在幕后调用并传递给 std::jthread
调用的函数。看来这是必须完成的方式
#include <thread>
#include <iostream>
void f(std::stop_token stop_token, int value)
{
while (!stop_token.stop_requested()) {
}
}
int main()
{
std::jthread thread(f, 5);
}