Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: tools/valgrind/memcheck/suppressions.txt

Issue 6780035: Use lock-free lazy initialization for static histogram references (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/socket_stream/socket_stream_metrics_unittest.cc ('k') | webkit/glue/webkitclient_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # There are three kinds of suppressions in this file. 1 # There are three kinds of suppressions in this file.
2 # 1. third party stuff we have no control over 2 # 1. third party stuff we have no control over
3 # 3 #
4 # 2. intentional unit test errors, or stuff that is somehow a false positive 4 # 2. intentional unit test errors, or stuff that is somehow a false positive
5 # in our own code, or stuff that is so trivial it's not worth fixing 5 # in our own code, or stuff that is so trivial it's not worth fixing
6 # 6 #
7 # 3. Suppressions for real chromium bugs that are not yet fixed. 7 # 3. Suppressions for real chromium bugs that are not yet fixed.
8 # These should all be in chromium's bug tracking system (but a few aren't yet). 8 # These should all be in chromium's bug tracking system (but a few aren't yet).
9 # Periodically we should sweep this file and the bug tracker clean by 9 # Periodically we should sweep this file and the bug tracker clean by
10 # running overnight and removing outdated bugs/suppressions. 10 # running overnight and removing outdated bugs/suppressions.
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 ... 870 ...
871 fun:_ZN4base13OpenTestNSSDBERK8FilePathPKc 871 fun:_ZN4base13OpenTestNSSDBERK8FilePathPKc
872 } 872 }
873 { 873 {
874 bug_61585c 874 bug_61585c
875 Memcheck:Leak 875 Memcheck:Leak
876 fun:malloc 876 fun:malloc
877 fun:PL_ArenaAllocate 877 fun:PL_ArenaAllocate
878 fun:PORT_ArenaAlloc_Util 878 fun:PORT_ArenaAlloc_Util
879 } 879 }
880 {
881 # Histograms are used on un-joined threads, and can't be deleted atexit.
882 Histograms via FactoryGet including Linear Custom Boolean and Basic
883 Memcheck:Leak
884 fun:_Znw*
885 fun:_ZN4base*Histogram10FactoryGet*
886 }
887 {
888 # Histograms are used on un-joined threads, and can't be deleted atexit.
889 Histograms via FactoryGet including Stats for disk_cache
890 Memcheck:Leak
891 fun:_Znw*
892 fun:_ZN10disk_cache14StatsHistogram24StatsHistogramFactoryGet*
893 }
880 894
881 #----------------------------------------------------------------------- 895 #-----------------------------------------------------------------------
882 # 3. Suppressions for real chromium bugs that are not yet fixed. 896 # 3. Suppressions for real chromium bugs that are not yet fixed.
883 # These should all be in chromium's bug tracking system (but a few aren't yet). 897 # These should all be in chromium's bug tracking system (but a few aren't yet).
884 898
885 { 899 {
886 # Chromium flakily leaks tasks at shutdown, see 900 # Chromium flakily leaks tasks at shutdown, see
887 # http://crbug.com/6532 901 # http://crbug.com/6532
888 # http://codereview.chromium.org/20067 902 # http://codereview.chromium.org/20067
889 # http://codereview.chromium.org/42083 903 # http://codereview.chromium.org/42083
(...skipping 3358 matching lines...) Expand 10 before | Expand all | Expand 10 after
4248 } 4262 }
4249 { 4263 {
4250 bug_todo_getdelim 4264 bug_todo_getdelim
4251 Memcheck:Leak 4265 Memcheck:Leak
4252 fun:malloc 4266 fun:malloc
4253 fun:getdelim 4267 fun:getdelim
4254 ... 4268 ...
4255 fun:call_init 4269 fun:call_init
4256 fun:_dl_init 4270 fun:_dl_init
4257 } 4271 }
OLDNEW
« no previous file with comments | « net/socket_stream/socket_stream_metrics_unittest.cc ('k') | webkit/glue/webkitclient_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698