From 5c9768b36011cc956fb2b50d27815c7969b4965c Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 5 Feb 2013 23:59:24 +0000 Subject: [PATCH] re PR go/56172 (net FAILs on Solaris) PR go/56172 runtime: Fix argument passed to forcegchelper. From-SVN: r195774 --- libgo/runtime/mheap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgo/runtime/mheap.c b/libgo/runtime/mheap.c index 1b478f9ae83..6636b015d94 100644 --- a/libgo/runtime/mheap.c +++ b/libgo/runtime/mheap.c @@ -405,7 +405,7 @@ runtime_MHeap_Scavenger(void* dummy) // GC blocks other goroutines via the runtime_worldsema. runtime_noteclear(¬e); notep = ¬e; - __go_go(forcegchelper, (void*)¬ep); + __go_go(forcegchelper, (void*)notep); runtime_entersyscall(); runtime_notesleep(¬e); runtime_exitsyscall();