mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
runtime: implement runqdrain() for GC mark worker goroutines
Revive CL 310149 Change-Id: Ib4714ea5b2ade32c0f66edff841a79d8212bd79a Reviewed-on: https://go-review.googlesource.com/c/go/+/313009 Run-TryBot: Ian Lance Taylor <iant@golang.org> Run-TryBot: Michael Pratt <mpratt@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> Trust: Michael Pratt <mpratt@google.com> Trust: Michael Knyszek <mknyszek@google.com>
This commit is contained in:
parent
f34fe8e370
commit
3b304ce7fe
3 changed files with 48 additions and 8 deletions
|
|
@ -633,6 +633,9 @@ type p struct {
|
|||
// unit and eliminates the (potentially large) scheduling
|
||||
// latency that otherwise arises from adding the ready'd
|
||||
// goroutines to the end of the run queue.
|
||||
//
|
||||
// Note that while other P's may atomically CAS this to zero,
|
||||
// only the owner P can CAS it to a valid G.
|
||||
runnext guintptr
|
||||
|
||||
// Available G's (status == Gdead)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue