diff options
author | RunitaiLinden <davep@lindenlab.com> | 2024-01-12 12:39:57 -0600 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2024-01-12 12:39:57 -0600 |
commit | 25d7828bec3e54eeceb76b77fa6b8b1527611bcf (patch) | |
tree | 688eac1f88ee36ae4556fd94cfc5b24be617a79b | |
parent | bce1434d03b780597f28be4334b5218ae1508df9 (diff) |
DRTVWR-601 Fix for Tracy instrumentation (Tracy doesn't play nice with coroutines).
-rw-r--r-- | indra/llcommon/llsingleton.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llsingleton.h b/indra/llcommon/llsingleton.h index 51ef514cf7..fba8301c4d 100644 --- a/indra/llcommon/llsingleton.h +++ b/indra/llcommon/llsingleton.h @@ -455,7 +455,7 @@ public: static DERIVED_TYPE* getInstance() { - LL_PROFILE_ZONE_SCOPED_CATEGORY_THREAD; + //LL_PROFILE_ZONE_SCOPED_CATEGORY_THREAD; // TODO -- reenable this when we have a fix for using Tracy with coroutines // We know the viewer has LLSingleton dependency circularities. If you // feel strongly motivated to eliminate them, cheers and good luck. // (At that point we could consider a much simpler locking mechanism.) |