0
0
mirror of https://github.com/wolfpld/tracy.git synced 2026-01-18 17:11:26 +01:00

-Set thread init false on thread exit for manual lifetime cases

This commit is contained in:
Blake Taylor
2022-04-05 09:12:05 -07:00
parent 3d28d1259b
commit c176d1d603

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
}
};