Commit 5c9768b3 by Ian Lance Taylor

re PR go/56172 (net FAILs on Solaris)

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

From-SVN: r195774
parent 64266ce6
...@@ -405,7 +405,7 @@ runtime_MHeap_Scavenger(void* dummy) ...@@ -405,7 +405,7 @@ runtime_MHeap_Scavenger(void* dummy)
// GC blocks other goroutines via the runtime_worldsema. // GC blocks other goroutines via the runtime_worldsema.
runtime_noteclear(&note); runtime_noteclear(&note);
notep = &note; notep = &note;
__go_go(forcegchelper, (void*)&notep); __go_go(forcegchelper, (void*)notep);
runtime_entersyscall(); runtime_entersyscall();
runtime_notesleep(&note); runtime_notesleep(&note);
runtime_exitsyscall(); runtime_exitsyscall();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment