Index: src/pkg/runtime/race.c |
=================================================================== |
--- a/src/pkg/runtime/race.c |
+++ b/src/pkg/runtime/race.c |
@@ -34,9 +34,16 @@ |
void |
runtime·raceinit(void) |
{ |
+ uintptr sz; |
+ |
m->racecall = true; |
runtime∕race·Initialize(); |
- runtime∕race·MapShadow(noptrdata, enoptrbss - noptrdata); |
+ sz = (byte*)&runtime·mheap - noptrdata; |
+ if(sz) |
+ runtime∕race·MapShadow(noptrdata, sz); |
+ sz = enoptrbss - (byte*)(&runtime·mheap+1); |
+ if(sz) |
+ runtime∕race·MapShadow(&runtime·mheap+1, sz); |
m->racecall = false; |
} |