Home | History | Annotate | Download | only in sanitizer_common
      1 //===-- sanitizer_symbolizer_mac.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 // Mac-specific implementation of symbolizer parts.
     13 //===----------------------------------------------------------------------===//
     14 #ifdef __APPLE__
     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   return false;
     24 }
     25 
     26 uptr GetListOfModules(LoadedModule *modules, uptr max_modules) {
     27   UNIMPLEMENTED();
     28   return 0;
     29 }
     30 
     31 }  // namespace __sanitizer
     32 
     33 #endif  // __APPLE__
     34