/usr/include/oneapi/tbb/detail
NameSizeModeActions
_aggregator.h75620644editdlrm
_aligned_space.h13990644editdlrm
_allocator_traits.h38070644editdlrm
_assert.h23920644editdlrm
_concurrent_queue_base.h263600644editdlrm
_concurrent_skip_list.h466280644editdlrm
_concurrent_unordered_base.h646560644editdlrm
_config.h203820644editdlrm
_containers_helpers.h26270644editdlrm
_exception.h27150644editdlrm
_export.h11990644editdlrm
_flow_graph_body_impl.h127760644editdlrm
_flow_graph_cache_impl.h136150644editdlrm
_flow_graph_impl.h153600644editdlrm
_flow_graph_indexer_impl.h165290644editdlrm
_flow_graph_item_buffer_impl.h103590644editdlrm
_flow_graph_join_impl.h828860644editdlrm
_flow_graph_nodes_deduction.h95320644editdlrm
_flow_graph_node_impl.h275450644editdlrm
_flow_graph_node_set_impl.h101770644editdlrm
_flow_graph_tagged_buffer_impl.h103180644editdlrm
_flow_graph_trace_impl.h159740644editdlrm
_flow_graph_types_impl.h156230644editdlrm
_hash_compare.h44880644editdlrm
_intrusive_list_node.h14620644editdlrm
_machine.h130420644editdlrm
_mutex_common.h23470644editdlrm
_namespace_injection.h8150644editdlrm
_node_handle.h51730644editdlrm
_pipeline_filters.h159050644editdlrm
_pipeline_filters_deduction.h15290644editdlrm
_range_common.h46430644editdlrm
_rtm_mutex.h47850644editdlrm
_rtm_rw_mutex.h72100644editdlrm
_scoped_lock.h50090644editdlrm
_segment_table.h247500644editdlrm
_small_object_pool.h35740644editdlrm
_string_resource.h38720644editdlrm
_task.h71160644editdlrm
_task_handle.h36880644editdlrm
_template_helpers.h135170644editdlrm
_utils.h133180644editdlrm
_waitable_atomic.h35320644editdlrm
Edit: /usr/include/oneapi/tbb/detail/_task_handle.h (3688B)
/* Copyright (c) 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #ifndef __TBB_task_handle_H #define __TBB_task_handle_H #include "_config.h" #include "_task.h" #include "_small_object_pool.h" #include "_utils.h" #include namespace tbb { namespace detail { namespace d1 { class task_group_context; class wait_context; struct execution_data; } namespace d2 { #if __TBB_PREVIEW_TASK_GROUP_EXTENSIONS class task_handle; class task_handle_task : public d1::task { std::uint64_t m_version_and_traits{}; d1::wait_context& m_wait_ctx; d1::task_group_context& m_ctx; d1::small_object_allocator m_allocator; public: void finalize(const d1::execution_data* ed = nullptr) { if (ed) { m_allocator.delete_object(this, *ed); } else { m_allocator.delete_object(this); } } task_handle_task(d1::wait_context& wo, d1::task_group_context& ctx, d1::small_object_allocator& alloc) : m_wait_ctx(wo) , m_ctx(ctx) , m_allocator(alloc) { suppress_unused_warning(m_version_and_traits); } ~task_handle_task(){ m_wait_ctx.release(); } d1::task_group_context& ctx() const { return m_ctx; } }; class task_handle { struct task_handle_task_finalizer_t{ void operator()(task_handle_task* p){ p->finalize(); } }; using handle_impl_t = std::unique_ptr; handle_impl_t m_handle = {nullptr}; public: task_handle() = default; task_handle(task_handle&&) = default; task_handle& operator=(task_handle&&) = default; explicit operator bool() const noexcept { return static_cast(m_handle); } friend bool operator==(task_handle const& th, std::nullptr_t) noexcept; friend bool operator==(std::nullptr_t, task_handle const& th) noexcept; friend bool operator!=(task_handle const& th, std::nullptr_t) noexcept; friend bool operator!=(std::nullptr_t, task_handle const& th) noexcept; private: friend struct task_handle_accessor; task_handle(task_handle_task* t) : m_handle {t}{}; d1::task* release() { return m_handle.release(); } }; struct task_handle_accessor { static task_handle construct(task_handle_task* t) { return {t}; } static d1::task* release(task_handle& th) { return th.release(); } static d1::task_group_context& ctx_of(task_handle& th) { __TBB_ASSERT(th.m_handle, "ctx_of does not expect empty task_handle."); return th.m_handle->ctx(); } }; inline bool operator==(task_handle const& th, std::nullptr_t) noexcept { return th.m_handle == nullptr; } inline bool operator==(std::nullptr_t, task_handle const& th) noexcept { return th.m_handle == nullptr; } inline bool operator!=(task_handle const& th, std::nullptr_t) noexcept { return th.m_handle != nullptr; } inline bool operator!=(std::nullptr_t, task_handle const& th) noexcept { return th.m_handle != nullptr; } #endif // __TBB_PREVIEW_TASK_GROUP_EXTENSIONS } // namespace d2 } // namespace detail } // namespace tbb #endif /* __TBB_task_handle_H */