diff options
| author | Michael Pratt <mpratt@google.com> | 2022-07-19 13:49:33 -0400 |
|---|---|---|
| committer | Michael Pratt <mpratt@google.com> | 2022-08-12 01:39:28 +0000 |
| commit | dd8cb66d0b1bf385a8acbbdc81515b301e059236 (patch) | |
| tree | c597432d852a845d21fbc229d3db550368486569 /src/runtime/runtime2.go | |
| parent | b464708b463b104849a951af54352c8a894bfbc4 (diff) | |
| download | go-dd8cb66d0b1bf385a8acbbdc81515b301e059236.tar.xz | |
runtime: convert g.goid to uint64
schedt.goidgen and p.goidcache are already uint64, this makes all cases
consistent.
The only oddball here is schedtrace which prints -1 as an equivalent for
N/A or nil. A future CL will make this more explicit.
Change-Id: I489626f3232799f6ca333d0d103b71d9d3aa7494
Reviewed-on: https://go-review.googlesource.com/c/go/+/419440
Reviewed-by: Austin Clements <austin@google.com>
Run-TryBot: Michael Pratt <mpratt@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/runtime/runtime2.go')
| -rw-r--r-- | src/runtime/runtime2.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/runtime2.go b/src/runtime/runtime2.go index a9098b8100..78a089ec9d 100644 --- a/src/runtime/runtime2.go +++ b/src/runtime/runtime2.go @@ -437,7 +437,7 @@ type g struct { param unsafe.Pointer atomicstatus uint32 stackLock uint32 // sigprof/scang lock; TODO: fold in to atomicstatus - goid int64 + goid uint64 schedlink guintptr waitsince int64 // approx time when the g become blocked waitreason waitReason // if status==Gwaiting @@ -1011,7 +1011,7 @@ type stkframe struct { // ancestorInfo records details of where a goroutine was started. type ancestorInfo struct { pcs []uintptr // pcs from the stack of this goroutine - goid int64 // goroutine id of this goroutine; original goroutine possibly dead + goid uint64 // goroutine id of this goroutine; original goroutine possibly dead gopc uintptr // pc of go statement that created this goroutine } |
