1 //===-- sanitizer_symbolizer_win.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 shared between AddressSanitizer and ThreadSanitizer 9 // run-time libraries. 10 // Windows-specific implementation of symbolizer parts. 11 //===----------------------------------------------------------------------===// 12 #ifdef _WIN32 13 #include <windows.h> 14 15 #include "sanitizer_internal_defs.h" 16 #include "sanitizer_symbolizer.h" 17 18 namespace __sanitizer { 19 20 bool StartSymbolizerSubprocess(const char *path_to_symbolizer, 21 int *input_fd, int *output_fd) { 22 UNIMPLEMENTED(); 23 } 24 25 uptr GetListOfModules(LoadedModule *modules, uptr max_modules) { 26 UNIMPLEMENTED(); 27 }; 28 29 const char *Demangle(const char *MangledName) { 30 return MangledName; 31 } 32 33 } // namespace __sanitizer 34 35 #endif // _WIN32 36