Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2020-03-27 19:34:51 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2020-03-27 19:34:51 +0300
commit4c381e13e9de47b8de856c84fc0b9ac98a844dcd (patch)
treea040b67203ed224b9de1450d6f13da017e4cf59d /server/TracyEvent.hpp
parent52a853b26ff3a26b06a9f43dbe1cc7e51a631872 (diff)
Store list of symbol locations.
Diffstat (limited to 'server/TracyEvent.hpp')
-rw-r--r--server/TracyEvent.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp
index 853cfe1e..d970b981 100644
--- a/server/TracyEvent.hpp
+++ b/server/TracyEvent.hpp
@@ -339,6 +339,16 @@ enum { CallstackFrameBasicSize = sizeof( CallstackFrameBasic ) };
enum { CallstackFrameSize = sizeof( CallstackFrame ) };
enum { SymbolDataSize = sizeof( SymbolData ) };
+
+struct SymbolLocation
+{
+ uint64_t addr;
+ uint32_t len;
+};
+
+enum { SymbolLocationSize = sizeof( SymbolLocation ) };
+
+
struct CallstackFrameData
{
short_ptr<CallstackFrame> data;