From: Anthony Martin Date: Tue, 26 Feb 2013 17:59:17 +0000 (-0800) Subject: runtime: fix stack cache typos X-Git-Tag: go1.1rc2~832 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=16eb2c0b7ae66dae708b4ca59f68a13652a95d6a;p=gostls13.git runtime: fix stack cache typos R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7370050 --- diff --git a/src/pkg/runtime/stack.c b/src/pkg/runtime/stack.c index d5cc3a7329..e9a35672f5 100644 --- a/src/pkg/runtime/stack.c +++ b/src/pkg/runtime/stack.c @@ -17,7 +17,7 @@ struct StackCacheNode static StackCacheNode *stackcache; static Lock stackcachemu; -// stackcacherefill/stackcacherelease implement global cache of stack segments. +// stackcacherefill/stackcacherelease implement a global cache of stack segments. // The cache is required to prevent unlimited growth of per-thread caches. static void stackcacherefill(void) @@ -33,7 +33,7 @@ stackcacherefill(void) if(n == nil) { n = (StackCacheNode*)runtime·SysAlloc(FixedStack*StackCacheBatch); if(n == nil) - runtime·throw("out of memory (staccachekrefill)"); + runtime·throw("out of memory (stackcacherefill)"); runtime·xadd64(&mstats.stacks_sys, FixedStack*StackCacheBatch); for(i = 0; i < StackCacheBatch-1; i++) n->batch[i] = (byte*)n + (i+1)*FixedStack;