This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository compiler-rt.
from ab3db6093 [sanitizer] Enabled getpw_getgr.cc on iOS new 821782341 [scudo][standalone] Introduce the C & C++ wrappers
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: lib/scudo/standalone/CMakeLists.txt | 75 +++++--- lib/scudo/standalone/tests/CMakeLists.txt | 44 +++-- lib/scudo/standalone/tests/wrappers_c_test.cc | 225 ++++++++++++++++++++++++ lib/scudo/standalone/tests/wrappers_cpp_test.cc | 117 ++++++++++++ lib/scudo/standalone/tsd.h | 5 + lib/scudo/standalone/wrappers_c.cc | 39 ++++ lib/scudo/standalone/wrappers_c.h | 52 ++++++ lib/scudo/standalone/wrappers_c.inc | 176 ++++++++++++++++++ lib/scudo/standalone/wrappers_c_bionic.cc | 49 ++++++ lib/scudo/standalone/wrappers_c_checks.h | 56 ++++++ lib/scudo/standalone/wrappers_cpp.cc | 107 +++++++++++ 11 files changed, 909 insertions(+), 36 deletions(-) create mode 100644 lib/scudo/standalone/tests/wrappers_c_test.cc create mode 100644 lib/scudo/standalone/tests/wrappers_cpp_test.cc create mode 100644 lib/scudo/standalone/wrappers_c.cc create mode 100644 lib/scudo/standalone/wrappers_c.h create mode 100644 lib/scudo/standalone/wrappers_c.inc create mode 100644 lib/scudo/standalone/wrappers_c_bionic.cc create mode 100644 lib/scudo/standalone/wrappers_c_checks.h create mode 100644 lib/scudo/standalone/wrappers_cpp.cc