Daily bump.
[official-gcc.git] / libsanitizer / sanitizer_common / sanitizer_symbolizer_win.cc
blobad0053234f06def454a8fecefeaef9aaa61b7637
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>
15 #include "sanitizer_internal_defs.h"
16 #include "sanitizer_symbolizer.h"
18 namespace __sanitizer {
20 bool StartSymbolizerSubprocess(const char *path_to_symbolizer,
21 int *input_fd, int *output_fd) {
22 UNIMPLEMENTED();
25 uptr GetListOfModules(LoadedModule *modules, uptr max_modules) {
26 UNIMPLEMENTED();
29 const char *Demangle(const char *MangledName) {
30 return MangledName;
33 } // namespace __sanitizer
35 #endif // _WIN32