Changes priority of the task group this task belongs to.
| 852 | #if __TBB_TASK_PRIORITY |
| 853 | //! Changes priority of the task group this task belongs to. |
| 854 | void set_group_priority ( priority_t p ) { prefix().context->set_priority(p); } |
| 855 | |
| 856 | //! Retrieves current priority of the task group this task belongs to. |
| 857 | priority_t group_priority () const { return prefix().context->priority(); } |
nothing calls this directly
no test coverage detected