Home
last modified time | relevance | path

Searched refs:__thread_ (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__thread/
H A Djthread.h50__thread_(__init_thread(__stop_source_, std::forward<_Fun>(__fun), std::forward<_Args>(__args)...)… in jthread()
77 __thread_ = std::move(__other.__thread_);
86 std::swap(__thread_, __other.__thread_); in swap()
91 _LIBCPP_HIDE_FROM_ABI void join() { __thread_.join(); } in join()
93 _LIBCPP_HIDE_FROM_ABI void detach() { __thread_.detach(); } in detach()
95 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI id get_id() const noexcept { return __thread_.get_id(); } in get_id()
97 …[[nodiscard]] _LIBCPP_HIDE_FROM_ABI native_handle_type native_handle() { return __thread_.native_h… in native_handle()
125 thread __thread_; variable