You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed a couple of (very rare) race conditions (arduino#2112)
* Fixed concurrent write to variables `err` and `n`
* Fix concurrent access to p.cmd.Process
The go-routine was spawned before the process was started. This means
that p.Kill may read p.cmd.Process before it is written in p.Run.
0 commit comments