asan_activation.h 736 B

12345678910111213141516171819202122
  1. //===-- asan_activation.h ---------------------------------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // This file is a part of AddressSanitizer, an address sanity checker.
  10. //
  11. // ASan activation/deactivation logic.
  12. //===----------------------------------------------------------------------===//
  13. #ifndef ASAN_ACTIVATION_H
  14. #define ASAN_ACTIVATION_H
  15. namespace __asan {
  16. void AsanDeactivate();
  17. void AsanActivate();
  18. } // namespace __asan
  19. #endif // ASAN_ACTIVATION_H