lsan_preinit.cc 746 B

123456789101112131415161718192021
  1. //===-- lsan_preinit.cc ---------------------------------------------------===//
  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 LeakSanitizer.
  9. //
  10. // Call __lsan_init at the very early stage of process startup.
  11. //===----------------------------------------------------------------------===//
  12. #include "lsan.h"
  13. #if SANITIZER_CAN_USE_PREINIT_ARRAY
  14. // We force __lsan_init to be called before anyone else by placing it into
  15. // .preinit_array section.
  16. __attribute__((section(".preinit_array"), used))
  17. void (*__local_lsan_preinit)(void) = __lsan_init;
  18. #endif