Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-12-11Immediately disconnect connection on disconnect request.Bartosz Taudul
The disconnect handling logic is broken on the client, after the symbol resolution was moved to a separate thread. Use workaround until a proper fix is available.
2021-12-08Call SymLoadModuleEx for modules loaded after initLectem
This fixes issue #293. Symbols are not loaded if the module is loaded dynamically after the SymInitialize call. This may stall the symbol resolver thread a bit the first time a module is loaded.
2021-12-07Merge pull request #290 from Honeybunch/masterBartosz Taudul
Exporting cmake targets for install
2021-12-06Exporting cmake targets for installHoneybunch
2021-12-05Use perf_event_open for context switch tracking.Bartosz Taudul
2021-12-05Optional CPU idx storage in RingBuffer.Bartosz Taudul
2021-12-05Extend process state descriptions, add P (parked).Bartosz Taudul
2021-12-05Proper mmap failure detection.Bartosz Taudul
2021-12-05Don't identify samples if there will be no context switches.Bartosz Taudul
2021-12-04Merge pull request #289 from napoleon89/c-is-connectedBartosz Taudul
Added IsConnected C API Equivalent
2021-12-04Proper formatting.Bartosz Taudul
2021-12-04Updated documentationNathan Day
2021-12-04Added IsConnected C API EquivalentNathan Day
2021-12-04Only identify samples when IdentifySamples is set.Bartosz Taudul
2021-12-04Add IdentifySamples flag to the protocol.Bartosz Taudul
On Windows there is no way to distinguish callstack data coming from random sampling and from context switches. Each callstack timestamp has to be matched against the context switch data in order to decide its origin. This is obviously non-trivial. On some other platforms, the origin information may be available right away, in which case the process of matching against the context switch data, which possibly includes postponing callstacks for processing in the future, may be completely omitted.
2021-12-04Silence compiler warnings.Bartosz Taudul
2021-12-02Update manual.Bartosz Taudul
2021-12-02Add support for sample data without time.Bartosz Taudul
2021-12-02Don't require time to be available for samples.Bartosz Taudul
2021-12-02Display sampling disabled message on debug log channel.Bartosz Taudul
2021-12-01Update xxHash to 0.8.1.Bartosz Taudul
2021-12-01Update robin_hood to 3.11.3.Bartosz Taudul
2021-12-01Show tooltip on disabled item.Bartosz Taudul
2021-11-29Update manual.Bartosz Taudul
2021-11-29There is more than one wait stack.Bartosz Taudul
2021-11-29Update NEWS.Bartosz Taudul
2021-11-29Move onlyActive check out of the loops.Bartosz Taudul
2021-11-29Replace "restrict time" with time range limits in memory.Bartosz Taudul
2021-11-29Add memory time range limit UI.Bartosz Taudul
2021-11-28Update feature matrix.Bartosz Taudul
2021-11-27Enable sample parents selection for self-less symbols.Bartosz Taudul
2021-11-27Don't include inlines when separate inlines are enabled.Bartosz Taudul
2021-11-27Fix sample parents for the whole symbol.Bartosz Taudul
Previously when whole symbol was selected, it wasn't. All the inlines were ignored and the data was displayed only for the base (self) symbol.
2021-11-27Also calculate sample parents without inlines.Bartosz Taudul
2021-11-27Cosmetics.Bartosz Taudul
2021-11-27Fix display of entry call stacks when inlines are present.Bartosz Taudul
2021-11-27Update manual.Bartosz Taudul
2021-11-27Change toggle button to faux drop down.Bartosz Taudul
2021-11-27Update NEWS.Bartosz Taudul
2021-11-27Merge callstack samples with the same timestamp.Bartosz Taudul
2021-11-27Extract callstack merging.Bartosz Taudul
2021-11-27Fix calculation of child sample counts.Bartosz Taudul
2021-11-27Display list of child calls.Bartosz Taudul
2021-11-27Add calculation of child stats to source view.Bartosz Taudul
2021-11-27Use proper base symbol address.Bartosz Taudul
2021-11-27Collect child sample addresses.Bartosz Taudul
2021-11-27Update NEWS.Bartosz Taudul
2021-11-27Update manual.Bartosz Taudul
2021-11-27Merge pull request #288 from slembcke/masterBartosz Taudul
Add fibers to TracyC.h
2021-11-27Renaming to match convention.slembcke