From f18e4e44a3e6ba037e8e05c65fde2b25048402d7 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 30 Sep 2011 14:59:46 -0400 Subject: [PATCH] runtime: disable parallel gc Breaks on Linux/386 during parallel sync tests. TBR=r CC=golang-dev https://golang.org/cl/5168044 --- src/pkg/runtime/proc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pkg/runtime/proc.c b/src/pkg/runtime/proc.c index 39e3fa0230..f050ee7661 100644 --- a/src/pkg/runtime/proc.c +++ b/src/pkg/runtime/proc.c @@ -607,6 +607,7 @@ runtime·helpgc(void) M *m; int32 n, max; +return 0; // broken on linux/386 // Figure out how many CPUs to use. // Limited by gomaxprocs, number of actual CPUs, and MaxGcproc. max = runtime·gomaxprocs; -- 2.50.0