2012-11-12 16:53:47 +01:00
|
|
|
//===-- asan_stack.cc -----------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is a part of AddressSanitizer, an address sanity checker.
|
|
|
|
//
|
|
|
|
// Code for ASan stack trace.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2013-02-13 11:46:01 +01:00
|
|
|
#include "asan_internal.h"
|
2012-11-12 16:53:47 +01:00
|
|
|
#include "asan_stack.h"
|
|
|
|
|
|
|
|
// ------------------ Interface -------------- {{{1
|
|
|
|
|
2013-12-05 11:28:59 +01:00
|
|
|
extern "C" {
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
|
|
void __sanitizer_print_stack_trace() {
|
|
|
|
using namespace __asan;
|
|
|
|
PRINT_CURRENT_STACK();
|
|
|
|
}
|
|
|
|
} // extern "C"
|