From: Austin Clements Date: Thu, 19 Feb 2015 02:59:41 +0000 (-0500) Subject: runtime: drop unused workbufhdr.id field X-Git-Tag: go1.5beta1~1951 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1b205857a46d0241a980c1c8e548ad2e225bcbb8;p=gostls13.git runtime: drop unused workbufhdr.id field Change-Id: If7729b3c7df6dc7fcd41f293e2ef2472c769fe8b Reviewed-on: https://go-review.googlesource.com/5261 Reviewed-by: Rick Hudson --- diff --git a/src/runtime/mgcwork.go b/src/runtime/mgcwork.go index cf5a97957f..ac02d35e73 100644 --- a/src/runtime/mgcwork.go +++ b/src/runtime/mgcwork.go @@ -14,7 +14,6 @@ const ( type workbufhdr struct { node lfnode // must be first nobj uintptr - id uintptr inuse bool // This workbuf is in use by some gorotuine and is not on the work.empty/partial/full queues. log [4]uintptr // line numbers forming a history of ownership changes to workbuf }