summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authortimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-30 10:30:22 +0000
committertimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-30 10:30:22 +0000
commit26a61c6d0b7ec22cd3e763ff00dc852315feb605 (patch)
treebafe65a8c88d329aecb94bbb4d13dcf8f1de36bf /tools
parentf5041224e9f58e0d3f981be751a138a83dafa165 (diff)
downloadchromium_src-26a61c6d0b7ec22cd3e763ff00dc852315feb605.zip
chromium_src-26a61c6d0b7ec22cd3e763ff00dc852315feb605.tar.gz
chromium_src-26a61c6d0b7ec22cd3e763ff00dc852315feb605.tar.bz2
Ignore memory accesses in talk_base::CriticalSection::CurrentThreadIsOwner()
TEST=remoting should become green on TSan bot TBR=glider BUG=53766 Review URL: http://codereview.chromium.org/3254006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57847 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/valgrind/tsan/ignores.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/valgrind/tsan/ignores.txt b/tools/valgrind/tsan/ignores.txt
index 1517faf..e3f6476 100644
--- a/tools/valgrind/tsan/ignores.txt
+++ b/tools/valgrind/tsan/ignores.txt
@@ -97,3 +97,9 @@ fun_r:threadLockingTest
# There is a benign race which is hard to suppress properly,
# see http://crbug.com/44580
fun_r:*ChromeThread*GetCurrentThreadIdentifier*
+
+# Ignore accesses in talk_base::CriticalSection::CurrentThreadIsOwner()
+# There is a benign race but we don't have dynamic_annotations in libjingle
+# so we ignore the function instead of annotating it (for now).
+# See http://crbug.com/53766
+fun:*talk_base*CriticalSection*CurrentThreadIsOwner*