asan_activation.h 655 B

12345678910111213141516171819202122
  1. //===-- asan_activation.h ---------------------------------------*- C++ -*-===//
  2. //
  3. // This file is distributed under the University of Illinois Open Source
  4. // License. See LICENSE.TXT for details.
  5. //
  6. //===----------------------------------------------------------------------===//
  7. //
  8. // This file is a part of AddressSanitizer, an address sanity checker.
  9. //
  10. // ASan activation/deactivation logic.
  11. //===----------------------------------------------------------------------===//
  12. #ifndef ASAN_ACTIVATION_H
  13. #define ASAN_ACTIVATION_H
  14. namespace __asan {
  15. void AsanStartDeactivated();
  16. void AsanActivate();
  17. } // namespace __asan
  18. #endif // ASAN_ACTIVATION_H