1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 00:07:43 +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

@ -50,7 +50,7 @@ class Client
public:
virtual void handshake() override;
Vector<Symbol> symbolicate(const String& path, const Vector<FlatPtr>& addresses);
Optional<Symbol> symbolicate(const String& path, FlatPtr address);
private:
Client();