mirror of
https://github.com/golang/go
synced 2024-11-22 17:54:45 -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:
parent
28882bbd33
commit
b65271d008
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user