summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunitaiLinden <davep@lindenlab.com>2024-01-12 12:39:57 -0600
committerRunitaiLinden <davep@lindenlab.com>2024-01-12 12:39:57 -0600
commit25d7828bec3e54eeceb76b77fa6b8b1527611bcf (patch)
tree688eac1f88ee36ae4556fd94cfc5b24be617a79b
parentbce1434d03b780597f28be4334b5218ae1508df9 (diff)
DRTVWR-601 Fix for Tracy instrumentation (Tracy doesn't play nice with coroutines).
-rw-r--r--indra/llcommon/llsingleton.h2
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.)