1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:18:13 +00:00

HackStudio: Use ProcessInspector instead of DebugSession where possible

This commit is contained in:
Itamar 2021-11-19 16:13:07 +02:00 committed by Linus Groh
parent 7950f5cb51
commit 94d68583fb
8 changed files with 29 additions and 21 deletions

View file

@ -18,6 +18,6 @@ struct StackFrameInfo {
FlatPtr next_ebp;
};
Optional<StackFrameInfo> get_info(DebugSession const&, FlatPtr current_ebp);
Optional<StackFrameInfo> get_info(ProcessInspector const&, FlatPtr current_ebp);
}