aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2013-02-05 23:59:24 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2013-02-05 23:59:24 +0000
commit5c9768b36011cc956fb2b50d27815c7969b4965c (patch)
treec02d7988f6818b91d1966d91db0773e180fb8734 /libgo/runtime
parent64266ce69c4ef166aa6c5f270d7484dd55893dba (diff)
downloadgcc-5c9768b36011cc956fb2b50d27815c7969b4965c.zip
gcc-5c9768b36011cc956fb2b50d27815c7969b4965c.tar.gz
gcc-5c9768b36011cc956fb2b50d27815c7969b4965c.tar.bz2
re PR go/56172 (net FAILs on Solaris)
PR go/56172 runtime: Fix argument passed to forcegchelper. From-SVN: r195774
Diffstat (limited to 'libgo/runtime')
-rw-r--r--libgo/runtime/mheap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/mheap.c b/libgo/runtime/mheap.c
index 1b478f9..6636b01 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(&note);
notep = &note;
- __go_go(forcegchelper, (void*)&notep);
+ __go_go(forcegchelper, (void*)notep);
runtime_entersyscall();
runtime_notesleep(&note);
runtime_exitsyscall();