Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(770)

Unified Diff: src/pkg/runtime/race.c

Issue 6849057: code review 6849057: runtime: hide mheap from race detector (Closed)
Patch Set: diff -r bb031a90ceea https://dvyukov%40google.com@code.google.com/p/go/ Created 12 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b