Searched refs:__thread_ (Results 1 – 1 of 1) sorted by relevance
52 …__thread_(__init_thread(__stop_source_, std::forward<_Fun>(__fun), std::forward<_Args>(__args)...)… in jthread()79 __thread_ = std::move(__other.__thread_);88 std::swap(__thread_, __other.__thread_); in swap()93 _LIBCPP_HIDE_FROM_ABI void join() { __thread_.join(); } in join()95 _LIBCPP_HIDE_FROM_ABI void detach() { __thread_.detach(); } in detach()97 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI id get_id() const noexcept { return __thread_.get_id(); } in get_id()99 …[[nodiscard]] _LIBCPP_HIDE_FROM_ABI native_handle_type native_handle() { return __thread_.native_h… in native_handle()127 thread __thread_; variable