Files
ladybird/Userland/Services/SymbolServer/SymbolServer.ipc
Andreas Kling acabc37c24 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.
2021-02-04 23:35:10 +01:00

7 lines
167 B
Plaintext

endpoint SymbolServer = 4541510
{
Greet() => ()
Symbolicate(String path, u32 address) => (bool success, String name, u32 offset, String filename, u32 line)
}