From: Ian Lance Taylor Date: Tue, 5 Feb 2013 23:59:24 +0000 (+0000) Subject: re PR go/56172 (net FAILs on Solaris) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5c9768b36011cc956fb2b50d27815c7969b4965c;p=gcc.git re PR go/56172 (net FAILs on Solaris) PR go/56172 runtime: Fix argument passed to forcegchelper. From-SVN: r195774 --- 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();