blob: 39c3ad1731902b8d8f70bc45d213db804be7342f [file] [log] [blame]
//===-- sanitizer_symbolizer_win.cc ---------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file is shared between AddressSanitizer and ThreadSanitizer
// run-time libraries.
// Windows-specific implementation of symbolizer parts.
//===----------------------------------------------------------------------===//
#ifdef _WIN32
#include <windows.h>
#include "sanitizer_internal_defs.h"
#include "sanitizer_symbolizer.h"
namespace __sanitizer {
bool FindDWARFSection(uptr object_file_addr, const char *section_name,
DWARFSection *section) {
UNIMPLEMENTED();
return false;
}
uptr GetListOfModules(ModuleDIContext *modules, uptr max_modules) {
UNIMPLEMENTED();
return 0;
};
} // namespace __sanitizer
#endif // _WIN32