Bartosz Taudul
Bartosz Taudul
Symbol handling is meant to be performed by libbacktrace, which theoretically is maintaned within the gcc tree, to support things such as new DWARF versions, debug data compression, symbol data...
It's not so much of a bug, rather a lack of implementation. All that has to be added for this to work is tracking the per-thread fiber state in some...
The root cause for this is 7bc8c628, where the clean target was incorrectly generalized. While in most cases the clean rule is `rm -rf $(OBJDIRBASE) $(IMAGE)*`, in case of the...
Workaround available in 9b624049. > It seems that the issue is that (in my case) this query itself is queued, but `Profiler::HandleServerQuery` seems to only receive `ServerQueryCallstackFrame` queries. (Which are...
> not all strings will get resolved under load (which somehow happens really easily at application startup due to stack sampling and resolution being slower than the amount of data...
It is a known issue. Sorry, no easy fix for this right now (I tried).
Average value is now displayed, as of 250f7ecd. Unfortunately, calculation of median value would be too performance and memory expensive.
Probably, but someone would have to do this. I no longer need to use other profilers at this moment, so I don't have much knowledge what they do, and I...
Setting and getting thread names on OSX requires usage of `pthread_id` identifiers. Tracy instead uses kernel thread ids for thread identification. `tracy::GetThreadName` will return a correct name if `TRACY_ENABLE` is...
You'd need to be able to retrieve `pthread_id` basing on the kernel thread id. How pthreads organize its identifiers is implementation defined and subject to change.