* configure.ac: Change target-libasan to target-libsanitizer.
[official-gcc.git] / libsanitizer / sanitizer_common / sanitizer_symbolizer_win.cc
blob7e6ba53e128a4c33f55f8c5a358ca976cc5478f5
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();
23 return false;
26 uptr GetListOfModules(LoadedModule *modules, uptr max_modules) {
27 UNIMPLEMENTED();
28 return 0;
31 } // namespace __sanitizer
33 #endif // _WIN32