| 20 | } |
| 21 | |
| 22 | struct timeabs clock_time_progresses_(u64 *progress) |
| 23 | { |
| 24 | if (!clock_time_overridden()) |
| 25 | return clock_time(); |
| 26 | |
| 27 | return timeabs_add(dev_override, time_from_sec((*progress)++)); |
| 28 | } |
| 29 | |
| 30 | void dev_override_clock_time(struct timeabs now) |
| 31 | { |
nothing calls this directly
no test coverage detected