diff options
Diffstat (limited to 'src/runtime/runtime2.go')
| -rw-r--r-- | src/runtime/runtime2.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/runtime2.go b/src/runtime/runtime2.go index 34638d9fb3..79c8ccb6ec 100644 --- a/src/runtime/runtime2.go +++ b/src/runtime/runtime2.go @@ -676,9 +676,8 @@ type p struct { // The earliest known nextwhen field of a timer with // timerModifiedEarlier status. Because the timer may have been // modified again, there need not be any timer with this value. - // This is updated using atomic functions. // This is 0 if there are no timerModifiedEarlier timers. - timerModifiedEarliest uint64 + timerModifiedEarliest atomic.Uint64 // Per-P GC state gcAssistTime int64 // Nanoseconds in assistAlloc |
