Name Date Size #Lines LOC

..--

BUILD.gnH A D25-Apr-2025936 2826

DEPSH A D25-Apr-2025159 54

LICENSEH A D25-Apr-20251.4 KiB2928

METADATAH A D25-Apr-2025281 98

MODULE_LICENSE_BSDHD25-Apr-20250

README.chromiumH A D25-Apr-20251.3 KiB2924

dynamic_annotations.cH A D25-Apr-20259.3 KiB270169

dynamic_annotations.hH A D25-Apr-202526.4 KiB598313

dynamic_annotations_compiletest.ccH A D25-Apr-2025483 112

README.chromium

1Name: dynamic annotations
2URL: http://code.google.com/p/data-race-test/wiki/DynamicAnnotations
3Version: 4384
4License: BSD
5License File: LICENSE
6Shipped: yes
7
8ATTENTION: please avoid using these annotations in Chromium code.
9They were mainly intended to instruct the Valgrind-based version of
10ThreadSanitizer to handle atomic operations. The new version of ThreadSanitizer
11based on compiler instrumentation understands atomic operations out of the box,
12so normally you don't need the annotations.
13If you still think you do, please consider writing a comment at http://crbug.com/349861
14
15One header and one source file (dynamic_annotations.h and dynamic_annotations.c)
16in this directory define runtime macros useful for annotating synchronization
17utilities and benign data races so data race detectors can handle Chromium code
18with better precision.
19
20These files were taken from
21http://code.google.com/p/data-race-test/source/browse/?#svn/trunk/dynamic_annotations
22The files are covered under BSD license as described within the files.
23
24Local modifications:
25* made lineno an unsigned short (for -Wconstant-conversion warning fixes)
26* remove two superfluous semicolons for -Wextra-semi
27* changed various size parameters to a size_t to match the underlying runtime
28  and avoid conflicts with absl's dynamic_annotations.h.
29