| 182 | } |
| 183 | |
| 184 | static double get_cumulated_cputime_from_this(void* arg) { |
| 185 | return static_cast<TaskGroup*>(arg)->cumulated_cputime_ns() / 1000000000.0; |
| 186 | } |
| 187 | |
| 188 | int64_t TaskGroup::cumulated_cputime_ns() const { |
| 189 | CPUTimeStat cpu_time_stat = _cpu_time_stat.load(); |
nothing calls this directly
no test coverage detected