Home | History | Annotate | Line # | Download | only in asan
      1  1.1  kamil //===-- asan_activation.h ---------------------------------------*- C++ -*-===//
      2  1.1  kamil //
      3  1.1  kamil //                     The LLVM Compiler Infrastructure
      4  1.1  kamil //
      5  1.1  kamil // This file is distributed under the University of Illinois Open Source
      6  1.1  kamil // License. See LICENSE.TXT for details.
      7  1.1  kamil //
      8  1.1  kamil //===----------------------------------------------------------------------===//
      9  1.1  kamil //
     10  1.1  kamil // This file is a part of AddressSanitizer, an address sanity checker.
     11  1.1  kamil //
     12  1.1  kamil // ASan activation/deactivation logic.
     13  1.1  kamil //===----------------------------------------------------------------------===//
     14  1.1  kamil 
     15  1.1  kamil #ifndef ASAN_ACTIVATION_H
     16  1.1  kamil #define ASAN_ACTIVATION_H
     17  1.1  kamil 
     18  1.1  kamil namespace __asan {
     19  1.1  kamil void AsanDeactivate();
     20  1.1  kamil void AsanActivate();
     21  1.1  kamil }  // namespace __asan
     22  1.1  kamil 
     23  1.1  kamil #endif  // ASAN_ACTIVATION_H
     24