this_task_arena#
[scheduler.this_task_arena]
The namespace for functions applicable to the current task_arena.
The namespace this_task_arena contains global functions for interaction
with the task_arena currently used by the calling thread.
// Defined in header <oneapi/tbb/task_arena.h>
namespace oneapi {
namespace tbb {
    namespace this_task_arena {
        int current_thread_index();
        int max_concurrency();
        template<typename F> auto isolate(F&& f) -> decltype(f());
        template<typename F> void enqueue(F&& f);
        template<typename F> void enqueue(F&& f, task_group& tg);
        void enqueue(task_handle&& h);
    }
} // namespace tbb
} // namespace oneapi
- 
int current_thread_index()#
 Returns the thread index in a
task_arenacurrently used by the calling thread, ortask_arena::not_initializedif the thread has not yet initialized the task scheduler.A thread index is an integer number between 0 and the
task_arenaconcurrency level. Thread indexes are assigned to both application threads and worker threads on joining an arena and are kept until exiting the arena. Indexes of threads that share an arena are unique, that is, no two threads within the arena can have the same index at the same time - but not necessarily consecutive.Note
Since a thread may exit the arena at any time if it does not execute a task, the index of a thread may change between any two tasks, even those belonging to the same task group or algorithm.
Note
Threads that use different arenas may have the same current index value.
Note
Joining a nested arena in
execute()may change current index value while preserving the index in the outer arena which will be restored on return.
- 
int max_concurrency()#
 Returns the concurrency level of the
task_arenacurrently used by the calling thread. If the thread has not yet initialized the task scheduler, returns the concurrency level determined automatically for the hardware configuration.
- 
template<typename F>
auto isolate(F &&f) -> decltype(f())# Runs the specified functor in isolation by restricting the calling thread to process only tasks scheduled in the scope of the functor (also called the isolation region). The function returns the value returned by the functor. The
Ftype must meet the Function Objects requirements described in the [function.objects] section of the ISO C++ standard.Caution
The object returned by the functor cannot be a reference.
std::reference_wrappercan be used instead.
- 
template<typename F>
void enqueue(F &&f)# Enqueues a task into the
task_arenacurrently used by the calling thread to process the specified functor, then returns immediately. TheFtype must meet the Function Objects requirements described in the [function.objects] section of the ISO C++ standard.Behavior of this function is equivalent to
template<typename F> void task_arena::enqueue(F&& f)applied to thetask_arenaobject constructed withattachparameter.
- 
template<typename F>
void enqueue(F &&f, task_group &tg)# Adds a task to process the specified functor into
tgand enqueues it into thetask_arenacurrently used by the calling thread.The behavior of this function is equivalent to
this_task_arena::enqueue( tg.defer(std::forward<F>(f)) ).
- 
void enqueue(task_handle &&h)#
 Enqueues a task owned by
hinto thetask_arenathat is currently used by the calling thread.The behavior of this function is equivalent to the generic version (
template<typename F> void enqueue(F&& f)), except the parameter type.Note
hshould not be empty to avoid an undefined behavior.