1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 08:55:06 +00:00
serenity/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

6 lines
167 B
Text

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