1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Fast callstack frame decoder.

Returns only function name, doesn't retrieve inlined functions, doesn't
perform demangling.
This commit is contained in:
Bartosz Taudul
2019-03-05 02:34:35 +01:00
parent b11f932078
commit cb62b63fe2
2 changed files with 62 additions and 0 deletions
+1
View File
@@ -41,6 +41,7 @@ struct CallstackEntryData
uint8_t size;
};
const char* DecodeCallstackPtrFast( uint64_t ptr );
CallstackEntryData DecodeCallstackPtr( uint64_t ptr );
void InitCallstack();