mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
runtime: resolve latent function type TODO
This was left over from the C->Go transition. Change-Id: I52494af3d49a388dc45b57210ba68292ae01cf84 Reviewed-on: https://go-review.googlesource.com/c/go/+/176897 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Austin Clements <austin@google.com>
This commit is contained in:
parent
8d212c3ac3
commit
7a43f8a5fb
2 changed files with 7 additions and 8 deletions
|
|
@ -491,11 +491,11 @@ type m struct {
|
|||
schedlink muintptr
|
||||
mcache *mcache
|
||||
lockedg guintptr
|
||||
createstack [32]uintptr // stack that created this thread.
|
||||
lockedExt uint32 // tracking for external LockOSThread
|
||||
lockedInt uint32 // tracking for internal lockOSThread
|
||||
nextwaitm muintptr // next m waiting for lock
|
||||
waitunlockf unsafe.Pointer // todo go func(*g, unsafe.pointer) bool
|
||||
createstack [32]uintptr // stack that created this thread.
|
||||
lockedExt uint32 // tracking for external LockOSThread
|
||||
lockedInt uint32 // tracking for internal lockOSThread
|
||||
nextwaitm muintptr // next m waiting for lock
|
||||
waitunlockf func(*g, unsafe.Pointer) bool
|
||||
waitlock unsafe.Pointer
|
||||
waittraceev byte
|
||||
waittraceskip int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue