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
2022-07-17Move all client headers and sources to public/ directory.Bartosz Taudul
2020-02-08Add zstd compression to FileWrite.Bartosz Taudul
2020-02-08Gather file compression statistics.Bartosz Taudul
2019-09-29Set extreme compression level to really be extreme.Bartosz Taudul
2019-06-22Ignore useless warnings.Bartosz Taudul
2018-08-26Allow specifying FileWrite compression level.Bartosz Taudul
Note that extreme compression level is not exposed in the update utility. % time update.exe long.tracy out.tracy long.tracy (0.3.201) -> out.tracy (0.3.204) update.exe long.tracy 0,00s user 0,00s system 0% cpu 13,464 total % time update.exe --hc long.tracy outhc.tracy long.tracy (0.3.201) -> outhc.tracy (0.3.204) update.exe --hc long.trac 0,00s user 0,00s system 0% cpu 3:46,23 total % ls -l long.tracy out* -rw-r--r-- 1 wolf Brak 1621546031 07-30 22:51 long.tracy -rw-r--r-- 1 wolf Brak 1621579467 08-26 16:44 out.tracy -rw-r--r-- 1 wolf Brak 1397610127 08-26 16:48 outhc.tracy
2018-08-26Add LZ4HC support to FileWrite.Bartosz Taudul
2018-04-30Remove one level of indirection in FileWrite.Bartosz Taudul
2018-04-21Try to not crash when opening invalid files.Bartosz Taudul
Tracy will now perform a number of checks when trying to read a dump file: 1. The file must have at least 4 bytes of data. 2. There should be a 4 byte header to indicate the file was saved by tracy. This is a breaking change in file format. 3. Old header-less files are still supported, but there's a new check for data validity. The first 4 bytes of file (as an uint32) must be less or equal to max LZ4 data packet size. This requires the first two bytes to be 00 00 or 00 01, which should catch most invalid files.
2018-03-17Split read/write functions into small and big variants.Bartosz Taudul
2017-11-20Force inline file read and write functions.Bartosz Taudul
2017-10-10Remove +x flag from files.Bartosz Taudul
2017-10-01Missing includes.Bartosz Taudul
2017-09-30Compress saved traces using LZ4.Bartosz Taudul
2017-09-30Buffer writes.Bartosz Taudul
2017-09-30Add file wrappers.Bartosz Taudul