Commit 86dedeba by Ian Lance Taylor

runtime: Correct flag (FlagNoGC => FlagNoInvokeGC).

From-SVN: r204617
parent 5275f3e5
...@@ -78,7 +78,7 @@ runtime_mallocgc(uintptr size, uintptr typ, uint32 flag) ...@@ -78,7 +78,7 @@ runtime_mallocgc(uintptr size, uintptr typ, uint32 flag)
flag |= FlagNoGC; flag |= FlagNoGC;
} }
if(runtime_gcwaiting() && g != m->g0 && m->locks == 0 && !(flag & FlagNoGC)) { if(runtime_gcwaiting() && g != m->g0 && m->locks == 0 && !(flag & FlagNoInvokeGC)) {
runtime_gosched(); runtime_gosched();
m = runtime_m(); m = runtime_m();
} }
......
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