This should fix the solaris/amd64 builder.
Change-Id: Idd6460cc9e842f7b874c9757379986aa723c974c
Reviewed-on: https://go-review.googlesource.com/12922
Reviewed-by: Austin Clements <austin@google.com>
case EvFrequency:
ticksPerSec = int64(raw.args[0])
if ticksPerSec <= 0 {
- err = fmt.Errorf("EvFrequency contains invalid frequency %v at offset 0x%x",
- ticksPerSec, raw.off)
+ // The most likely cause for this is tick skew on different CPUs.
+ // For example, solaris/amd64 seems to have wildly different
+ // ticks on different CPUs.
+ err = ErrTimeOrder
return
}
case EvTimerGoroutine: