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

Merge pull request #359 from robertblaketaylor/master

Set thread init false on thread exit for manual lifetime cases
This commit is contained in:
Bartosz Taudul
2022-04-05 20:35:02 +02:00
committed by GitHub
+5
View File
@@ -14,6 +14,10 @@
namespace tracy
{
#ifdef TRACY_MANUAL_LIFETIME
extern thread_local bool RpThreadInitDone;
#endif
class ThreadExitHandler
{
public:
@@ -21,6 +25,7 @@ public:
{
#ifdef TRACY_MANUAL_LIFETIME
rpmalloc_thread_finalize();
RpThreadInitDone = false;
#endif
}
};