]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix newproc debugging print
authorAnthony Martin <ality@pbrane.org>
Sat, 18 May 2013 22:47:15 +0000 (15:47 -0700)
committerAnthony Martin <ality@pbrane.org>
Sat, 18 May 2013 22:47:15 +0000 (15:47 -0700)
R=golang-dev, remyoudompheng, r
CC=golang-dev
https://golang.org/cl/9249044

src/pkg/runtime/proc.c

index 018a453d629b582878019402a1d127103c54f3f9..c3d82bd5c08ca275b9a48efaaef2419d1650396d 100644 (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;