From fa4628346b78f8847f11166d52d250abb6cb50df Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Mon, 12 Aug 2013 21:48:19 +0400 Subject: runtime: remove unused m->racepc The original plan was to collect allocation stacks for all memory blocks. But it was never implemented and it's not in near plans and it's unclear how to do it at all. R=golang-dev, dave, bradfitz CC=golang-dev https://golang.org/cl/12724044 --- src/pkg/runtime/runtime.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/pkg/runtime/runtime.h') diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h index a3edb5e955..a81408f40f 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h @@ -339,7 +339,6 @@ struct M GCStats gcstats; bool racecall; bool needextram; - void* racepc; void (*waitunlockf)(Lock*); void* waitlock; -- cgit v1.3-5-g9baa