aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2014-03-10 16:02:46 -0700
committerKeith Randall <khr@golang.org>2014-03-10 16:02:46 -0700
commit1306279cd14e1e1e5c7645de6697bd3ab09c59aa (patch)
tree6fff0ec556101d40f343a83d9ab12384706685f6 /src/pkg/runtime
parentab47497d4e70fd784f93693362f4759207abc75c (diff)
downloadgo-1306279cd14e1e1e5c7645de6697bd3ab09c59aa.tar.xz
runtime: remove unused declarations.
LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/73720044
Diffstat (limited to 'src/pkg/runtime')
-rw-r--r--src/pkg/runtime/mgc0.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pkg/runtime/mgc0.c b/src/pkg/runtime/mgc0.c
index e2bf55ae53..389d0062aa 100644
--- a/src/pkg/runtime/mgc0.c
+++ b/src/pkg/runtime/mgc0.c
@@ -73,7 +73,6 @@ enum {
bitShift = sizeof(void*)*8/4,
WorkbufSize = 16*1024,
- RootBlockSize = 4*1024,
FinBlockSize = 4*1024,
handoffThreshold = 4,
@@ -256,7 +255,6 @@ static Workbuf* getfull(Workbuf*);
static void putempty(Workbuf*);
static Workbuf* handoff(Workbuf*);
static void gchelperstart(void);
-static void addfinroots(void *wbufp, void *v);
static void flushallmcaches(void);
static bool scanframe(Stkframe *frame, void *wbufp);
static void addstackroots(G *gp, Workbuf **wbufp);