1
0
mirror of https://github.com/golang/go synced 2024-10-04 22:31:22 -06:00
go/src/pkg/runtime/race
Rémy Oudompheng 6c4943cb51 cmd/gc: fix race instrumentation of selectors T(v).Field
Fixes #5424.

R=golang-dev, daniel.morsing, dvyukov, r
CC=golang-dev
https://golang.org/cl/9033048
2013-05-15 01:25:20 +02:00
..
testdata cmd/gc: fix race instrumentation of selectors T(v).Field 2013-05-15 01:25:20 +02:00
doc.go runtime/race: improve public documentation 2013-05-13 10:28:12 +04:00
race_darwin_amd64.syso runtime/race: switch to explicit race context instead of goroutine id's 2013-02-06 11:40:54 +04:00
race_linux_amd64.syso runtime/race: switch to explicit race context instead of goroutine id's 2013-02-06 11:40:54 +04:00
race_test.go runtime, runtime/debug, runtime/race: deflake tests 2013-04-07 11:37:37 -07:00
race_windows_amd64.syso runtime/race: switch to explicit race context instead of goroutine id's 2013-02-06 11:40:54 +04:00
race.go runtime/race: improve public documentation 2013-05-13 10:28:12 +04:00
README runtime/race: more precise handling of finalizers 2012-11-14 16:58:10 +04:00

runtime/race package contains the data race detector runtime library.
It is based on ThreadSanitizer race detector, that is currently a part of
the LLVM project.

To update the .syso files you need to:
$ svn co http://llvm.org/svn/llvm-project/compiler-rt/trunk
$ cd compiler-rt/lib/tsan/go
$ ./buildgo.sh

Tested with gcc 4.6.1 and 4.7.0.  On Windows it's built with 64-bit MinGW.