Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
terminal: do not use WaitSince as unix time (go-delve#3139)
g.waitsince is the output of runtime.nanotime and represents a monotonic clock which can not be converted directly into unix time. A better fix would be to convert it to a time.Duration by reading the current value of runtime.nanotime. This is complicated, however, because on some systems (for example macOS) the current value of runtime.nanotime can only be read by making a system call. Updates go-delve#3137
- Loading branch information