]> Cypherpunks repositories - gostls13.git/commit
runtime: use gList in netpoll
authorAustin Clements <austin@google.com>
Fri, 10 Aug 2018 04:09:00 +0000 (00:09 -0400)
committerAustin Clements <austin@google.com>
Mon, 20 Aug 2018 18:19:25 +0000 (18:19 +0000)
commitde990545c3ce65926491c123bb2536168cd21cf3
treee5966aff4ace34d0a613af885f22c8da394e7d56
parent3578918b6614effaeaa581687d810b74e342e0f8
runtime: use gList in netpoll

netpoll is perhaps one of the most confusing uses of G lists currently
since it passes around many lists as bare *g values right now.
Switching to gList makes it much clearer what's an individual g and
what's a list.

Change-Id: I8d8993c4967c5bae049c7a094aad3a657928ba6c
Reviewed-on: https://go-review.googlesource.com/129397
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Rick Hudson <rlh@golang.org>
src/runtime/netpoll.go
src/runtime/netpoll_epoll.go
src/runtime/netpoll_fake.go
src/runtime/netpoll_kqueue.go
src/runtime/netpoll_solaris.go
src/runtime/netpoll_stub.go
src/runtime/netpoll_windows.go
src/runtime/proc.go