| 304 | } |
| 305 | |
| 306 | void makeStart(const std::string& info) { |
| 307 | msg.reset(); |
| 308 | msg.set_type(MsgType::START); |
| 309 | msg.set_version(PROFILER_PROTOCOL_VERSION); |
| 310 | msg.set_info(info); /// info contains name, has_restarts, execution id |
| 311 | } |
| 312 | |
| 313 | void makeRestart(const std::string& info) { |
| 314 | msg.reset(); |
no test coverage detected