Home
last modified time | relevance | path

Searched defs:__stop_callback_base (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__stop_token/
H A Dstop_state.h29 struct __stop_callback_base : __intrusive_node_base<__stop_callback_base> { struct
30 using __callback_fn_t = void(__stop_callback_base*) noexcept; argument
31 …_LIBCPP_HIDE_FROM_ABI explicit __stop_callback_base(__callback_fn_t* __callback_fn) : __callback_f… in __stop_callback_base() function
33 _LIBCPP_HIDE_FROM_ABI void __invoke() noexcept { __callback_fn_(this); } in __invoke()
35 __callback_fn_t* __callback_fn_;
36 atomic<bool> __completed_ = false;
37 bool* __destroyed_ = nullptr;
H A Dstop_callback.h75 friend __stop_callback_base; variable