From: Anthony Martin Date: Sat, 18 May 2013 22:47:15 +0000 (-0700) Subject: runtime: fix newproc debugging print X-Git-Tag: go1.2rc2~1480 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b65271d008daae3c9b424a0519d6cf79f0583675;p=gostls13.git runtime: fix newproc debugging print R=golang-dev, remyoudompheng, r CC=golang-dev https://golang.org/cl/9249044 --- diff --git a/src/pkg/runtime/proc.c b/src/pkg/runtime/proc.c index 018a453d62..c3d82bd5c0 100644 --- a/src/pkg/runtime/proc.c +++ b/src/pkg/runtime/proc.c @@ -1491,7 +1491,7 @@ runtime·newproc1(FuncVal *fn, byte *argp, int32 narg, int32 nret, void *callerp G *newg; int32 siz; -//printf("newproc1 %p %p narg=%d nret=%d\n", fn, argp, narg, nret); +//runtime·printf("newproc1 %p %p narg=%d nret=%d\n", fn->fn, argp, narg, nret); siz = narg + nret; siz = (siz+7) & ~7;