gecko/tools/profiler/shim_mac_dump_syms.mm
Julian Seward e74cad535a Bug 779291: Implement SPS stackwalk using the breakpad unwinder. r=bgirard,glandium
bug 850089 - fix SPS with disable-crashreporter. Patch by Ted Mielczarek <ted@mielczarek.org>, r=glandium
Bug 850132 - SPS breakpad unwind (bug 779291) breaks Win64 builds with "Unsupported platform". Patch by Makoto Kato <m_kato@ga2.so-net.ne.jp>, r=ted
2013-03-10 23:00:23 +01:00

21 lines
573 B
C++

// -*- mode: c++ -*-
#include "common/mac/dump_syms.h"
#include "shim_mac_dump_syms.h"
bool ReadSymbolData(const string& obj_file,
const std::vector<string> &debug_dirs,
SymbolData symbol_data,
google_breakpad::Module** module)
{
google_breakpad::DumpSymbols ds(symbol_data);
NSString* obj_file_ns = [NSString stringWithUTF8String:obj_file.c_str()];
// TODO: remember to [obj_file_ns release] this at the exit points
if (!ds.Read(obj_file_ns))
return false;
return ds.ReadSymbolData(module);
}