True iff current task is in pthread-mode.
| 175 | bool is_current_main_task() const { return current_tid() == _main_tid; } |
| 176 | // True iff current task is in pthread-mode. |
| 177 | bool is_current_pthread_task() const |
| 178 | { return _cur_meta->stack == _main_stack; } |
| 179 | |
| 180 | // Active time in nanoseconds spent by this TaskGroup. |
| 181 | int64_t cumulated_cputime_ns() const; |
no outgoing calls
no test coverage detected