aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2015-02-18 21:59:41 -0500
committerAustin Clements <austin@google.com>2015-02-19 15:53:23 +0000
commit1b205857a46d0241a980c1c8e548ad2e225bcbb8 (patch)
tree48bad43a3b38f897fcc9fad34a61d7b7c59e3759
parentac452349e4f40c30d50f9922bf2c4592e748ce5e (diff)
downloadgo-1b205857a46d0241a980c1c8e548ad2e225bcbb8.tar.gz
go-1b205857a46d0241a980c1c8e548ad2e225bcbb8.zip
runtime: drop unused workbufhdr.id field
Change-Id: If7729b3c7df6dc7fcd41f293e2ef2472c769fe8b Reviewed-on: https://go-review.googlesource.com/5261 Reviewed-by: Rick Hudson <rlh@golang.org>
-rw-r--r--src/runtime/mgcwork.go1
1 files changed, 0 insertions, 1 deletions
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
}