[lldb-dev] Code ownership resignation

2016-11-16 Thread Enrico Granata via lldb-dev
Hi, as some of you likely already know I will be leaving Apple at the end of November This career change also means I will not be as involved in lldb as I have been in the past. It also means I don't believe I would be doing the best interest of the community by serving as a code owner. For t

Re: [lldb-dev] "image search-paths add" removes all breakpoints from remote server

2016-11-16 Thread Ted Woodward via lldb-dev
I tried having SetExecutableModule call ModuleDidLoad after appending the executable to m_images, but it didn't work. It eventually drills down to call GetSectionLoadList, which is empty. Probably because the module list got cleared. Any thoughts on how to clean up the new module list, and add

Re: [lldb-dev] "image search-paths add" removes all breakpoints from remote server

2016-11-16 Thread Jim Ingham via lldb-dev
> On Nov 16, 2016, at 12:03 PM, Ted Woodward via lldb-dev > wrote: > > Is “image search-paths add” supposed to remove all breakpoints from the > remote server? I don’t think it should be doing this. > > PathMappingList::Append calls Target::ImageSearchPathsChanged, which calls > Target::Set

[lldb-dev] "image search-paths add" removes all breakpoints from remote server

2016-11-16 Thread Ted Woodward via lldb-dev
Is "image search-paths add" supposed to remove all breakpoints from the remote server? I don't think it should be doing this. PathMappingList::Append calls Target::ImageSearchPathsChanged, which calls Target::SetExecutableModule, which calls Target::ClearModules, which removes the breakpoints.