[Lldb-commits] [PATCH] D11465: Fix "process load/unload" on android
Greg Clayton
clayborg at gmail.com
Mon Jul 27 11:36:21 PDT 2015
clayborg added a comment.
The other alternative is to have lldb_private::Platform have a new function:
class Platform
{
virtual uint32_t
LoadImage (lldb_private::Process *process, const FileSpec &image_spec, Error &error);
virtual Error
UnLoadImage (lldb_private::Process *process, uint32_t image_token);
}
Then we move the current code from Process::LoadImage() and Process::UnLoadImage() into PlatformPOSIX, and have new versions for PlatformAndroid.
http://reviews.llvm.org/D11465
More information about the lldb-commits
mailing list