On Mon, Oct 13, 2025 at 5:17 PM Duncan Harris <
dun...@harris3.org> wrote:
>
> Is it safe to make calls to time.Timer.Reset on the same timer instance from multiple goroutines? Or should these always be done in the same goroutine?
It is safe in the sense that the program will not crash and the timer
data structures will be fine. Of course it is unpredictable which
Reset will finally take effect.
Ian