Home
last modified time | relevance | path

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

/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_impl.h163 : my_priority_queue(priority_queue), my_allocator(allocator), my_task() {} in priority_task_selector()
166 __TBB_ASSERT(my_task, nullptr); in execute()
167 task* t_next = my_task->execute(ed); in execute()
172 if (!my_task) { in cancel()
175 __TBB_ASSERT(my_task, nullptr); in cancel()
176 task* t_next = my_task->cancel(ed); in cancel()
183 bool result = my_priority_queue.try_pop(my_task); in next_task()
186 __TBB_ASSERT(my_task && my_task != SUCCESSFULLY_ENQUEUED, in next_task()
188 __TBB_ASSERT(my_task->priority != no_priority, in next_task()
194 graph_task* my_task; variable