Commit 070bfdbb authored by Kirill Smelkov's avatar Kirill Smelkov

tracing/runtime: Refresh for Go1.18

Regenerate for Go 1.18 release (go1.18-0-g4aa1efed48)

The only change is interface{} -> any.
parent 01e8697d
...@@ -106,7 +106,7 @@ type stack struct { ...@@ -106,7 +106,7 @@ type stack struct {
} }
type _panic struct { type _panic struct {
argp unsafe.Pointer // pointer to arguments of deferred call run during panic; cannot move - known to liblink argp unsafe.Pointer // pointer to arguments of deferred call run during panic; cannot move - known to liblink
arg interface{} // argument to panic arg any // argument to panic
link *_panic // link to earlier panic link *_panic // link to earlier panic
pc uintptr // where to return to in runtime if this panic is bypassed pc uintptr // where to return to in runtime if this panic is bypassed
sp unsafe.Pointer // where to return to in runtime if this panic is bypassed sp unsafe.Pointer // where to return to in runtime if this panic is bypassed
...@@ -176,8 +176,8 @@ type timer struct { ...@@ -176,8 +176,8 @@ type timer struct {
// when must be positive on an active timer. // when must be positive on an active timer.
when int64 when int64
period int64 period int64
f func(interface{}, uintptr) f func(any, uintptr)
arg interface{} arg any
seq uintptr seq uintptr
// What to set the when field to in timerModifiedXX status. // What to set the when field to in timerModifiedXX status.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment