Loading
[lldb][debugserver] Don't duplicate loaded binaries in jStopInfo (#195343)
RNBRemote::GetJSONThreadsInfo() has a bool mode switch: Only exception-related information information about threads which had an exception, or full information about all threads. The exception-related information is what ends up in the `jstopinfo` key in the stop packet, asciihex encoded. The full information is what is sent for the `jThreadsInfo` packet, with full information for all threads at a public stop. When I added the `added-binaries` and `detailed-binaries-info` keys to the thread description, I incorrectly put this in the exception related block of this method. Move that in to the "full information" section of the method, so we don't duplicate the information that is included in the stop packet, asciihex encoded at that. rdar://176001611