* tree-flow.h: Include new .h files. Move prototypes.
[official-gcc.git] / libsanitizer / sanitizer_common / sanitizer_symbolizer_mac.cc
bloba1b931b737e2f78b7b71b7dd63a559bc64e67710
1 //===-- sanitizer_symbolizer_mac.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 // Mac-specific implementation of symbolizer parts.
11 //===----------------------------------------------------------------------===//
12 #ifdef __APPLE__
13 #include "sanitizer_internal_defs.h"
14 #include "sanitizer_symbolizer.h"
16 namespace __sanitizer {
18 bool StartSymbolizerSubprocess(const char *path_to_symbolizer,
19 int *input_fd, int *output_fd) {
20 UNIMPLEMENTED();
23 uptr GetListOfModules(LoadedModule *modules, uptr max_modules) {
24 UNIMPLEMENTED();
27 } // namespace __sanitizer
29 #endif // __APPLE__