diff options
author | Ptolemy <ptolemy@lindenlab.com> | 2021-07-27 15:31:15 -0700 |
---|---|---|
committer | Ptolemy <ptolemy@lindenlab.com> | 2021-09-03 17:53:43 -0700 |
commit | df5127136f9f520aa31c06ddb37ac79b6a8dc16d (patch) | |
tree | f9562fb128f8198907ed73045900e7f89fcfe205 /indra/llcommon/llthread.cpp | |
parent | 2e88a3266529714efcf8ae092819a25393540c8a (diff) |
SL-15709: Add Tracy support to viewer
Diffstat (limited to 'indra/llcommon/llthread.cpp')
-rw-r--r-- | indra/llcommon/llthread.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llcommon/llthread.cpp b/indra/llcommon/llthread.cpp index 6d531d842d..a8cc750437 100644 --- a/indra/llcommon/llthread.cpp +++ b/indra/llcommon/llthread.cpp @@ -135,6 +135,8 @@ void LLThread::threadRun() set_thread_name(-1, mName.c_str()); #endif + LL_PROFILER_SET_THREAD_NAME( mName.c_str() ); + // this is the first point at which we're actually running in the new thread mID = currentID(); |