| 161 | }; |
| 162 | |
| 163 | struct hs_longrun_stat { |
| 164 | unsigned long long verify_error_count; |
| 165 | unsigned long long runtime_error_count; |
| 166 | unsigned long long unknown_count; |
| 167 | unsigned long long success_count; |
| 168 | hs_longrun_stat() |
| 169 | : verify_error_count(0), runtime_error_count(0), |
| 170 | unknown_count(0), success_count(0) { } |
| 171 | void add(const hs_longrun_stat& x) { |
| 172 | verify_error_count += x.verify_error_count; |
| 173 | runtime_error_count += x.runtime_error_count; |
| 174 | unknown_count += x.unknown_count; |
| 175 | success_count += x.success_count; |
| 176 | } |
| 177 | }; |
| 178 | |
| 179 | struct hs_longrun_thread_base : public thread_base { |
| 180 | struct arg_type { |
nothing calls this directly
no outgoing calls
no test coverage detected