From 1306279cd14e1e1e5c7645de6697bd3ab09c59aa Mon Sep 17 00:00:00 2001 From: Keith Randall Date: Mon, 10 Mar 2014 16:02:46 -0700 Subject: [PATCH] runtime: remove unused declarations. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/73720044 --- src/pkg/runtime/mgc0.c | 2 -- 1 file changed, 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); -- 2.50.0