1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:07:34 +00:00

SymbolServer+LibSymbolClient: Just do one symbol per IPC message

I originally wanted to batch the symbolication requests but that just
makes the client logic significantly more complicated with no real
benefit other than architectural feelgood points.
This commit is contained in:
Andreas Kling 2021-02-04 23:33:27 +01:00
parent 5dd555fe2f
commit acabc37c24
4 changed files with 22 additions and 30 deletions

View file

@ -2,5 +2,5 @@ endpoint SymbolServer = 4541510
{
Greet() => ()
Symbolicate(String path, Vector<u32> addresses) => (bool success, Vector<String> symbols)
Symbolicate(String path, u32 address) => (bool success, String name, u32 offset, String filename, u32 line)
}