diff options
Diffstat (limited to 'lib/sanitizer_common/sanitizer_persistent_allocator.cpp')
-rw-r--r-- | lib/sanitizer_common/sanitizer_persistent_allocator.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/sanitizer_common/sanitizer_persistent_allocator.cpp b/lib/sanitizer_common/sanitizer_persistent_allocator.cpp new file mode 100644 index 000000000000..1ca0375b8a54 --- /dev/null +++ b/lib/sanitizer_common/sanitizer_persistent_allocator.cpp @@ -0,0 +1,18 @@ +//===-- sanitizer_persistent_allocator.cpp ----------------------*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +// +// This file is shared between AddressSanitizer and ThreadSanitizer +// run-time libraries. +//===----------------------------------------------------------------------===// +#include "sanitizer_persistent_allocator.h" + +namespace __sanitizer { + +PersistentAllocator thePersistentAllocator; + +} // namespace __sanitizer |