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:
parent
5dd555fe2f
commit
acabc37c24
4 changed files with 22 additions and 30 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue