| 28 | } |
| 29 | |
| 30 | ActorStateStatistics::Sample::Sample(seissol::time_stepping::ActorState state) |
| 31 | : state(state), end(std::nullopt), numEnteredRegion(0) { |
| 32 | clock_gettime(CLOCK_MONOTONIC, &begin); |
| 33 | } |
| 34 | void ActorStateStatistics::Sample::finish() { |
| 35 | timespec endTime{}; |
| 36 | clock_gettime(CLOCK_MONOTONIC, &endTime); |
nothing calls this directly
no outgoing calls
no test coverage detected