[Sanitizer] extend internal libc with stat/fstat/lstat functions
[blocksruntime.git] / lib / sanitizer_common / sanitizer_symbolizer_win.cc
blobf1b6a02a6f9a10850fa46fb9c676b323d7ddbb4a
1 //===-- sanitizer_symbolizer_win.cc ---------------------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file is shared between AddressSanitizer and ThreadSanitizer
11 // run-time libraries.
12 // Windows-specific implementation of symbolizer parts.
13 //===----------------------------------------------------------------------===//
14 #ifdef _WIN32
15 #include <windows.h>
17 #include "sanitizer_internal_defs.h"
18 #include "sanitizer_symbolizer.h"
20 namespace __sanitizer {
22 bool StartSymbolizerSubprocess(const char *path_to_symbolizer,
23 int *input_fd, int *output_fd) {
24 UNIMPLEMENTED();
27 uptr GetListOfModules(LoadedModule *modules, uptr max_modules) {
28 UNIMPLEMENTED();
31 const char *Demangle(const char *MangledName) {
32 return MangledName;
35 } // namespace __sanitizer
37 #endif // _WIN32