From: Keith Randall Date: Mon, 10 Mar 2014 23:02:46 +0000 (-0700) Subject: runtime: remove unused declarations. X-Git-Tag: go1.3beta1~405 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1306279cd14e1e1e5c7645de6697bd3ab09c59aa;p=gostls13.git runtime: remove unused declarations. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/73720044 --- 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);