GP-3583: Fix race in module arch detection. Set longMode bit. Add compat32 ldef.

This commit is contained in:
Dan 2023-06-28 13:56:09 -04:00
parent bdd2143f98
commit 0c39626b73
6 changed files with 200 additions and 10 deletions

View file

@ -45,6 +45,9 @@ public abstract class AbstractDbgReadCommand extends AbstractDbgCommand<ULongSpa
@Override
public ULongSpanSet complete(DbgPendingCommand<?> pending) {
if (readLen == 0) {
return ULongSpanSet.of();
}
return ULongSpanSet.of(ULongSpan.extent(addr, readLen));
}
}