if tag is same return tls_task_group else choose one group with tag
| 291 | |
| 292 | // if tag is same return tls_task_group else choose one group with tag |
| 293 | inline TaskGroup* get_task_group(TaskControl* c, bthread_tag_t tag) { |
| 294 | return is_same_tag(tag) ? tls_task_group : c->choose_one_group(tag); |
| 295 | } |
| 296 | |
| 297 | inline void run_in_local_task_group(TaskGroup* g, TaskMeta* next_meta, bool nosignal) { |
| 298 | if (!nosignal) { |
no test coverage detected