Hello golang-dev@googlegroups.com, I'd like you to review this change to https://code.google.com/p/go/
LGTM On Tue, Feb 26, 2013 at 9:48 AM, <ality@pbrane.org> wrote: > Reviewers: golang-dev_googlegroups.com, > > Message: > Hello golang-dev@googlegroups.com, > > I'd like you to review this change to > https://code.google.com/p/go/ > > > Description: > runtime: fix stack cache typos > > Please review this at https://codereview.appspot.**com/7370050/<https://codereview.appspot.com/7370... > > Affected files: > M src/pkg/runtime/stack.c > > > Index: src/pkg/runtime/stack.c > ==============================**==============================**======= > --- a/src/pkg/runtime/stack.c > +++ b/src/pkg/runtime/stack.c > @@ -17,7 +17,7 @@ > 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 @@ > 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; > > > -- > > ---You received this message because you are subscribed to the Google > Groups "golang-dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to golang-dev+unsubscribe@**googlegroups.com<golang-dev%2Bunsubscribe@googlegrou... > . > For more options, visit https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/o... > . > > >
*** Submitted as https://code.google.com/p/go/source/detail?r=988d73fb1a18 *** runtime: fix stack cache typos R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/7370050