re PR go/56172 (net FAILs on Solaris)

PR go/56172
runtime: Fix argument passed to forcegchelper.

From-SVN: r195774
This commit is contained in:
Ian Lance Taylor 2013-02-05 23:59:24 +00:00
parent 64266ce69c
commit 5c9768b360

View File

@ -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();