GP-5566: first/last? changes for ghidra

GP-5566: fix for J

GP-5566: minor fixes

GP-5566: icons decl proper

GP-5566: minor tweaks

GP-5566: post-review

GP-5566: minor

GP-5566: mo better monitor logic

GP-5566: minor fix
This commit is contained in:
d-millar 2025-07-25 15:15:47 +00:00
parent b25e7c12a1
commit f5572ede99
21 changed files with 229 additions and 26 deletions

View file

@ -184,6 +184,10 @@ public class ResolveX86orX64LinuxSyscallsScript extends GhidraScript {
funcName = syscallNumbersToNames.get(offset);
}
callee = createFunction(callTarget, funcName);
if (callee == null) {
Msg.warn(this, "Unable to create function at "+callTarget);
continue;
}
callee.setCallingConvention(callingConvention);
//check if the function name is one of the non-returning syscalls