mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-09 02:56:10 +00:00
Profiler: Make everything east-const :^)
This commit is contained in:
parent
cf8427b7b4
commit
ddccf451a9
Notes:
sideshowbarker
2024-07-17 22:02:24 +09:00
Author: https://github.com/sunverwerth
Commit: ddccf451a9
Pull-request: https://github.com/SerenityOS/serenity/pull/11436
Reviewed-by: https://github.com/Hendiadyoin1
Reviewed-by: https://github.com/linusg
16 changed files with 68 additions and 68 deletions
|
@ -34,11 +34,11 @@ public:
|
|||
mutable OwnPtr<Debug::DebugInfo> debug_info;
|
||||
|
||||
String symbolicate(FlatPtr, u32* offset) const;
|
||||
const Debug::DebugInfo& load_debug_info(FlatPtr base_address) const;
|
||||
Debug::DebugInfo const& load_debug_info(FlatPtr base_address) const;
|
||||
};
|
||||
|
||||
void handle_mmap(FlatPtr base, size_t size, const String& name);
|
||||
const Library* library_containing(FlatPtr) const;
|
||||
void handle_mmap(FlatPtr base, size_t size, String const& name);
|
||||
Library const* library_containing(FlatPtr) const;
|
||||
|
||||
private:
|
||||
mutable HashMap<String, NonnullOwnPtr<Library>> m_libraries;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue