1
0
mirror of https://github.com/golang/go synced 2024-11-22 22:00:02 -07:00

runtime: fix newproc debugging print

R=golang-dev, remyoudompheng, r
CC=golang-dev
https://golang.org/cl/9249044
This commit is contained in:
Anthony Martin 2013-05-18 15:47:15 -07:00
parent 28882bbd33
commit b65271d008

View File

@ -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;