[Sanitizer] extend internal libc with stat/fstat/lstat functions
[blocksruntime.git] / lib / sanitizer_common / sanitizer_symbolizer_mac.cc
blob23993607e77b5735c5df3c206306020c84c0935e
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"
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 } // namespace __sanitizer
31 #endif // __APPLE__