mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
Merge remote-tracking branch 'origin/GP-3895_d-millar_dbgeng_exe_name'
(#5817)
This commit is contained in:
commit
19e32acd90
13 changed files with 96 additions and 24 deletions
|
@ -1058,4 +1058,9 @@ public class WrappedDbgModel
|
|||
client.getSymbols().setCurrentScopeFrameIndex(index);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCurrentProcessExecutableName() {
|
||||
return client.getSystemObjects().getCurrentProcessExecutableName();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -578,7 +578,7 @@ public class DbgModel2TargetRootImpl extends DbgModel2DefaultTargetModelRoot
|
|||
activate((DbgModelTargetExecutionStateful) obj);
|
||||
// OK, this sucks, but not all threads are parented to activated objects
|
||||
DbgModelTargetProcess parentProcess = ((DbgModelTargetObject) obj).getParentProcess();
|
||||
if (obj instanceof DbgModelTargetExecutionStateful) {
|
||||
if (parentProcess != null && obj instanceof DbgModelTargetExecutionStateful) {
|
||||
activate(parentProcess);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue