This MR improves WineDbg when it's used with a minidump as debuggee: - commands 'bt <tid>' and 'bt all' now return content from the minidump, - 'bt' commands now prints the thread name/description when available (either for an active debuggee or a debuggee from a minidump), - 'info thread' now prints threads from the minidump, - a bunch of (other) 'info' commands are now inactive when attached to a minidump as they only reflect the active system. Note: as a pid or tid from a minidump can match the one of an active thread/process, we really have not to access the active system when attached to a minidump. There are still some other commands to be fixed accordingly. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10562