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




_______________________________________________
lldb-commits mailing list
lldb-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to