sanitizer_persistent_allocator.cpp revision 360784
155714Skris//===-- sanitizer_persistent_allocator.cpp ----------------------*- C++ -*-===//
255714Skris//
355714Skris// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
455714Skris// See https://llvm.org/LICENSE.txt for license information.
555714Skris// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
655714Skris//
755714Skris//===----------------------------------------------------------------------===//
855714Skris//
955714Skris// This file is shared between AddressSanitizer and ThreadSanitizer
1055714Skris// run-time libraries.
1155714Skris//===----------------------------------------------------------------------===//
1255714Skris#include "sanitizer_persistent_allocator.h"
1355714Skris
1455714Skrisnamespace __sanitizer {
1555714Skris
1655714SkrisPersistentAllocator thePersistentAllocator;
1755714Skris
1855714Skris}  // namespace __sanitizer
1955714Skris